CustomContainer Class

Custom container payload.

Inheritance
CustomContainer

Constructor

CustomContainer(*, server: Optional[str] = None, container_image: Optional[str] = None, command: Optional[List[str]] = None, args: Optional[List[str]] = None, image_registry_credential: Optional[azure.mgmt.appplatform.v2021_06_01_preview.models._models_py3.ImageRegistryCredential] = None, **kwargs)

Variables

server
str

The name of the registry that contains the container image.

container_image
str

Container image of the custom container. This should be in the form of <repository>:<tag> without the server name of the registry.

command
list[str]

Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.

args
list[str]

Arguments to the entrypoint. The docker image's CMD is used if this is not provided.

image_registry_credential
ImageRegistryCredential

Credential of the image registry.