
com.pulumi.azurenative.networkcloud.outputs.KeySetUserStatusResponse 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.networkcloud.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class KeySetUserStatusResponse {
/**
* @return The user name that will be used for access.
*
*/
private String azureUserName;
/**
* @return The indicator of whether the user is currently deployed for access.
*
*/
private String status;
/**
* @return The additional information describing the current status of this user, if any available.
*
*/
private String statusMessage;
private KeySetUserStatusResponse() {}
/**
* @return The user name that will be used for access.
*
*/
public String azureUserName() {
return this.azureUserName;
}
/**
* @return The indicator of whether the user is currently deployed for access.
*
*/
public String status() {
return this.status;
}
/**
* @return The additional information describing the current status of this user, if any available.
*
*/
public String statusMessage() {
return this.statusMessage;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(KeySetUserStatusResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String azureUserName;
private String status;
private String statusMessage;
public Builder() {}
public Builder(KeySetUserStatusResponse defaults) {
Objects.requireNonNull(defaults);
this.azureUserName = defaults.azureUserName;
this.status = defaults.status;
this.statusMessage = defaults.statusMessage;
}
@CustomType.Setter
public Builder azureUserName(String azureUserName) {
if (azureUserName == null) {
throw new MissingRequiredPropertyException("KeySetUserStatusResponse", "azureUserName");
}
this.azureUserName = azureUserName;
return this;
}
@CustomType.Setter
public Builder status(String status) {
if (status == null) {
throw new MissingRequiredPropertyException("KeySetUserStatusResponse", "status");
}
this.status = status;
return this;
}
@CustomType.Setter
public Builder statusMessage(String statusMessage) {
if (statusMessage == null) {
throw new MissingRequiredPropertyException("KeySetUserStatusResponse", "statusMessage");
}
this.statusMessage = statusMessage;
return this;
}
public KeySetUserStatusResponse build() {
final var _resultValue = new KeySetUserStatusResponse();
_resultValue.azureUserName = azureUserName;
_resultValue.status = status;
_resultValue.statusMessage = statusMessage;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy