com.pulumi.alicloud.ram.inputs.GetUsersPlainArgs 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.ram.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetUsersPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetUsersPlainArgs Empty = new GetUsersPlainArgs();
/**
* Filter results by a specific group name. Returned users are in the specified group.
*
*/
@Import(name="groupName")
private @Nullable String groupName;
/**
* @return Filter results by a specific group name. Returned users are in the specified group.
*
*/
public Optional groupName() {
return Optional.ofNullable(this.groupName);
}
/**
* A list of ram user IDs.
*
*/
@Import(name="ids")
private @Nullable List ids;
/**
* @return A list of ram user IDs.
*
*/
public Optional> ids() {
return Optional.ofNullable(this.ids);
}
/**
* A regex string to filter resulting users by their names.
*
*/
@Import(name="nameRegex")
private @Nullable String nameRegex;
/**
* @return A regex string to filter resulting users by their names.
*
*/
public Optional nameRegex() {
return Optional.ofNullable(this.nameRegex);
}
/**
* File name where to save data source results (after running `pulumi preview`).
*
*/
@Import(name="outputFile")
private @Nullable String outputFile;
/**
* @return File name where to save data source results (after running `pulumi preview`).
*
*/
public Optional outputFile() {
return Optional.ofNullable(this.outputFile);
}
/**
* Filter results by a specific policy name. If you set this parameter without setting `policy_type`, the later will be automatically set to `System`. Returned users are attached to the specified policy.
*
*/
@Import(name="policyName")
private @Nullable String policyName;
/**
* @return Filter results by a specific policy name. If you set this parameter without setting `policy_type`, the later will be automatically set to `System`. Returned users are attached to the specified policy.
*
*/
public Optional policyName() {
return Optional.ofNullable(this.policyName);
}
/**
* Filter results by a specific policy type. Valid values are `Custom` and `System`. If you set this parameter, you must set `policy_name` as well.
*
*/
@Import(name="policyType")
private @Nullable String policyType;
/**
* @return Filter results by a specific policy type. Valid values are `Custom` and `System`. If you set this parameter, you must set `policy_name` as well.
*
*/
public Optional policyType() {
return Optional.ofNullable(this.policyType);
}
private GetUsersPlainArgs() {}
private GetUsersPlainArgs(GetUsersPlainArgs $) {
this.groupName = $.groupName;
this.ids = $.ids;
this.nameRegex = $.nameRegex;
this.outputFile = $.outputFile;
this.policyName = $.policyName;
this.policyType = $.policyType;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetUsersPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetUsersPlainArgs $;
public Builder() {
$ = new GetUsersPlainArgs();
}
public Builder(GetUsersPlainArgs defaults) {
$ = new GetUsersPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param groupName Filter results by a specific group name. Returned users are in the specified group.
*
* @return builder
*
*/
public Builder groupName(@Nullable String groupName) {
$.groupName = groupName;
return this;
}
/**
* @param ids A list of ram user IDs.
*
* @return builder
*
*/
public Builder ids(@Nullable List ids) {
$.ids = ids;
return this;
}
/**
* @param ids A list of ram user IDs.
*
* @return builder
*
*/
public Builder ids(String... ids) {
return ids(List.of(ids));
}
/**
* @param nameRegex A regex string to filter resulting users by their names.
*
* @return builder
*
*/
public Builder nameRegex(@Nullable String nameRegex) {
$.nameRegex = nameRegex;
return this;
}
/**
* @param outputFile File name where to save data source results (after running `pulumi preview`).
*
* @return builder
*
*/
public Builder outputFile(@Nullable String outputFile) {
$.outputFile = outputFile;
return this;
}
/**
* @param policyName Filter results by a specific policy name. If you set this parameter without setting `policy_type`, the later will be automatically set to `System`. Returned users are attached to the specified policy.
*
* @return builder
*
*/
public Builder policyName(@Nullable String policyName) {
$.policyName = policyName;
return this;
}
/**
* @param policyType Filter results by a specific policy type. Valid values are `Custom` and `System`. If you set this parameter, you must set `policy_name` as well.
*
* @return builder
*
*/
public Builder policyType(@Nullable String policyType) {
$.policyType = policyType;
return this;
}
public GetUsersPlainArgs build() {
return $;
}
}
}