CreateContainerRepositoryDetails¶
- 
class oci.artifacts.models.CreateContainerRepositoryDetails(**kwargs)¶
- Bases: - object- Create container repository details. - Methods - __init__(**kwargs)- Initializes a new CreateContainerRepositoryDetails object with values from keyword arguments. - Attributes - compartment_id- [Required] Gets the compartment_id of this CreateContainerRepositoryDetails. - defined_tags- Gets the defined_tags of this CreateContainerRepositoryDetails. - display_name- [Required] Gets the display_name of this CreateContainerRepositoryDetails. - freeform_tags- Gets the freeform_tags of this CreateContainerRepositoryDetails. - is_immutable- Gets the is_immutable of this CreateContainerRepositoryDetails. - is_public- Gets the is_public of this CreateContainerRepositoryDetails. - readme- Gets the readme of this CreateContainerRepositoryDetails. - 
__init__(**kwargs)¶
- Initializes a new CreateContainerRepositoryDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - compartment_id (str) – The value to assign to the compartment_id property of this CreateContainerRepositoryDetails.
- display_name (str) – The value to assign to the display_name property of this CreateContainerRepositoryDetails.
- is_immutable (bool) – The value to assign to the is_immutable property of this CreateContainerRepositoryDetails.
- is_public (bool) – The value to assign to the is_public property of this CreateContainerRepositoryDetails.
- readme (oci.artifacts.models.ContainerRepositoryReadme) – The value to assign to the readme property of this CreateContainerRepositoryDetails.
- freeform_tags (dict(str, str)) – The value to assign to the freeform_tags property of this CreateContainerRepositoryDetails.
- defined_tags (dict(str, dict(str, object))) – The value to assign to the defined_tags property of this CreateContainerRepositoryDetails.
 
 - 
compartment_id¶
- [Required] Gets the compartment_id of this CreateContainerRepositoryDetails. The OCID of the compartment in which to create the resource. - Returns: - The compartment_id of this CreateContainerRepositoryDetails. - Return type: - str 
 - Gets the defined_tags of this CreateContainerRepositoryDetails. Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. - Example: {“Operations”: {“CostCenter”: “42”}} - Returns: - The defined_tags of this CreateContainerRepositoryDetails. - Return type: - dict(str, dict(str, object)) 
 - 
display_name¶
- [Required] Gets the display_name of this CreateContainerRepositoryDetails. The container repository name. - Returns: - The display_name of this CreateContainerRepositoryDetails. - Return type: - str 
 - Gets the freeform_tags of this CreateContainerRepositoryDetails. Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. - Example: {“Department”: “Finance”} - Returns: - The freeform_tags of this CreateContainerRepositoryDetails. - Return type: - dict(str, str) 
 - 
is_immutable¶
- Gets the is_immutable of this CreateContainerRepositoryDetails. Whether the repository is immutable. Images cannot be overwritten in an immutable repository. - Returns: - The is_immutable of this CreateContainerRepositoryDetails. - Return type: - bool 
 - 
is_public¶
- Gets the is_public of this CreateContainerRepositoryDetails. Whether the repository is public. A public repository allows unauthenticated access. - Returns: - The is_public of this CreateContainerRepositoryDetails. - Return type: - bool 
 - 
readme¶
- Gets the readme of this CreateContainerRepositoryDetails. - Returns: - The readme of this CreateContainerRepositoryDetails. - Return type: - oci.artifacts.models.ContainerRepositoryReadme 
 
-