com.pulumi.alicloud.cr.inputs.GetChartNamespacesPlainArgs 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.cr.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 GetChartNamespacesPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetChartNamespacesPlainArgs Empty = new GetChartNamespacesPlainArgs();
/**
* A list of matched Container Registry Enterprise Edition namespaces.
*
*/
@Import(name="ids")
private @Nullable List ids;
/**
* @return A list of matched Container Registry Enterprise Edition namespaces.
*
*/
public Optional> ids() {
return Optional.ofNullable(this.ids);
}
/**
* The ID of the Container Registry instance.
*
*/
@Import(name="instanceId", required=true)
private String instanceId;
/**
* @return The ID of the Container Registry instance.
*
*/
public String instanceId() {
return this.instanceId;
}
/**
* A regex string to filter results by name space name.
*
*/
@Import(name="nameRegex")
private @Nullable String nameRegex;
/**
* @return A regex string to filter results by name space 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);
}
private GetChartNamespacesPlainArgs() {}
private GetChartNamespacesPlainArgs(GetChartNamespacesPlainArgs $) {
this.ids = $.ids;
this.instanceId = $.instanceId;
this.nameRegex = $.nameRegex;
this.outputFile = $.outputFile;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetChartNamespacesPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetChartNamespacesPlainArgs $;
public Builder() {
$ = new GetChartNamespacesPlainArgs();
}
public Builder(GetChartNamespacesPlainArgs defaults) {
$ = new GetChartNamespacesPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param ids A list of matched Container Registry Enterprise Edition namespaces.
*
* @return builder
*
*/
public Builder ids(@Nullable List ids) {
$.ids = ids;
return this;
}
/**
* @param ids A list of matched Container Registry Enterprise Edition namespaces.
*
* @return builder
*
*/
public Builder ids(String... ids) {
return ids(List.of(ids));
}
/**
* @param instanceId The ID of the Container Registry instance.
*
* @return builder
*
*/
public Builder instanceId(String instanceId) {
$.instanceId = instanceId;
return this;
}
/**
* @param nameRegex A regex string to filter results by name space 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 GetChartNamespacesPlainArgs build() {
if ($.instanceId == null) {
throw new MissingRequiredPropertyException("GetChartNamespacesPlainArgs", "instanceId");
}
return $;
}
}
}