Class SecretDetail
Details of the kubernetes secrets to be created or updated.
Inherited Members
Namespace: Oci.DifService.Models
Assembly: OCI.DotNetSDK.Dif.dll
Syntax
public class SecretDetail
Properties
SecretData
Declaration
[Required(ErrorMessage = "SecretData is required.")]
[JsonProperty(PropertyName = "secretData")]
public List<SecretData> SecretData { get; set; }
Property Value
| Type | Description |
|---|---|
| List<SecretData> | List of kubernetes secret data. |
Remarks
Required
SecretName
Declaration
[Required(ErrorMessage = "SecretName is required.")]
[JsonProperty(PropertyName = "secretName")]
public string SecretName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Name of the kubernetes secret of max length 63 and contain only lowercase alphanumeric characters or '-' and start and end with an alphabetic character. |
Remarks
Required
TemplateObjectStoragePath
Declaration
[JsonProperty(PropertyName = "templateObjectStoragePath")]
public string TemplateObjectStoragePath { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Object storage path for the secret template to be used for creating secret otherwise it will be created with default template. |