com.pulumi.azurenative.providerhub.inputs.GetSkusArgs 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.providerhub.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetSkusArgs extends com.pulumi.resources.InvokeArgs {
public static final GetSkusArgs Empty = new GetSkusArgs();
/**
* The name of the resource provider hosted within ProviderHub.
*
*/
@Import(name="providerNamespace", required=true)
private Output providerNamespace;
/**
* @return The name of the resource provider hosted within ProviderHub.
*
*/
public Output providerNamespace() {
return this.providerNamespace;
}
/**
* The resource type.
*
*/
@Import(name="resourceType", required=true)
private Output resourceType;
/**
* @return The resource type.
*
*/
public Output resourceType() {
return this.resourceType;
}
/**
* The SKU.
*
*/
@Import(name="sku", required=true)
private Output sku;
/**
* @return The SKU.
*
*/
public Output sku() {
return this.sku;
}
private GetSkusArgs() {}
private GetSkusArgs(GetSkusArgs $) {
this.providerNamespace = $.providerNamespace;
this.resourceType = $.resourceType;
this.sku = $.sku;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetSkusArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetSkusArgs $;
public Builder() {
$ = new GetSkusArgs();
}
public Builder(GetSkusArgs defaults) {
$ = new GetSkusArgs(Objects.requireNonNull(defaults));
}
/**
* @param providerNamespace The name of the resource provider hosted within ProviderHub.
*
* @return builder
*
*/
public Builder providerNamespace(Output providerNamespace) {
$.providerNamespace = providerNamespace;
return this;
}
/**
* @param providerNamespace The name of the resource provider hosted within ProviderHub.
*
* @return builder
*
*/
public Builder providerNamespace(String providerNamespace) {
return providerNamespace(Output.of(providerNamespace));
}
/**
* @param resourceType The resource type.
*
* @return builder
*
*/
public Builder resourceType(Output resourceType) {
$.resourceType = resourceType;
return this;
}
/**
* @param resourceType The resource type.
*
* @return builder
*
*/
public Builder resourceType(String resourceType) {
return resourceType(Output.of(resourceType));
}
/**
* @param sku The SKU.
*
* @return builder
*
*/
public Builder sku(Output sku) {
$.sku = sku;
return this;
}
/**
* @param sku The SKU.
*
* @return builder
*
*/
public Builder sku(String sku) {
return sku(Output.of(sku));
}
public GetSkusArgs build() {
if ($.providerNamespace == null) {
throw new MissingRequiredPropertyException("GetSkusArgs", "providerNamespace");
}
if ($.resourceType == null) {
throw new MissingRequiredPropertyException("GetSkusArgs", "resourceType");
}
if ($.sku == null) {
throw new MissingRequiredPropertyException("GetSkusArgs", "sku");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy