Show / Hide Table of Contents

Class DeploymentWalletsOperationSummary

Summary of the deployment wallets operations.

Inheritance
object
DeploymentWalletsOperationSummary
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 DeploymentWalletsOperationSummary

Properties

DeploymentWalletOperationStatus

Declaration
[Required(ErrorMessage = "DeploymentWalletOperationStatus is required.")]
[JsonProperty(PropertyName = "deploymentWalletOperationStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DeploymentWalletStatus? DeploymentWalletOperationStatus { get; set; }
Property Value
Type Description
DeploymentWalletStatus?

The status of the deployment wallet.

Remarks

Required

DeploymentWalletOperationType

Declaration
[Required(ErrorMessage = "DeploymentWalletOperationType is required.")]
[JsonProperty(PropertyName = "deploymentWalletOperationType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DeploymentWalletOperationType? DeploymentWalletOperationType { get; set; }
Property Value
Type Description
DeploymentWalletOperationType?

The operation type of the deployment wallet.

Remarks

Required

TimeCompleted

Declaration
[JsonProperty(PropertyName = "timeCompleted")]
public DateTime? TimeCompleted { get; set; }
Property Value
Type Description
DateTime?

The date and time the request was finished. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

TimeStarted

Declaration
[Required(ErrorMessage = "TimeStarted is required.")]
[JsonProperty(PropertyName = "timeStarted")]
public DateTime? TimeStarted { get; set; }
Property Value
Type Description
DateTime?

The date and time the request was started. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

Remarks

Required

WalletOperationId

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

The UUID of the wallet operation performed by the customer. If provided, this will reference a key which the customer can use to query or search a particular wallet operation

Remarks

Required

WalletSecretId

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

The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.

Remarks

Required

In this article
Back to top