PoolEnvironmentConfigurationResponse

data class PoolEnvironmentConfigurationResponse(val environmentId: String? = null, val environmentVariables: Map<String, String>? = null, val livenessProbe: ProbeSettingsResponse? = null, val readinessProbe: ProbeSettingsResponse? = null, val startupProbe: ProbeSettingsResponse? = null)

Environment configuration options.

Constructors

Link copied to clipboard
constructor(environmentId: String? = null, environmentVariables: Map<String, String>? = null, livenessProbe: ProbeSettingsResponse? = null, readinessProbe: ProbeSettingsResponse? = null, startupProbe: ProbeSettingsResponse? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val environmentId: String? = null

ARM resource ID of the environment specification for the inference pool.

Link copied to clipboard

Environment variables configuration for the inference pool.

Link copied to clipboard

Liveness probe monitors the health of the container regularly.

Link copied to clipboard

Readiness probe validates if the container is ready to serve traffic. The properties and defaults are the same as liveness probe.

Link copied to clipboard

This verifies whether the application within a container is started. Startup probes run before any other probe, and, unless it finishes successfully, disables other probes.