All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.alicloud.servicecatalog.inputs.GetPortfoliosArgs Maven / Gradle / Ivy

There is a newer version: 3.63.0-alpha.1727424957
Show newest version
// *** 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.servicecatalog.inputs;

import com.pulumi.core.Output;
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 GetPortfoliosArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetPortfoliosArgs Empty = new GetPortfoliosArgs();

    /**
     * A list of Portfolio IDs.
     * 
     */
    @Import(name="ids")
    private @Nullable Output> ids;

    /**
     * @return A list of Portfolio IDs.
     * 
     */
    public Optional>> ids() {
        return Optional.ofNullable(this.ids);
    }

    /**
     * A regex string to filter results by Group Metric Rule name.
     * 
     */
    @Import(name="nameRegex")
    private @Nullable Output nameRegex;

    /**
     * @return A regex string to filter results by Group Metric Rule 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 Output 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 Output pageNumber;

    public Optional> pageNumber() {
        return Optional.ofNullable(this.pageNumber);
    }

    @Import(name="pageSize")
    private @Nullable Output pageSize;

    public Optional> pageSize() {
        return Optional.ofNullable(this.pageSize);
    }

    /**
     * The ID of the product.
     * 
     */
    @Import(name="productId")
    private @Nullable Output productId;

    /**
     * @return The ID of the product.
     * 
     */
    public Optional> productId() {
        return Optional.ofNullable(this.productId);
    }

    /**
     * The query scope. Valid values: `Local`(default), `Import`, `All`.
     * 
     */
    @Import(name="scope")
    private @Nullable Output scope;

    /**
     * @return The query scope. Valid values: `Local`(default), `Import`, `All`.
     * 
     */
    public Optional> scope() {
        return Optional.ofNullable(this.scope);
    }

    /**
     * The field that is used to sort the queried data. The value is fixed as CreateTime, which specifies the creation time of product portfolios.
     * 
     */
    @Import(name="sortBy")
    private @Nullable Output sortBy;

    /**
     * @return The field that is used to sort the queried data. The value is fixed as CreateTime, which specifies the creation time of product portfolios.
     * 
     */
    public Optional> sortBy() {
        return Optional.ofNullable(this.sortBy);
    }

    /**
     * The order in which you want to sort the queried data. Valid values: `Asc`, `Desc`.
     * 
     */
    @Import(name="sortOrder")
    private @Nullable Output sortOrder;

    /**
     * @return The order in which you want to sort the queried data. Valid values: `Asc`, `Desc`.
     * 
     */
    public Optional> sortOrder() {
        return Optional.ofNullable(this.sortOrder);
    }

    private GetPortfoliosArgs() {}

    private GetPortfoliosArgs(GetPortfoliosArgs $) {
        this.ids = $.ids;
        this.nameRegex = $.nameRegex;
        this.outputFile = $.outputFile;
        this.pageNumber = $.pageNumber;
        this.pageSize = $.pageSize;
        this.productId = $.productId;
        this.scope = $.scope;
        this.sortBy = $.sortBy;
        this.sortOrder = $.sortOrder;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(GetPortfoliosArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private GetPortfoliosArgs $;

        public Builder() {
            $ = new GetPortfoliosArgs();
        }

        public Builder(GetPortfoliosArgs defaults) {
            $ = new GetPortfoliosArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param ids A list of Portfolio IDs.
         * 
         * @return builder
         * 
         */
        public Builder ids(@Nullable Output> ids) {
            $.ids = ids;
            return this;
        }

        /**
         * @param ids A list of Portfolio IDs.
         * 
         * @return builder
         * 
         */
        public Builder ids(List ids) {
            return ids(Output.of(ids));
        }

        /**
         * @param ids A list of Portfolio IDs.
         * 
         * @return builder
         * 
         */
        public Builder ids(String... ids) {
            return ids(List.of(ids));
        }

        /**
         * @param nameRegex A regex string to filter results by Group Metric Rule name.
         * 
         * @return builder
         * 
         */
        public Builder nameRegex(@Nullable Output nameRegex) {
            $.nameRegex = nameRegex;
            return this;
        }

        /**
         * @param nameRegex A regex string to filter results by Group Metric Rule name.
         * 
         * @return builder
         * 
         */
        public Builder nameRegex(String nameRegex) {
            return nameRegex(Output.of(nameRegex));
        }

        /**
         * @param outputFile File name where to save data source results (after running `pulumi preview`).
         * 
         * @return builder
         * 
         */
        public Builder outputFile(@Nullable Output outputFile) {
            $.outputFile = outputFile;
            return this;
        }

        /**
         * @param outputFile File name where to save data source results (after running `pulumi preview`).
         * 
         * @return builder
         * 
         */
        public Builder outputFile(String outputFile) {
            return outputFile(Output.of(outputFile));
        }

        public Builder pageNumber(@Nullable Output pageNumber) {
            $.pageNumber = pageNumber;
            return this;
        }

        public Builder pageNumber(Integer pageNumber) {
            return pageNumber(Output.of(pageNumber));
        }

        public Builder pageSize(@Nullable Output pageSize) {
            $.pageSize = pageSize;
            return this;
        }

        public Builder pageSize(Integer pageSize) {
            return pageSize(Output.of(pageSize));
        }

        /**
         * @param productId The ID of the product.
         * 
         * @return builder
         * 
         */
        public Builder productId(@Nullable Output productId) {
            $.productId = productId;
            return this;
        }

        /**
         * @param productId The ID of the product.
         * 
         * @return builder
         * 
         */
        public Builder productId(String productId) {
            return productId(Output.of(productId));
        }

        /**
         * @param scope The query scope. Valid values: `Local`(default), `Import`, `All`.
         * 
         * @return builder
         * 
         */
        public Builder scope(@Nullable Output scope) {
            $.scope = scope;
            return this;
        }

        /**
         * @param scope The query scope. Valid values: `Local`(default), `Import`, `All`.
         * 
         * @return builder
         * 
         */
        public Builder scope(String scope) {
            return scope(Output.of(scope));
        }

        /**
         * @param sortBy The field that is used to sort the queried data. The value is fixed as CreateTime, which specifies the creation time of product portfolios.
         * 
         * @return builder
         * 
         */
        public Builder sortBy(@Nullable Output sortBy) {
            $.sortBy = sortBy;
            return this;
        }

        /**
         * @param sortBy The field that is used to sort the queried data. The value is fixed as CreateTime, which specifies the creation time of product portfolios.
         * 
         * @return builder
         * 
         */
        public Builder sortBy(String sortBy) {
            return sortBy(Output.of(sortBy));
        }

        /**
         * @param sortOrder The order in which you want to sort the queried data. Valid values: `Asc`, `Desc`.
         * 
         * @return builder
         * 
         */
        public Builder sortOrder(@Nullable Output sortOrder) {
            $.sortOrder = sortOrder;
            return this;
        }

        /**
         * @param sortOrder The order in which you want to sort the queried data. Valid values: `Asc`, `Desc`.
         * 
         * @return builder
         * 
         */
        public Builder sortOrder(String sortOrder) {
            return sortOrder(Output.of(sortOrder));
        }

        public GetPortfoliosArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy