Show / Hide Table of Contents

Class UnifiedAgentLoggingConfiguration

Unified Agent logging service configuration object.

Inheritance
object
UnifiedAgentServiceConfigurationDetails
UnifiedAgentLoggingConfiguration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoggingService.Models
Assembly: OCI.DotNetSDK.Logging.dll
Syntax
public class UnifiedAgentLoggingConfiguration : UnifiedAgentServiceConfigurationDetails

Properties

Destination

Declaration
[Required(ErrorMessage = "Destination is required.")]
[JsonProperty(PropertyName = "destination")]
public UnifiedAgentLoggingDestination Destination { get; set; }
Property Value
Type Description
UnifiedAgentLoggingDestination
Remarks

Required

Filter

Declaration
[JsonProperty(PropertyName = "filter")]
public List<UnifiedAgentLoggingFilter> Filter { get; set; }
Property Value
Type Description
List<UnifiedAgentLoggingFilter>

Logging filter object.

Sources

Declaration
[Required(ErrorMessage = "Sources is required.")]
[JsonProperty(PropertyName = "sources")]
public List<UnifiedAgentLoggingSource> Sources { get; set; }
Property Value
Type Description
List<UnifiedAgentLoggingSource>

Logging source object.

Remarks

Required

In this article
Back to top