
com.pulumi.googlenative.run.v1.kotlin.outputs.ContainerResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.run.v1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A single application container. This specifies both the container to run, the command to run in the container and the arguments to supply to it. Note that additional arguments may be supplied by the system to the container at runtime.
* @property args Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references are not supported in Cloud Run.
* @property command Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references are not supported in Cloud Run.
* @property env List of environment variables to set in the container. EnvVar with duplicate names are generally allowed; if referencing a secret, the name must be unique for the container. For non-secret EnvVar names, the Container will only get the last-declared one.
* @property envFrom Not supported by Cloud Run.
* @property image Name of the container image in Dockerhub, Google Artifact Registry, or Google Container Registry. If the host is not provided, Dockerhub is assumed.
* @property imagePullPolicy Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise.
* @property livenessProbe Periodic probe of container liveness. Container will be restarted if the probe fails.
* @property name Name of the container specified as a DNS_LABEL (RFC 1123).
* @property ports List of ports to expose from the container. Only a single port can be specified. The specified ports must be listening on all interfaces (0.0.0.0) within the container to be accessible. If omitted, a port number will be chosen and passed to the container through the PORT environment variable for the container to listen on.
* @property readinessProbe Not supported by Cloud Run.
* @property resources Compute Resources required by this container.
* @property securityContext Not supported by Cloud Run.
* @property startupProbe Startup probe of application within the container. All other probes are disabled if a startup probe is provided, until it succeeds. Container will not receive traffic if the probe fails. If not provided, a default startup probe with TCP socket action is used.
* @property terminationMessagePath Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log.
* @property terminationMessagePolicy Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.
* @property volumeMounts Volume to mount into the container's filesystem. Only supports SecretVolumeSources. Pod volumes to mount into the container's filesystem.
* @property workingDir Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image.
*/
public data class ContainerResponse(
public val args: List,
public val command: List,
public val env: List,
public val envFrom: List,
public val image: String,
public val imagePullPolicy: String,
public val livenessProbe: ProbeResponse,
public val name: String,
public val ports: List,
public val readinessProbe: ProbeResponse,
public val resources: ResourceRequirementsResponse,
public val securityContext: SecurityContextResponse,
public val startupProbe: ProbeResponse,
public val terminationMessagePath: String,
public val terminationMessagePolicy: String,
public val volumeMounts: List,
public val workingDir: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.run.v1.outputs.ContainerResponse): ContainerResponse = ContainerResponse(
args = javaType.args().map({ args0 -> args0 }),
command = javaType.command().map({ args0 -> args0 }),
env = javaType.env().map({ args0 ->
args0.let({ args0 ->
com.pulumi.googlenative.run.v1.kotlin.outputs.EnvVarResponse.Companion.toKotlin(args0)
})
}),
envFrom = javaType.envFrom().map({ args0 ->
args0.let({ args0 ->
com.pulumi.googlenative.run.v1.kotlin.outputs.EnvFromSourceResponse.Companion.toKotlin(args0)
})
}),
image = javaType.image(),
imagePullPolicy = javaType.imagePullPolicy(),
livenessProbe = javaType.livenessProbe().let({ args0 ->
com.pulumi.googlenative.run.v1.kotlin.outputs.ProbeResponse.Companion.toKotlin(args0)
}),
name = javaType.name(),
ports = javaType.ports().map({ args0 ->
args0.let({ args0 ->
com.pulumi.googlenative.run.v1.kotlin.outputs.ContainerPortResponse.Companion.toKotlin(args0)
})
}),
readinessProbe = javaType.readinessProbe().let({ args0 ->
com.pulumi.googlenative.run.v1.kotlin.outputs.ProbeResponse.Companion.toKotlin(args0)
}),
resources = javaType.resources().let({ args0 ->
com.pulumi.googlenative.run.v1.kotlin.outputs.ResourceRequirementsResponse.Companion.toKotlin(args0)
}),
securityContext = javaType.securityContext().let({ args0 ->
com.pulumi.googlenative.run.v1.kotlin.outputs.SecurityContextResponse.Companion.toKotlin(args0)
}),
startupProbe = javaType.startupProbe().let({ args0 ->
com.pulumi.googlenative.run.v1.kotlin.outputs.ProbeResponse.Companion.toKotlin(args0)
}),
terminationMessagePath = javaType.terminationMessagePath(),
terminationMessagePolicy = javaType.terminationMessagePolicy(),
volumeMounts = javaType.volumeMounts().map({ args0 ->
args0.let({ args0 ->
com.pulumi.googlenative.run.v1.kotlin.outputs.VolumeMountResponse.Companion.toKotlin(args0)
})
}),
workingDir = javaType.workingDir(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy