
com.pulumi.azurenative.logic.inputs.IntegrationAccountSkuArgs Maven / Gradle / Ivy
// *** 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.logic.inputs;
import com.pulumi.azurenative.logic.enums.IntegrationAccountSkuName;
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;
/**
* The integration account sku.
*
*/
public final class IntegrationAccountSkuArgs extends com.pulumi.resources.ResourceArgs {
public static final IntegrationAccountSkuArgs Empty = new IntegrationAccountSkuArgs();
/**
* The sku name.
*
*/
@Import(name="name", required=true)
private Output> name;
/**
* @return The sku name.
*
*/
public Output> name() {
return this.name;
}
private IntegrationAccountSkuArgs() {}
private IntegrationAccountSkuArgs(IntegrationAccountSkuArgs $) {
this.name = $.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IntegrationAccountSkuArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private IntegrationAccountSkuArgs $;
public Builder() {
$ = new IntegrationAccountSkuArgs();
}
public Builder(IntegrationAccountSkuArgs defaults) {
$ = new IntegrationAccountSkuArgs(Objects.requireNonNull(defaults));
}
/**
* @param name The sku name.
*
* @return builder
*
*/
public Builder name(Output> name) {
$.name = name;
return this;
}
/**
* @param name The sku name.
*
* @return builder
*
*/
public Builder name(Either name) {
return name(Output.of(name));
}
/**
* @param name The sku name.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Either.ofLeft(name));
}
/**
* @param name The sku name.
*
* @return builder
*
*/
public Builder name(IntegrationAccountSkuName name) {
return name(Either.ofRight(name));
}
public IntegrationAccountSkuArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("IntegrationAccountSkuArgs", "name");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy