com.pulumi.azure.appplatform.kotlin.outputs.SpringCloudJavaDeploymentQuota.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appplatform.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property cpu Specifies the required cpu of the Spring Cloud Deployment. Possible Values are `500m`, `1`, `2`, `3` and `4`. Defaults to `1` if not specified.
* > **Note:** `cpu` supports `500m` and `1` for Basic tier, `500m`, `1`, `2`, `3` and `4` for Standard tier.
* @property memory Specifies the required memory size of the Spring Cloud Deployment. Possible Values are `512Mi`, `1Gi`, `2Gi`, `3Gi`, `4Gi`, `5Gi`, `6Gi`, `7Gi`, and `8Gi`. Defaults to `1Gi` if not specified.
* > **Note:** `memory` supports `512Mi`, `1Gi` and `2Gi` for Basic tier, `512Mi`, `1Gi`, `2Gi`, `3Gi`, `4Gi`, `5Gi`, `6Gi`, `7Gi`, and `8Gi` for Standard tier.
*/
public data class SpringCloudJavaDeploymentQuota(
public val cpu: String? = null,
public val memory: String? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.appplatform.outputs.SpringCloudJavaDeploymentQuota):
SpringCloudJavaDeploymentQuota = SpringCloudJavaDeploymentQuota(
cpu = javaType.cpu().map({ args0 -> args0 }).orElse(null),
memory = javaType.memory().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy