Show / Hide Table of Contents

Class OciCacheDefaultConfigSet

Default configurations for OCI Cache to manage the behavior, performance, and functionality of the underlying cache engine.

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

Properties

DefaultConfigurationDetails

Declaration
[JsonProperty(PropertyName = "defaultConfigurationDetails")]
public DefaultConfigurationDetails DefaultConfigurationDetails { get; set; }
Property Value
Type Description
DefaultConfigurationDetails

Description

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

Description of the OCI Cache Default Config Set.

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(ResponseEnumConverter))]
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(ResponseEnumConverter))]
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 OCI Cache Default Config Set was created. An RFC3339 formatted datetime string.

In this article
Back to top