ContainerResponse

data class ContainerResponse(val command: List<String>? = null, val configMap: ConfigMapResponse? = null, val environmentVariables: List<EnvironmentVariableResponse>? = null, val image: String? = null, val instanceView: ContainerPropertiesResponseInstanceView, val livenessProbe: ContainerProbeResponse? = null, val name: String, val ports: List<ContainerPortResponse>? = null, val readinessProbe: ContainerProbeResponse? = null, val resources: ResourceRequirementsResponse? = null, val securityContext: SecurityContextDefinitionResponse? = null, val volumeMounts: List<VolumeMountResponse>? = null)

A container instance.

Constructors

Link copied to clipboard
constructor(command: List<String>? = null, configMap: ConfigMapResponse? = null, environmentVariables: List<EnvironmentVariableResponse>? = null, image: String? = null, instanceView: ContainerPropertiesResponseInstanceView, livenessProbe: ContainerProbeResponse? = null, name: String, ports: List<ContainerPortResponse>? = null, readinessProbe: ContainerProbeResponse? = null, resources: ResourceRequirementsResponse? = null, securityContext: SecurityContextDefinitionResponse? = null, volumeMounts: List<VolumeMountResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

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

The commands to execute within the container instance in exec form.

Link copied to clipboard

The config map.

Link copied to clipboard

The environment variables to set in the container instance.

Link copied to clipboard
val image: String? = null

The name of the image used to create the container instance.

Link copied to clipboard

The instance view of the container instance. Only valid in response.

Link copied to clipboard

The liveness probe.

Link copied to clipboard

The user-provided name of the container instance.

Link copied to clipboard

The exposed ports on the container instance.

Link copied to clipboard

The readiness probe.

Link copied to clipboard

The resource requirements of the container instance.

Link copied to clipboard

The container security properties.

Link copied to clipboard

The volume mounts available to the container instance.