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

com.pulumi.azure.bot.ChannelAlexaArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.bot;

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


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

    public static final ChannelAlexaArgs Empty = new ChannelAlexaArgs();

    /**
     * The name of the Bot Resource this channel will be associated with. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="botName", required=true)
    private Output botName;

    /**
     * @return The name of the Bot Resource this channel will be associated with. Changing this forces a new resource to be created.
     * 
     */
    public Output botName() {
        return this.botName;
    }

    /**
     * The supported Azure location where the resource exists. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="location")
    private @Nullable Output location;

    /**
     * @return The supported Azure location where the resource exists. Changing this forces a new resource to be created.
     * 
     */
    public Optional> location() {
        return Optional.ofNullable(this.location);
    }

    /**
     * The name of the resource group where the Alexa Channel should be created. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group where the Alexa Channel should be created. Changing this forces a new resource to be created.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The Alexa skill ID for the Alexa Channel.
     * 
     */
    @Import(name="skillId", required=true)
    private Output skillId;

    /**
     * @return The Alexa skill ID for the Alexa Channel.
     * 
     */
    public Output skillId() {
        return this.skillId;
    }

    private ChannelAlexaArgs() {}

    private ChannelAlexaArgs(ChannelAlexaArgs $) {
        this.botName = $.botName;
        this.location = $.location;
        this.resourceGroupName = $.resourceGroupName;
        this.skillId = $.skillId;
    }

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

    public static final class Builder {
        private ChannelAlexaArgs $;

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

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

        /**
         * @param botName The name of the Bot Resource this channel will be associated with. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder botName(Output botName) {
            $.botName = botName;
            return this;
        }

        /**
         * @param botName The name of the Bot Resource this channel will be associated with. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder botName(String botName) {
            return botName(Output.of(botName));
        }

        /**
         * @param location The supported Azure location where the resource exists. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder location(@Nullable Output location) {
            $.location = location;
            return this;
        }

        /**
         * @param location The supported Azure location where the resource exists. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder location(String location) {
            return location(Output.of(location));
        }

        /**
         * @param resourceGroupName The name of the resource group where the Alexa Channel should be created. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group where the Alexa Channel should be created. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param skillId The Alexa skill ID for the Alexa Channel.
         * 
         * @return builder
         * 
         */
        public Builder skillId(Output skillId) {
            $.skillId = skillId;
            return this;
        }

        /**
         * @param skillId The Alexa skill ID for the Alexa Channel.
         * 
         * @return builder
         * 
         */
        public Builder skillId(String skillId) {
            return skillId(Output.of(skillId));
        }

        public ChannelAlexaArgs build() {
            if ($.botName == null) {
                throw new MissingRequiredPropertyException("ChannelAlexaArgs", "botName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("ChannelAlexaArgs", "resourceGroupName");
            }
            if ($.skillId == null) {
                throw new MissingRequiredPropertyException("ChannelAlexaArgs", "skillId");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy