Class LoggingDestinationConfiguration
Configuration parameters for a given destination.
Inherited Members
Namespace: Oci.MysqlService.Models
Assembly: OCI.DotNetSDK.Mysql.dll
Syntax
public class LoggingDestinationConfiguration
Properties
Destination
Declaration
[Required(ErrorMessage = "Destination is required.")]
[JsonProperty(PropertyName = "destination")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LoggingDestinationConfiguration.DestinationEnum? Destination { get; set; }
Property Value
| Type | Description |
|---|---|
| LoggingDestinationConfiguration.DestinationEnum? | Type of destination where MySQL telemetry is exposed to. |
Remarks
Required
DestinationConfigurations
Declaration
[Required(ErrorMessage = "DestinationConfigurations is required.")]
[JsonProperty(PropertyName = "destinationConfigurations")]
public List<DestinationConfiguration> DestinationConfigurations { get; set; }
Property Value
| Type | Description |
|---|---|
| List<DestinationConfiguration> | List of configuration variables for a given destination type. |
Remarks
Required
LogTypes
Declaration
[Required(ErrorMessage = "LogTypes is required.")]
[JsonProperty(PropertyName = "logTypes", ItemConverterType = typeof(ResponseEnumConverter))]
public List<LoggingDestinationConfiguration.LogTypesEnum> LogTypes { get; set; }
Property Value
| Type | Description |
|---|---|
| List<LoggingDestinationConfiguration.LogTypesEnum> | List of MySQL telemetry types that can be exposed on a telemetry destination |
Remarks
Required