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