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

com.pulumi.alicloud.threatdetection.inputs.GetWebLockConfigsPlainArgs 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.threatdetection.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 GetWebLockConfigsPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetWebLockConfigsPlainArgs Empty = new GetWebLockConfigsPlainArgs();

    /**
     * A list of Web Lock Config IDs.
     * 
     */
    @Import(name="ids")
    private @Nullable List ids;

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

    /**
     * The language of the content within the request and the response. Valid values: `zh`, `en`.
     * 
     */
    @Import(name="lang")
    private @Nullable String lang;

    /**
     * @return The language of the content within the request and the response. Valid values: `zh`, `en`.
     * 
     */
    public Optional lang() {
        return Optional.ofNullable(this.lang);
    }

    /**
     * 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 string that allows you to search for servers in fuzzy match mode. You can enter a server name or IP address.
     * 
     */
    @Import(name="remark")
    private @Nullable String remark;

    /**
     * @return The string that allows you to search for servers in fuzzy match mode. You can enter a server name or IP address.
     * 
     */
    public Optional remark() {
        return Optional.ofNullable(this.remark);
    }

    /**
     * The source IP address of the request.
     * 
     */
    @Import(name="sourceIp")
    private @Nullable String sourceIp;

    /**
     * @return The source IP address of the request.
     * 
     */
    public Optional sourceIp() {
        return Optional.ofNullable(this.sourceIp);
    }

    /**
     * The protection status of the server that you want to query. Valid values: `on`, `off`.
     * 
     */
    @Import(name="status")
    private @Nullable String status;

    /**
     * @return The protection status of the server that you want to query. Valid values: `on`, `off`.
     * 
     */
    public Optional status() {
        return Optional.ofNullable(this.status);
    }

    private GetWebLockConfigsPlainArgs() {}

    private GetWebLockConfigsPlainArgs(GetWebLockConfigsPlainArgs $) {
        this.ids = $.ids;
        this.lang = $.lang;
        this.outputFile = $.outputFile;
        this.pageNumber = $.pageNumber;
        this.pageSize = $.pageSize;
        this.remark = $.remark;
        this.sourceIp = $.sourceIp;
        this.status = $.status;
    }

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

    public static final class Builder {
        private GetWebLockConfigsPlainArgs $;

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

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

        /**
         * @param ids A list of Web Lock Config IDs.
         * 
         * @return builder
         * 
         */
        public Builder ids(@Nullable List ids) {
            $.ids = ids;
            return this;
        }

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

        /**
         * @param lang The language of the content within the request and the response. Valid values: `zh`, `en`.
         * 
         * @return builder
         * 
         */
        public Builder lang(@Nullable String lang) {
            $.lang = lang;
            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 remark The string that allows you to search for servers in fuzzy match mode. You can enter a server name or IP address.
         * 
         * @return builder
         * 
         */
        public Builder remark(@Nullable String remark) {
            $.remark = remark;
            return this;
        }

        /**
         * @param sourceIp The source IP address of the request.
         * 
         * @return builder
         * 
         */
        public Builder sourceIp(@Nullable String sourceIp) {
            $.sourceIp = sourceIp;
            return this;
        }

        /**
         * @param status The protection status of the server that you want to query. Valid values: `on`, `off`.
         * 
         * @return builder
         * 
         */
        public Builder status(@Nullable String status) {
            $.status = status;
            return this;
        }

        public GetWebLockConfigsPlainArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy