Show / Hide Table of Contents

Class AddonSummary

Summary information about a KafkaClusterAddon.

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

Properties

AddonType

Declaration
[Required(ErrorMessage = "AddonType is required.")]
[JsonProperty(PropertyName = "addonType")]
[JsonConverter(typeof(StringEnumConverter))]
public KafkaClusterAddon.AddonTypeEnum? AddonType { get; set; }
Property Value
Type Description
KafkaClusterAddon.AddonTypeEnum?

Addon Type

Remarks

Required

LifecycleDetails

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

A message that describes the current state of the KafkaClusterAddon in more detail. For example, can be used to provide actionable information for a resource in the Failed state.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(StringEnumConverter))]
public KafkaClusterAddon.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
KafkaClusterAddon.LifecycleStateEnum?

The current state of the KafkaClusterAddon.

Remarks

Required

Name

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

A user-friendly name.

Remarks

Required

TimeCreated

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

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

TimeUpdated

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

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

In this article
Back to top