com.pulumi.alicloud.cloudsso.outputs.GetUsersResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alicloud Show documentation
Show all versions of alicloud Show documentation
A Pulumi package for creating and managing AliCloud 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.alicloud.cloudsso.outputs;
import com.pulumi.alicloud.cloudsso.outputs.GetUsersUser;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetUsersResult {
private String directoryId;
private @Nullable Boolean enableDetails;
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
private String id;
private List ids;
private @Nullable String nameRegex;
private List names;
private @Nullable String outputFile;
private @Nullable String provisionType;
private @Nullable String status;
private List users;
private GetUsersResult() {}
public String directoryId() {
return this.directoryId;
}
public Optional enableDetails() {
return Optional.ofNullable(this.enableDetails);
}
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
public String id() {
return this.id;
}
public List ids() {
return this.ids;
}
public Optional nameRegex() {
return Optional.ofNullable(this.nameRegex);
}
public List names() {
return this.names;
}
public Optional outputFile() {
return Optional.ofNullable(this.outputFile);
}
public Optional provisionType() {
return Optional.ofNullable(this.provisionType);
}
public Optional status() {
return Optional.ofNullable(this.status);
}
public List users() {
return this.users;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetUsersResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String directoryId;
private @Nullable Boolean enableDetails;
private String id;
private List ids;
private @Nullable String nameRegex;
private List names;
private @Nullable String outputFile;
private @Nullable String provisionType;
private @Nullable String status;
private List users;
public Builder() {}
public Builder(GetUsersResult defaults) {
Objects.requireNonNull(defaults);
this.directoryId = defaults.directoryId;
this.enableDetails = defaults.enableDetails;
this.id = defaults.id;
this.ids = defaults.ids;
this.nameRegex = defaults.nameRegex;
this.names = defaults.names;
this.outputFile = defaults.outputFile;
this.provisionType = defaults.provisionType;
this.status = defaults.status;
this.users = defaults.users;
}
@CustomType.Setter
public Builder directoryId(String directoryId) {
if (directoryId == null) {
throw new MissingRequiredPropertyException("GetUsersResult", "directoryId");
}
this.directoryId = directoryId;
return this;
}
@CustomType.Setter
public Builder enableDetails(@Nullable Boolean enableDetails) {
this.enableDetails = enableDetails;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetUsersResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder ids(List ids) {
if (ids == null) {
throw new MissingRequiredPropertyException("GetUsersResult", "ids");
}
this.ids = ids;
return this;
}
public Builder ids(String... ids) {
return ids(List.of(ids));
}
@CustomType.Setter
public Builder nameRegex(@Nullable String nameRegex) {
this.nameRegex = nameRegex;
return this;
}
@CustomType.Setter
public Builder names(List names) {
if (names == null) {
throw new MissingRequiredPropertyException("GetUsersResult", "names");
}
this.names = names;
return this;
}
public Builder names(String... names) {
return names(List.of(names));
}
@CustomType.Setter
public Builder outputFile(@Nullable String outputFile) {
this.outputFile = outputFile;
return this;
}
@CustomType.Setter
public Builder provisionType(@Nullable String provisionType) {
this.provisionType = provisionType;
return this;
}
@CustomType.Setter
public Builder status(@Nullable String status) {
this.status = status;
return this;
}
@CustomType.Setter
public Builder users(List users) {
if (users == null) {
throw new MissingRequiredPropertyException("GetUsersResult", "users");
}
this.users = users;
return this;
}
public Builder users(GetUsersUser... users) {
return users(List.of(users));
}
public GetUsersResult build() {
final var _resultValue = new GetUsersResult();
_resultValue.directoryId = directoryId;
_resultValue.enableDetails = enableDetails;
_resultValue.id = id;
_resultValue.ids = ids;
_resultValue.nameRegex = nameRegex;
_resultValue.names = names;
_resultValue.outputFile = outputFile;
_resultValue.provisionType = provisionType;
_resultValue.status = status;
_resultValue.users = users;
return _resultValue;
}
}
}