com.pulumi.alicloud.imp.inputs.GetAppTemplatesPlainArgs 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.imp.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 GetAppTemplatesPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetAppTemplatesPlainArgs Empty = new GetAppTemplatesPlainArgs();
/**
* A list of App Template IDs.
*
*/
@Import(name="ids")
private @Nullable List ids;
/**
* @return A list of App Template IDs.
*
*/
public Optional> ids() {
return Optional.ofNullable(this.ids);
}
/**
* A regex string to filter results by App Template name.
*
*/
@Import(name="nameRegex")
private @Nullable String nameRegex;
/**
* @return A regex string to filter results by App Template 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);
}
/**
* Application template usage status. Valid values: ["attached", "unattached"].
*
*/
@Import(name="status")
private @Nullable String status;
/**
* @return Application template usage status. Valid values: ["attached", "unattached"].
*
*/
public Optional status() {
return Optional.ofNullable(this.status);
}
private GetAppTemplatesPlainArgs() {}
private GetAppTemplatesPlainArgs(GetAppTemplatesPlainArgs $) {
this.ids = $.ids;
this.nameRegex = $.nameRegex;
this.outputFile = $.outputFile;
this.status = $.status;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAppTemplatesPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetAppTemplatesPlainArgs $;
public Builder() {
$ = new GetAppTemplatesPlainArgs();
}
public Builder(GetAppTemplatesPlainArgs defaults) {
$ = new GetAppTemplatesPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param ids A list of App Template IDs.
*
* @return builder
*
*/
public Builder ids(@Nullable List ids) {
$.ids = ids;
return this;
}
/**
* @param ids A list of App Template IDs.
*
* @return builder
*
*/
public Builder ids(String... ids) {
return ids(List.of(ids));
}
/**
* @param nameRegex A regex string to filter results by App Template 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 status Application template usage status. Valid values: ["attached", "unattached"].
*
* @return builder
*
*/
public Builder status(@Nullable String status) {
$.status = status;
return this;
}
public GetAppTemplatesPlainArgs build() {
return $;
}
}
}