Show / Hide Table of Contents

Class ExternalDatabaseInstance

The details of an external database instance.

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

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 machine.

Remarks

Required

InstanceName

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

The name of the database instance.

Remarks

Required

InstanceNumber

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

The instance number of the database instance.

Remarks

Required

In this article
Back to top