Show / Hide Table of Contents

Class CreateVaultImagePullSecretDetails

A CreateVaultImagePullSecretDetails is a ImagePullSecret which accepts secretId as credentials information. Sample Format for username and password in Vault Secret

{
  \"username\": \"this-is-not-the-secret\",
  \"password\": \"example-password\"
}
Inheritance
object
CreateImagePullSecretDetails
CreateVaultImagePullSecretDetails
Inherited Members
CreateImagePullSecretDetails.RegistryEndpoint
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ContainerinstancesService.Models
Assembly: OCI.DotNetSDK.Containerinstances.dll
Syntax
public class CreateVaultImagePullSecretDetails : CreateImagePullSecretDetails

Properties

SecretId

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

The OCID of the secret for registry credentials.

Remarks

Required

In this article
Back to top