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

com.pulumi.azure.bot.ChannelSmsArgs 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 ChannelSmsArgs extends com.pulumi.resources.ResourceArgs {

    public static final ChannelSmsArgs Empty = new ChannelSmsArgs();

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

    /**
     * Specifies 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 Specifies 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 phone number for the SMS Channel.
     * 
     */
    @Import(name="phoneNumber", required=true)
    private Output phoneNumber;

    /**
     * @return The phone number for the SMS Channel.
     * 
     */
    public Output phoneNumber() {
        return this.phoneNumber;
    }

    /**
     * The name of the resource group where the SMS 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 SMS Channel should be created. Changing this forces a new resource to be created.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The account security identifier (SID) for the SMS Channel.
     * 
     */
    @Import(name="smsChannelAccountSecurityId", required=true)
    private Output smsChannelAccountSecurityId;

    /**
     * @return The account security identifier (SID) for the SMS Channel.
     * 
     */
    public Output smsChannelAccountSecurityId() {
        return this.smsChannelAccountSecurityId;
    }

    /**
     * The authorization token for the SMS Channel.
     * 
     */
    @Import(name="smsChannelAuthToken", required=true)
    private Output smsChannelAuthToken;

    /**
     * @return The authorization token for the SMS Channel.
     * 
     */
    public Output smsChannelAuthToken() {
        return this.smsChannelAuthToken;
    }

    private ChannelSmsArgs() {}

    private ChannelSmsArgs(ChannelSmsArgs $) {
        this.botName = $.botName;
        this.location = $.location;
        this.phoneNumber = $.phoneNumber;
        this.resourceGroupName = $.resourceGroupName;
        this.smsChannelAccountSecurityId = $.smsChannelAccountSecurityId;
        this.smsChannelAuthToken = $.smsChannelAuthToken;
    }

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

    public static final class Builder {
        private ChannelSmsArgs $;

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

        public Builder(ChannelSmsArgs defaults) {
            $ = new ChannelSmsArgs(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 Specifies 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 Specifies 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 phoneNumber The phone number for the SMS Channel.
         * 
         * @return builder
         * 
         */
        public Builder phoneNumber(Output phoneNumber) {
            $.phoneNumber = phoneNumber;
            return this;
        }

        /**
         * @param phoneNumber The phone number for the SMS Channel.
         * 
         * @return builder
         * 
         */
        public Builder phoneNumber(String phoneNumber) {
            return phoneNumber(Output.of(phoneNumber));
        }

        /**
         * @param resourceGroupName The name of the resource group where the SMS 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 SMS 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 smsChannelAccountSecurityId The account security identifier (SID) for the SMS Channel.
         * 
         * @return builder
         * 
         */
        public Builder smsChannelAccountSecurityId(Output smsChannelAccountSecurityId) {
            $.smsChannelAccountSecurityId = smsChannelAccountSecurityId;
            return this;
        }

        /**
         * @param smsChannelAccountSecurityId The account security identifier (SID) for the SMS Channel.
         * 
         * @return builder
         * 
         */
        public Builder smsChannelAccountSecurityId(String smsChannelAccountSecurityId) {
            return smsChannelAccountSecurityId(Output.of(smsChannelAccountSecurityId));
        }

        /**
         * @param smsChannelAuthToken The authorization token for the SMS Channel.
         * 
         * @return builder
         * 
         */
        public Builder smsChannelAuthToken(Output smsChannelAuthToken) {
            $.smsChannelAuthToken = smsChannelAuthToken;
            return this;
        }

        /**
         * @param smsChannelAuthToken The authorization token for the SMS Channel.
         * 
         * @return builder
         * 
         */
        public Builder smsChannelAuthToken(String smsChannelAuthToken) {
            return smsChannelAuthToken(Output.of(smsChannelAuthToken));
        }

        public ChannelSmsArgs build() {
            if ($.botName == null) {
                throw new MissingRequiredPropertyException("ChannelSmsArgs", "botName");
            }
            if ($.phoneNumber == null) {
                throw new MissingRequiredPropertyException("ChannelSmsArgs", "phoneNumber");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("ChannelSmsArgs", "resourceGroupName");
            }
            if ($.smsChannelAccountSecurityId == null) {
                throw new MissingRequiredPropertyException("ChannelSmsArgs", "smsChannelAccountSecurityId");
            }
            if ($.smsChannelAuthToken == null) {
                throw new MissingRequiredPropertyException("ChannelSmsArgs", "smsChannelAuthToken");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy