Show / Hide Table of Contents

Class DistributedDatabaseGsm

Details of global service manager(GSM also known as shard director) instances for the Globally distributed database.

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

Properties

ComputeCount

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

The compute count for the Global service manager instance.

Remarks

Required

DataStorageSizeInGbs

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

The data disk group size to be allocated in GBs for the Global service manager instance.

Remarks

Required

GsmImageDetails

Declaration
[JsonProperty(PropertyName = "gsmImageDetails")]
public DistributedDbGsmImage GsmImageDetails { get; set; }
Property Value
Type Description
DistributedDbGsmImage

Metadata

Declaration
[JsonProperty(PropertyName = "metadata")]
public DistributedDbMetadata Metadata { get; set; }
Property Value
Type Description
DistributedDbMetadata

Name

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

Name of the Global service manager instance

Remarks

Required

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DistributedDatabaseGsm.StatusEnum? Status { get; set; }
Property Value
Type Description
DistributedDatabaseGsm.StatusEnum?

Status of the gsm for the Globally ditributed database.

Remarks

Required

SupportingResourceId

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

the identifier of the underlying supporting resource.

TimeCreated

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

The time the Global service manager instance was created. An RFC3339 formatted datetime string

Remarks

Required

TimeSslCertificateExpires

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

The time the ssl certificate associated with Global service manager expires. An RFC3339 formatted datetime string

TimeUpdated

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

The time the Global service manager instance was last updated. An RFC3339 formatted datetime string

Remarks

Required

In this article
Back to top