Show / Hide Table of Contents

Class FetchShardableCloudAutonomousVmClustersDetails

Details required for fetch sharded cloud autonomous vm clusters.

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

Properties

AreDepletedClustersIncluded

Declaration
[JsonProperty(PropertyName = "areDepletedClustersIncluded")]
public bool? AreDepletedClustersIncluded { get; set; }
Property Value
Type Description
bool?

Flag to indicate of response shall also include clusters for which no more capacity is left to create new resources.

CompartmentId

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

Compartment id of cloud autonomous vm clusters.

Remarks

Required

LifecycleState

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

Lifecycle states for shardable Cloud autonomous vm cluster.

LifecycleStateDetails

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

Detailed message for the lifecycle state.

MinimumAvailableCdbCount

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

List only clusters for which atleast given minimum CDB count is available.

Regions

Declaration
[JsonProperty(PropertyName = "regions")]
public List<string> Regions { get; set; }
Property Value
Type Description
List<string>

Region code of regions for which sharded cloud autonomous vm clusters need to be fetched.

In this article
Back to top