
com.pulumi.azurenative.azurestackhci.inputs.GetDeploymentSettingArgs 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.azurestackhci.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 GetDeploymentSettingArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDeploymentSettingArgs Empty = new GetDeploymentSettingArgs();
/**
* The name of the cluster.
*
*/
@Import(name="clusterName", required=true)
private Output clusterName;
/**
* @return The name of the cluster.
*
*/
public Output clusterName() {
return this.clusterName;
}
/**
* Name of Deployment Setting
*
*/
@Import(name="deploymentSettingsName", required=true)
private Output deploymentSettingsName;
/**
* @return Name of Deployment Setting
*
*/
public Output deploymentSettingsName() {
return this.deploymentSettingsName;
}
/**
* 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 GetDeploymentSettingArgs() {}
private GetDeploymentSettingArgs(GetDeploymentSettingArgs $) {
this.clusterName = $.clusterName;
this.deploymentSettingsName = $.deploymentSettingsName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDeploymentSettingArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDeploymentSettingArgs $;
public Builder() {
$ = new GetDeploymentSettingArgs();
}
public Builder(GetDeploymentSettingArgs defaults) {
$ = new GetDeploymentSettingArgs(Objects.requireNonNull(defaults));
}
/**
* @param clusterName The name of the cluster.
*
* @return builder
*
*/
public Builder clusterName(Output clusterName) {
$.clusterName = clusterName;
return this;
}
/**
* @param clusterName The name of the cluster.
*
* @return builder
*
*/
public Builder clusterName(String clusterName) {
return clusterName(Output.of(clusterName));
}
/**
* @param deploymentSettingsName Name of Deployment Setting
*
* @return builder
*
*/
public Builder deploymentSettingsName(Output deploymentSettingsName) {
$.deploymentSettingsName = deploymentSettingsName;
return this;
}
/**
* @param deploymentSettingsName Name of Deployment Setting
*
* @return builder
*
*/
public Builder deploymentSettingsName(String deploymentSettingsName) {
return deploymentSettingsName(Output.of(deploymentSettingsName));
}
/**
* @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 GetDeploymentSettingArgs build() {
if ($.clusterName == null) {
throw new MissingRequiredPropertyException("GetDeploymentSettingArgs", "clusterName");
}
if ($.deploymentSettingsName == null) {
throw new MissingRequiredPropertyException("GetDeploymentSettingArgs", "deploymentSettingsName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetDeploymentSettingArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy