com.pulumi.azure.compute.inputs.CapacityReservationSkuArgs 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.compute.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
public final class CapacityReservationSkuArgs extends com.pulumi.resources.ResourceArgs {
public static final CapacityReservationSkuArgs Empty = new CapacityReservationSkuArgs();
/**
* Specifies the number of instances to be reserved. It must be greater than or equal to `0` and not exceed the quota in the subscription.
*
*/
@Import(name="capacity", required=true)
private Output capacity;
/**
* @return Specifies the number of instances to be reserved. It must be greater than or equal to `0` and not exceed the quota in the subscription.
*
*/
public Output capacity() {
return this.capacity;
}
/**
* Name of the sku, such as `Standard_F2`. Changing this forces a new resource to be created.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return Name of the sku, such as `Standard_F2`. Changing this forces a new resource to be created.
*
*/
public Output name() {
return this.name;
}
private CapacityReservationSkuArgs() {}
private CapacityReservationSkuArgs(CapacityReservationSkuArgs $) {
this.capacity = $.capacity;
this.name = $.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CapacityReservationSkuArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private CapacityReservationSkuArgs $;
public Builder() {
$ = new CapacityReservationSkuArgs();
}
public Builder(CapacityReservationSkuArgs defaults) {
$ = new CapacityReservationSkuArgs(Objects.requireNonNull(defaults));
}
/**
* @param capacity Specifies the number of instances to be reserved. It must be greater than or equal to `0` and not exceed the quota in the subscription.
*
* @return builder
*
*/
public Builder capacity(Output capacity) {
$.capacity = capacity;
return this;
}
/**
* @param capacity Specifies the number of instances to be reserved. It must be greater than or equal to `0` and not exceed the quota in the subscription.
*
* @return builder
*
*/
public Builder capacity(Integer capacity) {
return capacity(Output.of(capacity));
}
/**
* @param name Name of the sku, such as `Standard_F2`. Changing this forces a new resource to be created.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name Name of the sku, such as `Standard_F2`. Changing this forces a new resource to be created.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
public CapacityReservationSkuArgs build() {
if ($.capacity == null) {
throw new MissingRequiredPropertyException("CapacityReservationSkuArgs", "capacity");
}
if ($.name == null) {
throw new MissingRequiredPropertyException("CapacityReservationSkuArgs", "name");
}
return $;
}
}
}