Show / Hide Table of Contents

Class BdsCapacityReservationAssociatedConfigurationSummary

Summary of a BDS capacity reservation configuration associated with a BDS capacity reservation.

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

Properties

BdsInstanceId

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

The OCID of the BDS cluster linked through the BDS capacity reservation configuration.

Remarks

Required

CompartmentId

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

The OCID of the compartment that contains the BDS cluster.

DisplayName

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

The display name of the BDS capacity reservation configuration.

Remarks

Required

Id

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

The OCID of the BDS capacity reservation configuration.

Remarks

Required

LifecycleState

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

The lifecycle state of the BDS capacity reservation configuration.

Remarks

Required

TimeCreated

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

The time the configuration was created, shown as an RFC 3339 formatted datetime string.

Remarks

Required

TimeUpdated

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

The time the configuration was updated, shown as an RFC 3339 formatted datetime string.

In this article
Back to top