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