Show / Hide Table of Contents

Class LoggingDestinationConfiguration

Configuration parameters for a given destination.

Inheritance
object
LoggingDestinationConfiguration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top