ContainerCodePackagePropertiesResponse

data class ContainerCodePackagePropertiesResponse(val commands: List<String>? = null, val diagnostics: DiagnosticsRefResponse? = null, val endpoints: List<EndpointPropertiesResponse>? = null, val entrypoint: String? = null, val environmentVariables: List<EnvironmentVariableResponse>? = null, val image: String, val imageRegistryCredential: ImageRegistryCredentialResponse? = null, val instanceView: ContainerInstanceViewResponse, val labels: List<ContainerLabelResponse>? = null, val name: String, val reliableCollectionsRefs: List<ReliableCollectionsRefResponse>? = null, val resources: ResourceRequirementsResponse, val settings: List<SettingResponse>? = null, val volumeRefs: List<VolumeReferenceResponse>? = null, val volumes: List<ApplicationScopedVolumeResponse>? = null)

Describes a container and its runtime properties.

Constructors

Link copied to clipboard
constructor(commands: List<String>? = null, diagnostics: DiagnosticsRefResponse? = null, endpoints: List<EndpointPropertiesResponse>? = null, entrypoint: String? = null, environmentVariables: List<EnvironmentVariableResponse>? = null, image: String, imageRegistryCredential: ImageRegistryCredentialResponse? = null, instanceView: ContainerInstanceViewResponse, labels: List<ContainerLabelResponse>? = null, name: String, reliableCollectionsRefs: List<ReliableCollectionsRefResponse>? = null, resources: ResourceRequirementsResponse, settings: List<SettingResponse>? = null, volumeRefs: List<VolumeReferenceResponse>? = null, volumes: List<ApplicationScopedVolumeResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val commands: List<String>? = null

Command array to execute within the container in exec form.

Link copied to clipboard

Reference to sinks in DiagnosticsDescription.

Link copied to clipboard

The endpoints exposed by this container.

Link copied to clipboard
val entrypoint: String? = null

Override for the default entry point in the container.

Link copied to clipboard

The environment variables to set in this container

Link copied to clipboard

The Container image to use.

Link copied to clipboard

Image registry credential.

Link copied to clipboard

Runtime information of a container instance.

Link copied to clipboard

The labels to set in this container.

Link copied to clipboard

The name of the code package.

Link copied to clipboard

A list of ReliableCollection resources used by this particular code package. Please refer to ReliableCollectionsRef for more details.

Link copied to clipboard

The resources required by this container.

Link copied to clipboard

The settings to set in this container. The setting file path can be fetched from environment variable "Fabric_SettingPath". The path for Windows container is "C:\\secrets". The path for Linux container is "/var/secrets".

Link copied to clipboard

Volumes to be attached to the container. The lifetime of these volumes is independent of the application's lifetime.

Link copied to clipboard

Volumes to be attached to the container. The lifetime of these volumes is scoped to the application's lifetime.