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

com.pulumi.alicloud.dns.inputs.GetResolutionLinesArgs 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.dns.inputs;

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

    public static final GetResolutionLinesArgs Empty = new GetResolutionLinesArgs();

    /**
     * Domain Name.
     * 
     */
    @Import(name="domainName")
    private @Nullable Output domainName;

    /**
     * @return Domain Name.
     * 
     */
    public Optional> domainName() {
        return Optional.ofNullable(this.domainName);
    }

    /**
     * language.
     * 
     */
    @Import(name="lang")
    private @Nullable Output lang;

    /**
     * @return language.
     * 
     */
    public Optional> lang() {
        return Optional.ofNullable(this.lang);
    }

    /**
     * A list of lines codes.
     * 
     */
    @Import(name="lineCodes")
    private @Nullable Output> lineCodes;

    /**
     * @return A list of lines codes.
     * 
     */
    public Optional>> lineCodes() {
        return Optional.ofNullable(this.lineCodes);
    }

    /**
     * A list of line display names.
     * 
     */
    @Import(name="lineDisplayNames")
    private @Nullable Output> lineDisplayNames;

    /**
     * @return A list of line display names.
     * 
     */
    public Optional>> lineDisplayNames() {
        return Optional.ofNullable(this.lineDisplayNames);
    }

    @Import(name="lineNames")
    private @Nullable Output> lineNames;

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

    /**
     * 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);
    }

    /**
     * The ip of user client.
     * 
     */
    @Import(name="userClientIp")
    private @Nullable Output userClientIp;

    /**
     * @return The ip of user client.
     * 
     */
    public Optional> userClientIp() {
        return Optional.ofNullable(this.userClientIp);
    }

    private GetResolutionLinesArgs() {}

    private GetResolutionLinesArgs(GetResolutionLinesArgs $) {
        this.domainName = $.domainName;
        this.lang = $.lang;
        this.lineCodes = $.lineCodes;
        this.lineDisplayNames = $.lineDisplayNames;
        this.lineNames = $.lineNames;
        this.outputFile = $.outputFile;
        this.userClientIp = $.userClientIp;
    }

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

    public static final class Builder {
        private GetResolutionLinesArgs $;

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

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

        /**
         * @param domainName Domain Name.
         * 
         * @return builder
         * 
         */
        public Builder domainName(@Nullable Output domainName) {
            $.domainName = domainName;
            return this;
        }

        /**
         * @param domainName Domain Name.
         * 
         * @return builder
         * 
         */
        public Builder domainName(String domainName) {
            return domainName(Output.of(domainName));
        }

        /**
         * @param lang language.
         * 
         * @return builder
         * 
         */
        public Builder lang(@Nullable Output lang) {
            $.lang = lang;
            return this;
        }

        /**
         * @param lang language.
         * 
         * @return builder
         * 
         */
        public Builder lang(String lang) {
            return lang(Output.of(lang));
        }

        /**
         * @param lineCodes A list of lines codes.
         * 
         * @return builder
         * 
         */
        public Builder lineCodes(@Nullable Output> lineCodes) {
            $.lineCodes = lineCodes;
            return this;
        }

        /**
         * @param lineCodes A list of lines codes.
         * 
         * @return builder
         * 
         */
        public Builder lineCodes(List lineCodes) {
            return lineCodes(Output.of(lineCodes));
        }

        /**
         * @param lineCodes A list of lines codes.
         * 
         * @return builder
         * 
         */
        public Builder lineCodes(String... lineCodes) {
            return lineCodes(List.of(lineCodes));
        }

        /**
         * @param lineDisplayNames A list of line display names.
         * 
         * @return builder
         * 
         */
        public Builder lineDisplayNames(@Nullable Output> lineDisplayNames) {
            $.lineDisplayNames = lineDisplayNames;
            return this;
        }

        /**
         * @param lineDisplayNames A list of line display names.
         * 
         * @return builder
         * 
         */
        public Builder lineDisplayNames(List lineDisplayNames) {
            return lineDisplayNames(Output.of(lineDisplayNames));
        }

        /**
         * @param lineDisplayNames A list of line display names.
         * 
         * @return builder
         * 
         */
        public Builder lineDisplayNames(String... lineDisplayNames) {
            return lineDisplayNames(List.of(lineDisplayNames));
        }

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

        public Builder lineNames(List lineNames) {
            return lineNames(Output.of(lineNames));
        }

        public Builder lineNames(String... lineNames) {
            return lineNames(List.of(lineNames));
        }

        /**
         * @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));
        }

        /**
         * @param userClientIp The ip of user client.
         * 
         * @return builder
         * 
         */
        public Builder userClientIp(@Nullable Output userClientIp) {
            $.userClientIp = userClientIp;
            return this;
        }

        /**
         * @param userClientIp The ip of user client.
         * 
         * @return builder
         * 
         */
        public Builder userClientIp(String userClientIp) {
            return userClientIp(Output.of(userClientIp));
        }

        public GetResolutionLinesArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy