Show / Hide Table of Contents

Class ParseConnectionDetails

Parse connections from the connection metadata and Oracle wallet file. An error will be returned if more than one of connectionPayload, walletSecretId or walletSecretName are present in the request.

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

Properties

ConnectionDetail

Declaration
[JsonProperty(PropertyName = "connectionDetail")]
public Connection ConnectionDetail { get; set; }
Property Value
Type Description
Connection

ConnectionPayload

Declaration
[JsonProperty(PropertyName = "connectionPayload")]
public byte[] ConnectionPayload { get; set; }
Property Value
Type Description
byte[]

The information used to parse the connection from the wallet file payload.

WalletSecretId

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

OCID of the OCI Vault secret holding the Oracle wallet to parse.

WalletSecretName

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

Name of the OCI Vault secret holding the Oracle wallet to parse.

In this article
Back to top