ContainerConfiguration Class
The configuration for container-enabled pools.
All required parameters must be populated in order to send to server.
- Inheritance
-
azure.mgmt.batch._serialization.ModelContainerConfiguration
Constructor
ContainerConfiguration(*, type: str | _models.ContainerType, container_image_names: List[str] | None = None, container_registries: List[_models.ContainerRegistry] | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
type
|
str or
ContainerType
The container technology to be used. Required. Known values are: "DockerCompatible" and "CriCompatible". |
container_image_names
|
This is the full image reference, as would be specified to "docker pull". An image will be sourced from the default Docker registry unless the image is fully qualified with an alternative registry. |
container_registries
|
If any images must be downloaded from a private registry which requires credentials, then those credentials must be provided here. |
Variables
Name | Description |
---|---|
type
|
str or
ContainerType
The container technology to be used. Required. Known values are: "DockerCompatible" and "CriCompatible". |
container_image_names
|
This is the full image reference, as would be specified to "docker pull". An image will be sourced from the default Docker registry unless the image is fully qualified with an alternative registry. |
container_registries
|
If any images must be downloaded from a private registry which requires credentials, then those credentials must be provided here. |
Azure SDK for Python