Show / Hide Table of Contents

Class DatabaseCloudServiceDetails

The details of the cloud database to be registered as a target database in Data Safe.

Inheritance
object
DatabaseDetails
DatabaseCloudServiceDetails
Inherited Members
DatabaseDetails.InfrastructureType
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class DatabaseCloudServiceDetails : DatabaseDetails

Properties

DbSystemId

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

The OCID of the cloud database registered as a target database in Data Safe.

ListenerPort

Declaration
[JsonProperty(PropertyName = "listenerPort")]
public int? ListenerPort { get; set; }
Property Value
Type Description
int?

The port number of the database listener.

ServiceName

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

The database service name.

Remarks

Required

VmClusterId

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

The OCID of the VM cluster in which the database is running.

In this article
Back to top