com.pulumi.azurenative.fabric.inputs.RpSkuArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.azurenative.fabric.inputs;
import com.pulumi.azurenative.fabric.enums.RpSkuTier;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* Represents the SKU name and Azure pricing tier for Microsoft Fabric capacity resource.
*
*/
public final class RpSkuArgs extends com.pulumi.resources.ResourceArgs {
public static final RpSkuArgs Empty = new RpSkuArgs();
/**
* The name of the SKU level.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the SKU level.
*
*/
public Output name() {
return this.name;
}
/**
* The name of the Azure pricing tier to which the SKU applies.
*
*/
@Import(name="tier", required=true)
private Output> tier;
/**
* @return The name of the Azure pricing tier to which the SKU applies.
*
*/
public Output> tier() {
return this.tier;
}
private RpSkuArgs() {}
private RpSkuArgs(RpSkuArgs $) {
this.name = $.name;
this.tier = $.tier;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(RpSkuArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private RpSkuArgs $;
public Builder() {
$ = new RpSkuArgs();
}
public Builder(RpSkuArgs defaults) {
$ = new RpSkuArgs(Objects.requireNonNull(defaults));
}
/**
* @param name The name of the SKU level.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name The name of the SKU level.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param tier The name of the Azure pricing tier to which the SKU applies.
*
* @return builder
*
*/
public Builder tier(Output> tier) {
$.tier = tier;
return this;
}
/**
* @param tier The name of the Azure pricing tier to which the SKU applies.
*
* @return builder
*
*/
public Builder tier(Either tier) {
return tier(Output.of(tier));
}
/**
* @param tier The name of the Azure pricing tier to which the SKU applies.
*
* @return builder
*
*/
public Builder tier(String tier) {
return tier(Either.ofLeft(tier));
}
/**
* @param tier The name of the Azure pricing tier to which the SKU applies.
*
* @return builder
*
*/
public Builder tier(RpSkuTier tier) {
return tier(Either.ofRight(tier));
}
public RpSkuArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("RpSkuArgs", "name");
}
if ($.tier == null) {
throw new MissingRequiredPropertyException("RpSkuArgs", "tier");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy