Show / Hide Table of Contents

Class BdsCapacityReservationConfigurationSummary

Summary of a configuration between a BDS cluster and a BDS capacity reservation.

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

Properties

BdsCapacityReservationId

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

The OCID of the BDS capacity reservation associated with the BDS cluster.

Remarks

Required

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 associated with the BDS capacity reservation.

Remarks

Required

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(StringEnumConverter))]
public BdsCapacityReservationConfiguration.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
BdsCapacityReservationConfiguration.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 BDS capacity reservation 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 BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.

In this article
Back to top