Show / Hide Table of Contents

Class ImagePullSecret

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

Inheritance
object
ImagePullSecret
BasicImagePullSecret
VaultImagePullSecret
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(ImagePullSecretModelConverter))]
public class ImagePullSecret

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