Show / Hide Table of Contents

Class KafkaClusterConfigVersionSummary

Summary information about a KafkaClusterConfigVersion.

Inheritance
object
KafkaClusterConfigVersionSummary
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 KafkaClusterConfigVersionSummary

Properties

ConfigId

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

The OCID of the KafkaClusterConfig.

Remarks

Required

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[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

Remarks

Required

VersionNumber

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

Version of the cluster configuration

Remarks

Required

In this article
Back to top