com.pulumi.azurenative.portal.inputs.GetConsolePlainArgs 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.portal.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetConsolePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetConsolePlainArgs Empty = new GetConsolePlainArgs();
/**
* The name of the console
*
*/
@Import(name="consoleName", required=true)
private String consoleName;
/**
* @return The name of the console
*
*/
public String consoleName() {
return this.consoleName;
}
private GetConsolePlainArgs() {}
private GetConsolePlainArgs(GetConsolePlainArgs $) {
this.consoleName = $.consoleName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetConsolePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetConsolePlainArgs $;
public Builder() {
$ = new GetConsolePlainArgs();
}
public Builder(GetConsolePlainArgs defaults) {
$ = new GetConsolePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param consoleName The name of the console
*
* @return builder
*
*/
public Builder consoleName(String consoleName) {
$.consoleName = consoleName;
return this;
}
public GetConsolePlainArgs build() {
if ($.consoleName == null) {
throw new MissingRequiredPropertyException("GetConsolePlainArgs", "consoleName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy