Class InstanceDetails
The details of the Oracle Real Application Clusters (Oracle RAC) database instance.
Inherited Members
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class InstanceDetails
Properties
HostName
Declaration
[Required(ErrorMessage = "HostName is required.")]
[JsonProperty(PropertyName = "hostName")]
public string HostName { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the host of the Oracle RAC database instance. |
Remarks
Required
Id
Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public int? Id { get; set; }
Property Value
Type | Description |
---|---|
int? | The ID of the Oracle RAC database instance. |
Remarks
Required
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the Oracle RAC database instance. |
Remarks
Required
Status
Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InstanceDetails.StatusEnum? Status { get; set; }
Property Value
Type | Description |
---|---|
InstanceDetails.StatusEnum? | The status of the Oracle RAC database instance. |
Remarks
Required