Show / Hide Table of Contents

Class ExternalAsmConnectionInfo

The details required to connect to an external ASM instance.

Inheritance
object
ExternalDbSystemConnectionInfo
ExternalAsmConnectionInfo
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 ExternalAsmConnectionInfo : ExternalDbSystemConnectionInfo

Properties

ConnectionCredentials

Declaration
[Required(ErrorMessage = "ConnectionCredentials is required.")]
[JsonProperty(PropertyName = "connectionCredentials")]
public AsmConnectionCredentials ConnectionCredentials { get; set; }
Property Value
Type Description
AsmConnectionCredentials
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