Show / Hide Table of Contents

Class OciCacheDefaultConfigSetSummary

Summary of information about an OCI Cache Default Config Set.

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

Properties

DisplayName

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

A user-friendly name of the OCI Cache Default Config Set.

Id

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

The OCID of the OCI Cache Default Config Set.

Remarks

Required

LifecycleState

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

The current state of the OCI Cache Default Config Set.

SoftwareVersion

Declaration
[Required(ErrorMessage = "SoftwareVersion is required.")]
[JsonProperty(PropertyName = "softwareVersion")]
[JsonConverter(typeof(StringEnumConverter))]
public OciCacheConfigSet.SoftwareVersionEnum? SoftwareVersion { get; set; }
Property Value
Type Description
OciCacheConfigSet.SoftwareVersionEnum?

The engine version of the OCI Cache Default Config Set.

Remarks

Required

TimeCreated

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

The date and time the configuration was created. An RFC3339 formatted datetime string.

In this article
Back to top