ContainerConfigFileVolume¶
-
class
oci.container_instances.models.
ContainerConfigFileVolume
(**kwargs)¶ Bases:
oci.container_instances.models.container_volume.ContainerVolume
The volume based on configuration files received during container creation.
Attributes
VOLUME_TYPE_CONFIGFILE
str(object=’’) -> str VOLUME_TYPE_EMPTYDIR
str(object=’’) -> str configs
Gets the configs of this ContainerConfigFileVolume. name
[Required] Gets the name of this ContainerVolume. volume_type
[Required] Gets the volume_type of this ContainerVolume. Methods
__init__
(**kwargs)Initializes a new ContainerConfigFileVolume 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. -
VOLUME_TYPE_CONFIGFILE
= 'CONFIGFILE'¶
-
VOLUME_TYPE_EMPTYDIR
= 'EMPTYDIR'¶
-
__init__
(**kwargs)¶ Initializes a new ContainerConfigFileVolume object with values from keyword arguments. The default value of the
volume_type
attribute of this class isCONFIGFILE
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - name (str) – The value to assign to the name property of this ContainerConfigFileVolume.
- volume_type (str) – The value to assign to the volume_type property of this ContainerConfigFileVolume. Allowed values for this property are: “EMPTYDIR”, “CONFIGFILE”
- configs (list[oci.container_instances.models.ContainerConfigFile]) – The value to assign to the configs property of this ContainerConfigFileVolume.
-
configs
¶ Gets the configs of this ContainerConfigFileVolume. Contains string key value pairs which can be mounted as individual files inside the container. The value needs to be base64 encoded. It is decoded to plain text before the mount.
Returns: The configs of this ContainerConfigFileVolume. Return type: list[oci.container_instances.models.ContainerConfigFile]
-
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.
-
name
¶ [Required] Gets the name of this ContainerVolume. The name of the volume. This must be unique within a single container instance.
Returns: The name of this ContainerVolume. Return type: str
-
volume_type
¶ [Required] Gets the volume_type of this ContainerVolume. The type of volume.
Allowed values for this property are: “EMPTYDIR”, “CONFIGFILE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The volume_type of this ContainerVolume. Return type: str
-