All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.cloudrunv2.kotlin.outputs.GetJobTemplateTemplateVolumeEmptyDir.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.cloudrunv2.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property medium The different types of medium supported for EmptyDir. Default value: "MEMORY" Possible values: ["MEMORY"]
 * @property sizeLimit Limit on the storage usable by this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. This field's values are of the 'Quantity' k8s type: https://kubernetes.io/docs/reference/kubernetes-api/common-definitions/quantity/. The default is nil which means that the limit is undefined. More info: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir.
 */
public data class GetJobTemplateTemplateVolumeEmptyDir(
    public val medium: String,
    public val sizeLimit: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.cloudrunv2.outputs.GetJobTemplateTemplateVolumeEmptyDir): GetJobTemplateTemplateVolumeEmptyDir = GetJobTemplateTemplateVolumeEmptyDir(
            medium = javaType.medium(),
            sizeLimit = javaType.sizeLimit(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy