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