Class GgcsUserDetail
Ggcs user credentials to be created or updated.
Inherited Members
Namespace: Oci.DifService.Models
Assembly: OCI.DotNetSDK.Dif.dll
Syntax
public class GgcsUserDetail
Properties
Action
Declaration
[Required(ErrorMessage = "Action is required.")]
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(StringEnumConverter))]
public WorkflowAction? Action { get; set; }
Property Value
| Type | Description |
|---|---|
| WorkflowAction? | Action to be done over the user. Allowed values are "CREATE" or "UPDATE". |
Remarks
Required
SecretId
Declaration
[Required(ErrorMessage = "SecretId is required.")]
[JsonProperty(PropertyName = "secretId")]
public string SecretId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Vault OCID containing password for existing or new user. |
Remarks
Required
UserName
Declaration
[Required(ErrorMessage = "UserName is required.")]
[JsonProperty(PropertyName = "userName")]
public string UserName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | username for the user. |
Remarks
Required
UserType
Declaration
[Required(ErrorMessage = "UserType is required.")]
[JsonProperty(PropertyName = "userType")]
public string UserType { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Type of GoldenGate user. Allowed values are "OPERATOR". |
Remarks
Required