CreateSingleDockerArtifactDetails¶
-
class
oci.generative_ai.models.CreateSingleDockerArtifactDetails(**kwargs)¶ Bases:
oci.generative_ai.models.create_artifact_details.CreateArtifactDetailsCreateSingleDockerArtifactDetails model.
Attributes
ARTIFACT_TYPE_SIMPLE_DOCKER_ARTIFACTstr(object=’’) -> str artifact_typeGets the artifact_type of this CreateArtifactDetails. container_uriGets the container_uri of this CreateSingleDockerArtifactDetails. tagGets the tag of this CreateSingleDockerArtifactDetails. Methods
__init__(**kwargs)Initializes a new CreateSingleDockerArtifactDetails 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. -
ARTIFACT_TYPE_SIMPLE_DOCKER_ARTIFACT= 'SIMPLE_DOCKER_ARTIFACT'¶
-
__init__(**kwargs)¶ Initializes a new CreateSingleDockerArtifactDetails object with values from keyword arguments. The default value of the
artifact_typeattribute of this class isSIMPLE_DOCKER_ARTIFACTand it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - artifact_type (str) – The value to assign to the artifact_type property of this CreateSingleDockerArtifactDetails. Allowed values for this property are: “SIMPLE_DOCKER_ARTIFACT”
- container_uri (str) – The value to assign to the container_uri property of this CreateSingleDockerArtifactDetails.
- tag (str) – The value to assign to the tag property of this CreateSingleDockerArtifactDetails.
-
artifact_type¶ Gets the artifact_type of this CreateArtifactDetails. The type of the artifact.
Allowed values for this property are: “SIMPLE_DOCKER_ARTIFACT”
Returns: The artifact_type of this CreateArtifactDetails. Return type: str
-
container_uri¶ Gets the container_uri of this CreateSingleDockerArtifactDetails. image url.
Returns: The container_uri of this CreateSingleDockerArtifactDetails. Return type: str
-
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.
-
tag¶ Gets the tag of this CreateSingleDockerArtifactDetails. image tag.
Returns: The tag of this CreateSingleDockerArtifactDetails. Return type: str
-