com.pulumi.alicloud.cloudsso.inputs.GetGroupsPlainArgs 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.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetGroupsPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetGroupsPlainArgs Empty = new GetGroupsPlainArgs();
/**
* The ID of the Directory.
*
*/
@Import(name="directoryId", required=true)
private String directoryId;
/**
* @return The ID of the Directory.
*
*/
public String directoryId() {
return this.directoryId;
}
/**
* A list of Group IDs.
*
*/
@Import(name="ids")
private @Nullable List ids;
/**
* @return A list of Group IDs.
*
*/
public Optional> ids() {
return Optional.ofNullable(this.ids);
}
/**
* A regex string to filter results by Group name.
*
*/
@Import(name="nameRegex")
private @Nullable String nameRegex;
/**
* @return A regex string to filter results by Group name.
*
*/
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);
}
/**
* The ProvisionType of the Group. Valid values: `Manual`, `Synchronized`.
*
*/
@Import(name="provisionType")
private @Nullable String provisionType;
/**
* @return The ProvisionType of the Group. Valid values: `Manual`, `Synchronized`.
*
*/
public Optional provisionType() {
return Optional.ofNullable(this.provisionType);
}
private GetGroupsPlainArgs() {}
private GetGroupsPlainArgs(GetGroupsPlainArgs $) {
this.directoryId = $.directoryId;
this.ids = $.ids;
this.nameRegex = $.nameRegex;
this.outputFile = $.outputFile;
this.provisionType = $.provisionType;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetGroupsPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetGroupsPlainArgs $;
public Builder() {
$ = new GetGroupsPlainArgs();
}
public Builder(GetGroupsPlainArgs defaults) {
$ = new GetGroupsPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param directoryId The ID of the Directory.
*
* @return builder
*
*/
public Builder directoryId(String directoryId) {
$.directoryId = directoryId;
return this;
}
/**
* @param ids A list of Group IDs.
*
* @return builder
*
*/
public Builder ids(@Nullable List ids) {
$.ids = ids;
return this;
}
/**
* @param ids A list of Group IDs.
*
* @return builder
*
*/
public Builder ids(String... ids) {
return ids(List.of(ids));
}
/**
* @param nameRegex A regex string to filter results by Group name.
*
* @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 provisionType The ProvisionType of the Group. Valid values: `Manual`, `Synchronized`.
*
* @return builder
*
*/
public Builder provisionType(@Nullable String provisionType) {
$.provisionType = provisionType;
return this;
}
public GetGroupsPlainArgs build() {
if ($.directoryId == null) {
throw new MissingRequiredPropertyException("GetGroupsPlainArgs", "directoryId");
}
return $;
}
}
}