Show / Hide Table of Contents

Class CreateImagePullSecretDetails

The image pull secrets for accessing private registry to pull images for containers

Inheritance
object
CreateImagePullSecretDetails
CreateBasicImagePullSecretDetails
CreateVaultImagePullSecretDetails
Inherited Members
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
[JsonConverter(typeof(CreateImagePullSecretDetailsModelConverter))]
public class CreateImagePullSecretDetails

Properties

RegistryEndpoint

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

The registry endpoint of the container image.

Remarks

Required

In this article
Back to top