Show / Hide Table of Contents

Class CreateBasicImagePullSecretDetails

A CreateBasicImagePullSecretDetails is a ImagePullSecret which accepts username and password as credentials information.

Inheritance
object
CreateImagePullSecretDetails
CreateBasicImagePullSecretDetails
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 CreateBasicImagePullSecretDetails : CreateImagePullSecretDetails

Properties

Password

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

The password which should be used with the registry for authentication. The value is expected in base64 format.

Remarks

Required

Username

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

The username which should be used with the registry for authentication. The value is expected in base64 format.

Remarks

Required

In this article
Back to top