CreateImagePullSecretDetails¶
- 
class oci.container_instances.models.CreateImagePullSecretDetails(**kwargs)¶
- Bases: - object- The image pull secrets for accessing private registry to pull images for containers - Attributes - SECRET_TYPE_BASIC- A constant which can be used with the secret_type property of a CreateImagePullSecretDetails. - SECRET_TYPE_VAULT- A constant which can be used with the secret_type property of a CreateImagePullSecretDetails. - registry_endpoint- [Required] Gets the registry_endpoint of this CreateImagePullSecretDetails. - secret_type- [Required] Gets the secret_type of this CreateImagePullSecretDetails. - Methods - __init__(**kwargs)- Initializes a new CreateImagePullSecretDetails object with values from keyword arguments. - get_subtype(object_dictionary)- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. - 
SECRET_TYPE_BASIC= 'BASIC'¶
- A constant which can be used with the secret_type property of a CreateImagePullSecretDetails. This constant has a value of “BASIC” 
 - 
SECRET_TYPE_VAULT= 'VAULT'¶
- A constant which can be used with the secret_type property of a CreateImagePullSecretDetails. This constant has a value of “VAULT” 
 - 
__init__(**kwargs)¶
- Initializes a new CreateImagePullSecretDetails object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class: - The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - secret_type (str) – The value to assign to the secret_type property of this CreateImagePullSecretDetails. Allowed values for this property are: “BASIC”, “VAULT”
- registry_endpoint (str) – The value to assign to the registry_endpoint property of this CreateImagePullSecretDetails.
 
 - 
static get_subtype(object_dictionary)¶
- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. 
 - 
registry_endpoint¶
- [Required] Gets the registry_endpoint of this CreateImagePullSecretDetails. The registry endpoint of the container image. - Returns: - The registry_endpoint of this CreateImagePullSecretDetails. - Return type: - str 
 - 
secret_type¶
- [Required] Gets the secret_type of this CreateImagePullSecretDetails. The type of ImagePullSecret. - Allowed values for this property are: “BASIC”, “VAULT” - Returns: - The secret_type of this CreateImagePullSecretDetails. - Return type: - str 
 
-