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

com.pulumi.azurenative.elastic.inputs.CompanyInfoArgs Maven / Gradle / Ivy

There is a newer version: 2.78.0
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.azurenative.elastic.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Company information of the user to be passed to partners.
 * 
 */
public final class CompanyInfoArgs extends com.pulumi.resources.ResourceArgs {

    public static final CompanyInfoArgs Empty = new CompanyInfoArgs();

    /**
     * Business of the company
     * 
     */
    @Import(name="business")
    private @Nullable Output business;

    /**
     * @return Business of the company
     * 
     */
    public Optional> business() {
        return Optional.ofNullable(this.business);
    }

    /**
     * Country of the company location.
     * 
     */
    @Import(name="country")
    private @Nullable Output country;

    /**
     * @return Country of the company location.
     * 
     */
    public Optional> country() {
        return Optional.ofNullable(this.country);
    }

    /**
     * Domain of the company
     * 
     */
    @Import(name="domain")
    private @Nullable Output domain;

    /**
     * @return Domain of the company
     * 
     */
    public Optional> domain() {
        return Optional.ofNullable(this.domain);
    }

    /**
     * Number of employees in the company
     * 
     */
    @Import(name="employeesNumber")
    private @Nullable Output employeesNumber;

    /**
     * @return Number of employees in the company
     * 
     */
    public Optional> employeesNumber() {
        return Optional.ofNullable(this.employeesNumber);
    }

    /**
     * State of the company location.
     * 
     */
    @Import(name="state")
    private @Nullable Output state;

    /**
     * @return State of the company location.
     * 
     */
    public Optional> state() {
        return Optional.ofNullable(this.state);
    }

    private CompanyInfoArgs() {}

    private CompanyInfoArgs(CompanyInfoArgs $) {
        this.business = $.business;
        this.country = $.country;
        this.domain = $.domain;
        this.employeesNumber = $.employeesNumber;
        this.state = $.state;
    }

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

    public static final class Builder {
        private CompanyInfoArgs $;

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

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

        /**
         * @param business Business of the company
         * 
         * @return builder
         * 
         */
        public Builder business(@Nullable Output business) {
            $.business = business;
            return this;
        }

        /**
         * @param business Business of the company
         * 
         * @return builder
         * 
         */
        public Builder business(String business) {
            return business(Output.of(business));
        }

        /**
         * @param country Country of the company location.
         * 
         * @return builder
         * 
         */
        public Builder country(@Nullable Output country) {
            $.country = country;
            return this;
        }

        /**
         * @param country Country of the company location.
         * 
         * @return builder
         * 
         */
        public Builder country(String country) {
            return country(Output.of(country));
        }

        /**
         * @param domain Domain of the company
         * 
         * @return builder
         * 
         */
        public Builder domain(@Nullable Output domain) {
            $.domain = domain;
            return this;
        }

        /**
         * @param domain Domain of the company
         * 
         * @return builder
         * 
         */
        public Builder domain(String domain) {
            return domain(Output.of(domain));
        }

        /**
         * @param employeesNumber Number of employees in the company
         * 
         * @return builder
         * 
         */
        public Builder employeesNumber(@Nullable Output employeesNumber) {
            $.employeesNumber = employeesNumber;
            return this;
        }

        /**
         * @param employeesNumber Number of employees in the company
         * 
         * @return builder
         * 
         */
        public Builder employeesNumber(String employeesNumber) {
            return employeesNumber(Output.of(employeesNumber));
        }

        /**
         * @param state State of the company location.
         * 
         * @return builder
         * 
         */
        public Builder state(@Nullable Output state) {
            $.state = state;
            return this;
        }

        /**
         * @param state State of the company location.
         * 
         * @return builder
         * 
         */
        public Builder state(String state) {
            return state(Output.of(state));
        }

        public CompanyInfoArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy