ParseConnectionDetails¶
-
class
oci.data_catalog.models.
ParseConnectionDetails
(**kwargs)¶ Bases:
object
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.
Methods
__init__
(**kwargs)Initializes a new ParseConnectionDetails object with values from keyword arguments. Attributes
connection_detail
Gets the connection_detail of this ParseConnectionDetails. connection_payload
Gets the connection_payload of this ParseConnectionDetails. wallet_secret_id
Gets the wallet_secret_id of this ParseConnectionDetails. wallet_secret_name
Gets the wallet_secret_name of this ParseConnectionDetails. -
__init__
(**kwargs)¶ Initializes a new ParseConnectionDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - connection_detail (oci.data_catalog.models.Connection) – The value to assign to the connection_detail property of this ParseConnectionDetails.
- connection_payload (str) – The value to assign to the connection_payload property of this ParseConnectionDetails.
- wallet_secret_id (str) – The value to assign to the wallet_secret_id property of this ParseConnectionDetails.
- wallet_secret_name (str) – The value to assign to the wallet_secret_name property of this ParseConnectionDetails.
-
connection_detail
¶ Gets the connection_detail of this ParseConnectionDetails.
Returns: The connection_detail of this ParseConnectionDetails. Return type: oci.data_catalog.models.Connection
-
connection_payload
¶ Gets the connection_payload of this ParseConnectionDetails. The information used to parse the connection from the wallet file payload.
Returns: The connection_payload of this ParseConnectionDetails. Return type: str
-
wallet_secret_id
¶ Gets the wallet_secret_id of this ParseConnectionDetails. OCID of the OCI Vault secret holding the Oracle wallet to parse.
Returns: The wallet_secret_id of this ParseConnectionDetails. Return type: str
-
wallet_secret_name
¶ Gets the wallet_secret_name of this ParseConnectionDetails. Name of the OCI Vault secret holding the Oracle wallet to parse.
Returns: The wallet_secret_name of this ParseConnectionDetails. Return type: str
-