com.pulumi.alicloud.message.inputs.GetServiceTopicsPlainArgs 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.message.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetServiceTopicsPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetServiceTopicsPlainArgs Empty = new GetServiceTopicsPlainArgs();
/**
* A list of Topic IDs. Its element value is same as Topic Name.
*
*/
@Import(name="ids")
private @Nullable List ids;
/**
* @return A list of Topic IDs. Its element value is same as Topic Name.
*
*/
public Optional> ids() {
return Optional.ofNullable(this.ids);
}
/**
* A regex string to filter results by Topic name.
*
*/
@Import(name="nameRegex")
private @Nullable String nameRegex;
/**
* @return A regex string to filter results by Topic 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);
}
@Import(name="pageNumber")
private @Nullable Integer pageNumber;
public Optional pageNumber() {
return Optional.ofNullable(this.pageNumber);
}
@Import(name="pageSize")
private @Nullable Integer pageSize;
public Optional pageSize() {
return Optional.ofNullable(this.pageSize);
}
/**
* The name of the topic.
*
*/
@Import(name="topicName")
private @Nullable String topicName;
/**
* @return The name of the topic.
*
*/
public Optional topicName() {
return Optional.ofNullable(this.topicName);
}
private GetServiceTopicsPlainArgs() {}
private GetServiceTopicsPlainArgs(GetServiceTopicsPlainArgs $) {
this.ids = $.ids;
this.nameRegex = $.nameRegex;
this.outputFile = $.outputFile;
this.pageNumber = $.pageNumber;
this.pageSize = $.pageSize;
this.topicName = $.topicName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetServiceTopicsPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetServiceTopicsPlainArgs $;
public Builder() {
$ = new GetServiceTopicsPlainArgs();
}
public Builder(GetServiceTopicsPlainArgs defaults) {
$ = new GetServiceTopicsPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param ids A list of Topic IDs. Its element value is same as Topic Name.
*
* @return builder
*
*/
public Builder ids(@Nullable List ids) {
$.ids = ids;
return this;
}
/**
* @param ids A list of Topic IDs. Its element value is same as Topic Name.
*
* @return builder
*
*/
public Builder ids(String... ids) {
return ids(List.of(ids));
}
/**
* @param nameRegex A regex string to filter results by Topic 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;
}
public Builder pageNumber(@Nullable Integer pageNumber) {
$.pageNumber = pageNumber;
return this;
}
public Builder pageSize(@Nullable Integer pageSize) {
$.pageSize = pageSize;
return this;
}
/**
* @param topicName The name of the topic.
*
* @return builder
*
*/
public Builder topicName(@Nullable String topicName) {
$.topicName = topicName;
return this;
}
public GetServiceTopicsPlainArgs build() {
return $;
}
}
}