Show / Hide Table of Contents

Class CloudAsmConnectionInfo

The details required to connect to a cloud ASM instance.

Inheritance
object
CloudDbSystemConnectionInfo
CloudAsmConnectionInfo
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 CloudAsmConnectionInfo : CloudDbSystemConnectionInfo

Properties

ConnectionCredentials

Declaration
[Required(ErrorMessage = "ConnectionCredentials is required.")]
[JsonProperty(PropertyName = "connectionCredentials")]
public CloudAsmConnectionCredentials ConnectionCredentials { get; set; }
Property Value
Type Description
CloudAsmConnectionCredentials
Remarks

Required

ConnectionString

Declaration
[Required(ErrorMessage = "ConnectionString is required.")]
[JsonProperty(PropertyName = "connectionString")]
public AsmConnectionString ConnectionString { get; set; }
Property Value
Type Description
AsmConnectionString
Remarks

Required

In this article
Back to top