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

com.pulumi.azurenative.communication.CommunicationServiceArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.communication;

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


public final class CommunicationServiceArgs extends com.pulumi.resources.ResourceArgs {

    public static final CommunicationServiceArgs Empty = new CommunicationServiceArgs();

    /**
     * The name of the CommunicationService resource.
     * 
     */
    @Import(name="communicationServiceName")
    private @Nullable Output communicationServiceName;

    /**
     * @return The name of the CommunicationService resource.
     * 
     */
    public Optional> communicationServiceName() {
        return Optional.ofNullable(this.communicationServiceName);
    }

    /**
     * The location where the communication service stores its data at rest.
     * 
     */
    @Import(name="dataLocation", required=true)
    private Output dataLocation;

    /**
     * @return The location where the communication service stores its data at rest.
     * 
     */
    public Output dataLocation() {
        return this.dataLocation;
    }

    /**
     * List of email Domain resource Ids.
     * 
     */
    @Import(name="linkedDomains")
    private @Nullable Output> linkedDomains;

    /**
     * @return List of email Domain resource Ids.
     * 
     */
    public Optional>> linkedDomains() {
        return Optional.ofNullable(this.linkedDomains);
    }

    /**
     * The geo-location where the resource lives
     * 
     */
    @Import(name="location")
    private @Nullable Output location;

    /**
     * @return The geo-location where the resource lives
     * 
     */
    public Optional> location() {
        return Optional.ofNullable(this.location);
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * Resource tags.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return Resource tags.
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    private CommunicationServiceArgs() {}

    private CommunicationServiceArgs(CommunicationServiceArgs $) {
        this.communicationServiceName = $.communicationServiceName;
        this.dataLocation = $.dataLocation;
        this.linkedDomains = $.linkedDomains;
        this.location = $.location;
        this.resourceGroupName = $.resourceGroupName;
        this.tags = $.tags;
    }

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

    public static final class Builder {
        private CommunicationServiceArgs $;

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

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

        /**
         * @param communicationServiceName The name of the CommunicationService resource.
         * 
         * @return builder
         * 
         */
        public Builder communicationServiceName(@Nullable Output communicationServiceName) {
            $.communicationServiceName = communicationServiceName;
            return this;
        }

        /**
         * @param communicationServiceName The name of the CommunicationService resource.
         * 
         * @return builder
         * 
         */
        public Builder communicationServiceName(String communicationServiceName) {
            return communicationServiceName(Output.of(communicationServiceName));
        }

        /**
         * @param dataLocation The location where the communication service stores its data at rest.
         * 
         * @return builder
         * 
         */
        public Builder dataLocation(Output dataLocation) {
            $.dataLocation = dataLocation;
            return this;
        }

        /**
         * @param dataLocation The location where the communication service stores its data at rest.
         * 
         * @return builder
         * 
         */
        public Builder dataLocation(String dataLocation) {
            return dataLocation(Output.of(dataLocation));
        }

        /**
         * @param linkedDomains List of email Domain resource Ids.
         * 
         * @return builder
         * 
         */
        public Builder linkedDomains(@Nullable Output> linkedDomains) {
            $.linkedDomains = linkedDomains;
            return this;
        }

        /**
         * @param linkedDomains List of email Domain resource Ids.
         * 
         * @return builder
         * 
         */
        public Builder linkedDomains(List linkedDomains) {
            return linkedDomains(Output.of(linkedDomains));
        }

        /**
         * @param linkedDomains List of email Domain resource Ids.
         * 
         * @return builder
         * 
         */
        public Builder linkedDomains(String... linkedDomains) {
            return linkedDomains(List.of(linkedDomains));
        }

        /**
         * @param location The geo-location where the resource lives
         * 
         * @return builder
         * 
         */
        public Builder location(@Nullable Output location) {
            $.location = location;
            return this;
        }

        /**
         * @param location The geo-location where the resource lives
         * 
         * @return builder
         * 
         */
        public Builder location(String location) {
            return location(Output.of(location));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param tags Resource tags.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags Resource tags.
         * 
         * @return builder
         * 
         */
        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        public CommunicationServiceArgs build() {
            if ($.dataLocation == null) {
                throw new MissingRequiredPropertyException("CommunicationServiceArgs", "dataLocation");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("CommunicationServiceArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy