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