![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.appplatform.outputs.SpringCloudContainerDeploymentQuota Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azure.appplatform.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SpringCloudContainerDeploymentQuota {
/**
* @return 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.
*
*/
private @Nullable String cpu;
/**
* @return 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.
*
*/
private @Nullable String memory;
private SpringCloudContainerDeploymentQuota() {}
/**
* @return 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.
*
*/
public Optional cpu() {
return Optional.ofNullable(this.cpu);
}
/**
* @return 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 Optional memory() {
return Optional.ofNullable(this.memory);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SpringCloudContainerDeploymentQuota defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String cpu;
private @Nullable String memory;
public Builder() {}
public Builder(SpringCloudContainerDeploymentQuota defaults) {
Objects.requireNonNull(defaults);
this.cpu = defaults.cpu;
this.memory = defaults.memory;
}
@CustomType.Setter
public Builder cpu(@Nullable String cpu) {
this.cpu = cpu;
return this;
}
@CustomType.Setter
public Builder memory(@Nullable String memory) {
this.memory = memory;
return this;
}
public SpringCloudContainerDeploymentQuota build() {
final var _resultValue = new SpringCloudContainerDeploymentQuota();
_resultValue.cpu = cpu;
_resultValue.memory = memory;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy