
com.pulumi.azurenative.labservices.inputs.GetUserPlainArgs Maven / Gradle / Ivy
// *** 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.labservices.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetUserPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetUserPlainArgs Empty = new GetUserPlainArgs();
/**
* The name of the lab that uniquely identifies it within containing lab plan. Used in resource URIs.
*
*/
@Import(name="labName", required=true)
private String labName;
/**
* @return The name of the lab that uniquely identifies it within containing lab plan. Used in resource URIs.
*
*/
public String labName() {
return this.labName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name of the user that uniquely identifies it within containing lab. Used in resource URIs.
*
*/
@Import(name="userName", required=true)
private String userName;
/**
* @return The name of the user that uniquely identifies it within containing lab. Used in resource URIs.
*
*/
public String userName() {
return this.userName;
}
private GetUserPlainArgs() {}
private GetUserPlainArgs(GetUserPlainArgs $) {
this.labName = $.labName;
this.resourceGroupName = $.resourceGroupName;
this.userName = $.userName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetUserPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetUserPlainArgs $;
public Builder() {
$ = new GetUserPlainArgs();
}
public Builder(GetUserPlainArgs defaults) {
$ = new GetUserPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param labName The name of the lab that uniquely identifies it within containing lab plan. Used in resource URIs.
*
* @return builder
*
*/
public Builder labName(String labName) {
$.labName = labName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param userName The name of the user that uniquely identifies it within containing lab. Used in resource URIs.
*
* @return builder
*
*/
public Builder userName(String userName) {
$.userName = userName;
return this;
}
public GetUserPlainArgs build() {
if ($.labName == null) {
throw new MissingRequiredPropertyException("GetUserPlainArgs", "labName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetUserPlainArgs", "resourceGroupName");
}
if ($.userName == null) {
throw new MissingRequiredPropertyException("GetUserPlainArgs", "userName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy