Show / Hide Table of Contents

Class KafkaClusterConfigVersion

A shared configuration object used by 0 or more kafka clusters.

Inheritance
object
KafkaClusterConfigVersion
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ManagedkafkaService.Models
Assembly: OCI.DotNetSDK.Managedkafka.dll
Syntax
public class KafkaClusterConfigVersion

Properties

ConfigId

Declaration
[JsonProperty(PropertyName = "configId")]
public string ConfigId { get; set; }
Property Value
Type Description
string

ID cluster configuration

Properties

Declaration
[Required(ErrorMessage = "Properties is required.")]
[JsonProperty(PropertyName = "properties")]
public Dictionary<string, string> Properties { get; set; }
Property Value
Type Description
Dictionary<string, string>

Cluster configuration key-value pairs

Remarks

Required

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the KafkaClusterConfigVersion was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

VersionNumber

Declaration
[JsonProperty(PropertyName = "versionNumber")]
public int? VersionNumber { get; set; }
Property Value
Type Description
int?

Version of the cluster configuration

In this article
Back to top