Show / Hide Table of Contents

Class ExportDeploymentWalletDetails

Metadata required to export wallet from deployment

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

Properties

Description

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

Metadata about this specific object.

MasterEncryptionKeyId

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

Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.

Remarks

Required

SecretCompartmentId

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

The OCID of the compartment, where the secret will be created in.

SecretName

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

Name of the secret with which secret is shown in vault

Remarks

Required

VaultId

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

Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.

Remarks

Required

In this article
Back to top