com.pulumi.azurenative.costmanagement.inputs.GetSettingArgs 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.costmanagement.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 GetSettingArgs extends com.pulumi.resources.InvokeArgs {
public static final GetSettingArgs Empty = new GetSettingArgs();
/**
* Name of the setting. Allowed values: myscope
*
*/
@Import(name="settingName", required=true)
private Output settingName;
/**
* @return Name of the setting. Allowed values: myscope
*
*/
public Output settingName() {
return this.settingName;
}
private GetSettingArgs() {}
private GetSettingArgs(GetSettingArgs $) {
this.settingName = $.settingName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetSettingArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetSettingArgs $;
public Builder() {
$ = new GetSettingArgs();
}
public Builder(GetSettingArgs defaults) {
$ = new GetSettingArgs(Objects.requireNonNull(defaults));
}
/**
* @param settingName Name of the setting. Allowed values: myscope
*
* @return builder
*
*/
public Builder settingName(Output settingName) {
$.settingName = settingName;
return this;
}
/**
* @param settingName Name of the setting. Allowed values: myscope
*
* @return builder
*
*/
public Builder settingName(String settingName) {
return settingName(Output.of(settingName));
}
public GetSettingArgs build() {
if ($.settingName == null) {
throw new MissingRequiredPropertyException("GetSettingArgs", "settingName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy