
com.pulumi.azurenative.azuresphere.inputs.GetProductArgs 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.azuresphere.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 GetProductArgs extends com.pulumi.resources.InvokeArgs {
public static final GetProductArgs Empty = new GetProductArgs();
/**
* Name of catalog
*
*/
@Import(name="catalogName", required=true)
private Output catalogName;
/**
* @return Name of catalog
*
*/
public Output catalogName() {
return this.catalogName;
}
/**
* Name of product.
*
*/
@Import(name="productName", required=true)
private Output productName;
/**
* @return Name of product.
*
*/
public Output productName() {
return this.productName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetProductArgs() {}
private GetProductArgs(GetProductArgs $) {
this.catalogName = $.catalogName;
this.productName = $.productName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetProductArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetProductArgs $;
public Builder() {
$ = new GetProductArgs();
}
public Builder(GetProductArgs defaults) {
$ = new GetProductArgs(Objects.requireNonNull(defaults));
}
/**
* @param catalogName Name of catalog
*
* @return builder
*
*/
public Builder catalogName(Output catalogName) {
$.catalogName = catalogName;
return this;
}
/**
* @param catalogName Name of catalog
*
* @return builder
*
*/
public Builder catalogName(String catalogName) {
return catalogName(Output.of(catalogName));
}
/**
* @param productName Name of product.
*
* @return builder
*
*/
public Builder productName(Output productName) {
$.productName = productName;
return this;
}
/**
* @param productName Name of product.
*
* @return builder
*
*/
public Builder productName(String productName) {
return productName(Output.of(productName));
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetProductArgs build() {
if ($.catalogName == null) {
throw new MissingRequiredPropertyException("GetProductArgs", "catalogName");
}
if ($.productName == null) {
throw new MissingRequiredPropertyException("GetProductArgs", "productName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetProductArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy