com.pulumi.azurenative.changeanalysis.inputs.GetConfigurationProfileArgs 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.changeanalysis.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 GetConfigurationProfileArgs extends com.pulumi.resources.InvokeArgs {
public static final GetConfigurationProfileArgs Empty = new GetConfigurationProfileArgs();
/**
* The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten.
*
*/
@Import(name="profileName", required=true)
private Output profileName;
/**
* @return The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten.
*
*/
public Output profileName() {
return this.profileName;
}
private GetConfigurationProfileArgs() {}
private GetConfigurationProfileArgs(GetConfigurationProfileArgs $) {
this.profileName = $.profileName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetConfigurationProfileArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetConfigurationProfileArgs $;
public Builder() {
$ = new GetConfigurationProfileArgs();
}
public Builder(GetConfigurationProfileArgs defaults) {
$ = new GetConfigurationProfileArgs(Objects.requireNonNull(defaults));
}
/**
* @param profileName The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten.
*
* @return builder
*
*/
public Builder profileName(Output profileName) {
$.profileName = profileName;
return this;
}
/**
* @param profileName The name of the configuration profile. The profile name should be set to 'default', all other names will be overwritten.
*
* @return builder
*
*/
public Builder profileName(String profileName) {
return profileName(Output.of(profileName));
}
public GetConfigurationProfileArgs build() {
if ($.profileName == null) {
throw new MissingRequiredPropertyException("GetConfigurationProfileArgs", "profileName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy