1. Packages
  2. Azure Classic
  3. API Docs
  4. bot
  5. ChannelsRegistration

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a Bot Channels Registration.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var current = Output.Create(Azure.Core.GetClientConfig.InvokeAsync());
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleChannelsRegistration = new Azure.Bot.ChannelsRegistration("exampleChannelsRegistration", new Azure.Bot.ChannelsRegistrationArgs
            {
                Location = "global",
                ResourceGroupName = exampleResourceGroup.Name,
                Sku = "F0",
                MicrosoftAppId = current.Apply(current => current.ClientId),
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/bot"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		current, err := core.GetClientConfig(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = bot.NewChannelsRegistration(ctx, "exampleChannelsRegistration", &bot.ChannelsRegistrationArgs{
    			Location:          pulumi.String("global"),
    			ResourceGroupName: exampleResourceGroup.Name,
    			Sku:               pulumi.String("F0"),
    			MicrosoftAppId:    pulumi.String(current.ClientId),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const current = azure.core.getClientConfig({});
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleChannelsRegistration = new azure.bot.ChannelsRegistration("exampleChannelsRegistration", {
        location: "global",
        resourceGroupName: exampleResourceGroup.name,
        sku: "F0",
        microsoftAppId: current.then(current => current.clientId),
    });
    
    import pulumi
    import pulumi_azure as azure
    
    current = azure.core.get_client_config()
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_channels_registration = azure.bot.ChannelsRegistration("exampleChannelsRegistration",
        location="global",
        resource_group_name=example_resource_group.name,
        sku="F0",
        microsoft_app_id=current.client_id)
    

    Example coming soon!

    Create ChannelsRegistration Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ChannelsRegistration(name: string, args: ChannelsRegistrationArgs, opts?: CustomResourceOptions);
    @overload
    def ChannelsRegistration(resource_name: str,
                             args: ChannelsRegistrationArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ChannelsRegistration(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             microsoft_app_id: Optional[str] = None,
                             sku: Optional[str] = None,
                             resource_group_name: Optional[str] = None,
                             endpoint: Optional[str] = None,
                             developer_app_insights_key: Optional[str] = None,
                             display_name: Optional[str] = None,
                             cmk_key_vault_url: Optional[str] = None,
                             icon_url: Optional[str] = None,
                             isolated_network_enabled: Optional[bool] = None,
                             location: Optional[str] = None,
                             developer_app_insights_application_id: Optional[str] = None,
                             name: Optional[str] = None,
                             developer_app_insights_api_key: Optional[str] = None,
                             description: Optional[str] = None,
                             tags: Optional[Mapping[str, str]] = None)
    func NewChannelsRegistration(ctx *Context, name string, args ChannelsRegistrationArgs, opts ...ResourceOption) (*ChannelsRegistration, error)
    public ChannelsRegistration(string name, ChannelsRegistrationArgs args, CustomResourceOptions? opts = null)
    public ChannelsRegistration(String name, ChannelsRegistrationArgs args)
    public ChannelsRegistration(String name, ChannelsRegistrationArgs args, CustomResourceOptions options)
    
    type: azure:bot:ChannelsRegistration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ChannelsRegistrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ChannelsRegistrationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ChannelsRegistrationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ChannelsRegistrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ChannelsRegistrationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var channelsRegistrationResource = new Azure.Bot.ChannelsRegistration("channelsRegistrationResource", new()
    {
        MicrosoftAppId = "string",
        Sku = "string",
        ResourceGroupName = "string",
        Endpoint = "string",
        DeveloperAppInsightsKey = "string",
        DisplayName = "string",
        CmkKeyVaultUrl = "string",
        IconUrl = "string",
        IsolatedNetworkEnabled = false,
        Location = "string",
        DeveloperAppInsightsApplicationId = "string",
        Name = "string",
        DeveloperAppInsightsApiKey = "string",
        Description = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := bot.NewChannelsRegistration(ctx, "channelsRegistrationResource", &bot.ChannelsRegistrationArgs{
    	MicrosoftAppId:                    pulumi.String("string"),
    	Sku:                               pulumi.String("string"),
    	ResourceGroupName:                 pulumi.String("string"),
    	Endpoint:                          pulumi.String("string"),
    	DeveloperAppInsightsKey:           pulumi.String("string"),
    	DisplayName:                       pulumi.String("string"),
    	CmkKeyVaultUrl:                    pulumi.String("string"),
    	IconUrl:                           pulumi.String("string"),
    	IsolatedNetworkEnabled:            pulumi.Bool(false),
    	Location:                          pulumi.String("string"),
    	DeveloperAppInsightsApplicationId: pulumi.String("string"),
    	Name:                              pulumi.String("string"),
    	DeveloperAppInsightsApiKey:        pulumi.String("string"),
    	Description:                       pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var channelsRegistrationResource = new ChannelsRegistration("channelsRegistrationResource", ChannelsRegistrationArgs.builder()
        .microsoftAppId("string")
        .sku("string")
        .resourceGroupName("string")
        .endpoint("string")
        .developerAppInsightsKey("string")
        .displayName("string")
        .cmkKeyVaultUrl("string")
        .iconUrl("string")
        .isolatedNetworkEnabled(false)
        .location("string")
        .developerAppInsightsApplicationId("string")
        .name("string")
        .developerAppInsightsApiKey("string")
        .description("string")
        .tags(Map.of("string", "string"))
        .build());
    
    channels_registration_resource = azure.bot.ChannelsRegistration("channelsRegistrationResource",
        microsoft_app_id="string",
        sku="string",
        resource_group_name="string",
        endpoint="string",
        developer_app_insights_key="string",
        display_name="string",
        cmk_key_vault_url="string",
        icon_url="string",
        isolated_network_enabled=False,
        location="string",
        developer_app_insights_application_id="string",
        name="string",
        developer_app_insights_api_key="string",
        description="string",
        tags={
            "string": "string",
        })
    
    const channelsRegistrationResource = new azure.bot.ChannelsRegistration("channelsRegistrationResource", {
        microsoftAppId: "string",
        sku: "string",
        resourceGroupName: "string",
        endpoint: "string",
        developerAppInsightsKey: "string",
        displayName: "string",
        cmkKeyVaultUrl: "string",
        iconUrl: "string",
        isolatedNetworkEnabled: false,
        location: "string",
        developerAppInsightsApplicationId: "string",
        name: "string",
        developerAppInsightsApiKey: "string",
        description: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure:bot:ChannelsRegistration
    properties:
        cmkKeyVaultUrl: string
        description: string
        developerAppInsightsApiKey: string
        developerAppInsightsApplicationId: string
        developerAppInsightsKey: string
        displayName: string
        endpoint: string
        iconUrl: string
        isolatedNetworkEnabled: false
        location: string
        microsoftAppId: string
        name: string
        resourceGroupName: string
        sku: string
        tags:
            string: string
    

    ChannelsRegistration Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ChannelsRegistration resource accepts the following input properties:

    MicrosoftAppId string
    The Microsoft Application ID for the Bot Channels Registration. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group in which to create the Bot Channels Registration. Changing this forces a new resource to be created.
    Sku string
    The SKU of the Bot Channels Registration. Valid values include F0 or S1. Changing this forces a new resource to be created.
    CmkKeyVaultUrl string
    The CMK Key Vault Key URL to encrypt the Bot Channels Registration with the Customer Managed Encryption Key.
    Description string
    The description of the Bot Channels Registration.
    DeveloperAppInsightsApiKey string
    The Application Insights API Key to associate with the Bot Channels Registration.
    DeveloperAppInsightsApplicationId string
    The Application Insights Application ID to associate with the Bot Channels Registration.
    DeveloperAppInsightsKey string
    The Application Insights Key to associate with the Bot Channels Registration.
    DisplayName string
    The name of the Bot Channels Registration will be displayed as. This defaults to name if not specified.
    Endpoint string
    The Bot Channels Registration endpoint.
    IconUrl string
    The icon URL to visually identify the Bot Channels Registration.
    IsolatedNetworkEnabled bool
    Is the Bot Channels Registration in an isolated network?
    Location string
    The supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Bot Channels Registration. Changing this forces a new resource to be created. Must be globally unique.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    MicrosoftAppId string
    The Microsoft Application ID for the Bot Channels Registration. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group in which to create the Bot Channels Registration. Changing this forces a new resource to be created.
    Sku string
    The SKU of the Bot Channels Registration. Valid values include F0 or S1. Changing this forces a new resource to be created.
    CmkKeyVaultUrl string
    The CMK Key Vault Key URL to encrypt the Bot Channels Registration with the Customer Managed Encryption Key.
    Description string
    The description of the Bot Channels Registration.
    DeveloperAppInsightsApiKey string
    The Application Insights API Key to associate with the Bot Channels Registration.
    DeveloperAppInsightsApplicationId string
    The Application Insights Application ID to associate with the Bot Channels Registration.
    DeveloperAppInsightsKey string
    The Application Insights Key to associate with the Bot Channels Registration.
    DisplayName string
    The name of the Bot Channels Registration will be displayed as. This defaults to name if not specified.
    Endpoint string
    The Bot Channels Registration endpoint.
    IconUrl string
    The icon URL to visually identify the Bot Channels Registration.
    IsolatedNetworkEnabled bool
    Is the Bot Channels Registration in an isolated network?
    Location string
    The supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Bot Channels Registration. Changing this forces a new resource to be created. Must be globally unique.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    microsoftAppId String
    The Microsoft Application ID for the Bot Channels Registration. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group in which to create the Bot Channels Registration. Changing this forces a new resource to be created.
    sku String
    The SKU of the Bot Channels Registration. Valid values include F0 or S1. Changing this forces a new resource to be created.
    cmkKeyVaultUrl String
    The CMK Key Vault Key URL to encrypt the Bot Channels Registration with the Customer Managed Encryption Key.
    description String
    The description of the Bot Channels Registration.
    developerAppInsightsApiKey String
    The Application Insights API Key to associate with the Bot Channels Registration.
    developerAppInsightsApplicationId String
    The Application Insights Application ID to associate with the Bot Channels Registration.
    developerAppInsightsKey String
    The Application Insights Key to associate with the Bot Channels Registration.
    displayName String
    The name of the Bot Channels Registration will be displayed as. This defaults to name if not specified.
    endpoint String
    The Bot Channels Registration endpoint.
    iconUrl String
    The icon URL to visually identify the Bot Channels Registration.
    isolatedNetworkEnabled Boolean
    Is the Bot Channels Registration in an isolated network?
    location String
    The supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Bot Channels Registration. Changing this forces a new resource to be created. Must be globally unique.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    microsoftAppId string
    The Microsoft Application ID for the Bot Channels Registration. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the resource group in which to create the Bot Channels Registration. Changing this forces a new resource to be created.
    sku string
    The SKU of the Bot Channels Registration. Valid values include F0 or S1. Changing this forces a new resource to be created.
    cmkKeyVaultUrl string
    The CMK Key Vault Key URL to encrypt the Bot Channels Registration with the Customer Managed Encryption Key.
    description string
    The description of the Bot Channels Registration.
    developerAppInsightsApiKey string
    The Application Insights API Key to associate with the Bot Channels Registration.
    developerAppInsightsApplicationId string
    The Application Insights Application ID to associate with the Bot Channels Registration.
    developerAppInsightsKey string
    The Application Insights Key to associate with the Bot Channels Registration.
    displayName string
    The name of the Bot Channels Registration will be displayed as. This defaults to name if not specified.
    endpoint string
    The Bot Channels Registration endpoint.
    iconUrl string
    The icon URL to visually identify the Bot Channels Registration.
    isolatedNetworkEnabled boolean
    Is the Bot Channels Registration in an isolated network?
    location string
    The supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    Specifies the name of the Bot Channels Registration. Changing this forces a new resource to be created. Must be globally unique.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    microsoft_app_id str
    The Microsoft Application ID for the Bot Channels Registration. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the resource group in which to create the Bot Channels Registration. Changing this forces a new resource to be created.
    sku str
    The SKU of the Bot Channels Registration. Valid values include F0 or S1. Changing this forces a new resource to be created.
    cmk_key_vault_url str
    The CMK Key Vault Key URL to encrypt the Bot Channels Registration with the Customer Managed Encryption Key.
    description str
    The description of the Bot Channels Registration.
    developer_app_insights_api_key str
    The Application Insights API Key to associate with the Bot Channels Registration.
    developer_app_insights_application_id str
    The Application Insights Application ID to associate with the Bot Channels Registration.
    developer_app_insights_key str
    The Application Insights Key to associate with the Bot Channels Registration.
    display_name str
    The name of the Bot Channels Registration will be displayed as. This defaults to name if not specified.
    endpoint str
    The Bot Channels Registration endpoint.
    icon_url str
    The icon URL to visually identify the Bot Channels Registration.
    isolated_network_enabled bool
    Is the Bot Channels Registration in an isolated network?
    location str
    The supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    Specifies the name of the Bot Channels Registration. Changing this forces a new resource to be created. Must be globally unique.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    microsoftAppId String
    The Microsoft Application ID for the Bot Channels Registration. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group in which to create the Bot Channels Registration. Changing this forces a new resource to be created.
    sku String
    The SKU of the Bot Channels Registration. Valid values include F0 or S1. Changing this forces a new resource to be created.
    cmkKeyVaultUrl String
    The CMK Key Vault Key URL to encrypt the Bot Channels Registration with the Customer Managed Encryption Key.
    description String
    The description of the Bot Channels Registration.
    developerAppInsightsApiKey String
    The Application Insights API Key to associate with the Bot Channels Registration.
    developerAppInsightsApplicationId String
    The Application Insights Application ID to associate with the Bot Channels Registration.
    developerAppInsightsKey String
    The Application Insights Key to associate with the Bot Channels Registration.
    displayName String
    The name of the Bot Channels Registration will be displayed as. This defaults to name if not specified.
    endpoint String
    The Bot Channels Registration endpoint.
    iconUrl String
    The icon URL to visually identify the Bot Channels Registration.
    isolatedNetworkEnabled Boolean
    Is the Bot Channels Registration in an isolated network?
    location String
    The supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Bot Channels Registration. Changing this forces a new resource to be created. Must be globally unique.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ChannelsRegistration resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ChannelsRegistration Resource

    Get an existing ChannelsRegistration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ChannelsRegistrationState, opts?: CustomResourceOptions): ChannelsRegistration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cmk_key_vault_url: Optional[str] = None,
            description: Optional[str] = None,
            developer_app_insights_api_key: Optional[str] = None,
            developer_app_insights_application_id: Optional[str] = None,
            developer_app_insights_key: Optional[str] = None,
            display_name: Optional[str] = None,
            endpoint: Optional[str] = None,
            icon_url: Optional[str] = None,
            isolated_network_enabled: Optional[bool] = None,
            location: Optional[str] = None,
            microsoft_app_id: Optional[str] = None,
            name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            sku: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None) -> ChannelsRegistration
    func GetChannelsRegistration(ctx *Context, name string, id IDInput, state *ChannelsRegistrationState, opts ...ResourceOption) (*ChannelsRegistration, error)
    public static ChannelsRegistration Get(string name, Input<string> id, ChannelsRegistrationState? state, CustomResourceOptions? opts = null)
    public static ChannelsRegistration get(String name, Output<String> id, ChannelsRegistrationState state, CustomResourceOptions options)
    resources:  _:    type: azure:bot:ChannelsRegistration    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CmkKeyVaultUrl string
    The CMK Key Vault Key URL to encrypt the Bot Channels Registration with the Customer Managed Encryption Key.
    Description string
    The description of the Bot Channels Registration.
    DeveloperAppInsightsApiKey string
    The Application Insights API Key to associate with the Bot Channels Registration.
    DeveloperAppInsightsApplicationId string
    The Application Insights Application ID to associate with the Bot Channels Registration.
    DeveloperAppInsightsKey string
    The Application Insights Key to associate with the Bot Channels Registration.
    DisplayName string
    The name of the Bot Channels Registration will be displayed as. This defaults to name if not specified.
    Endpoint string
    The Bot Channels Registration endpoint.
    IconUrl string
    The icon URL to visually identify the Bot Channels Registration.
    IsolatedNetworkEnabled bool
    Is the Bot Channels Registration in an isolated network?
    Location string
    The supported Azure location where the resource exists. Changing this forces a new resource to be created.
    MicrosoftAppId string
    The Microsoft Application ID for the Bot Channels Registration. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Bot Channels Registration. Changing this forces a new resource to be created. Must be globally unique.
    ResourceGroupName string
    The name of the resource group in which to create the Bot Channels Registration. Changing this forces a new resource to be created.
    Sku string
    The SKU of the Bot Channels Registration. Valid values include F0 or S1. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    CmkKeyVaultUrl string
    The CMK Key Vault Key URL to encrypt the Bot Channels Registration with the Customer Managed Encryption Key.
    Description string
    The description of the Bot Channels Registration.
    DeveloperAppInsightsApiKey string
    The Application Insights API Key to associate with the Bot Channels Registration.
    DeveloperAppInsightsApplicationId string
    The Application Insights Application ID to associate with the Bot Channels Registration.
    DeveloperAppInsightsKey string
    The Application Insights Key to associate with the Bot Channels Registration.
    DisplayName string
    The name of the Bot Channels Registration will be displayed as. This defaults to name if not specified.
    Endpoint string
    The Bot Channels Registration endpoint.
    IconUrl string
    The icon URL to visually identify the Bot Channels Registration.
    IsolatedNetworkEnabled bool
    Is the Bot Channels Registration in an isolated network?
    Location string
    The supported Azure location where the resource exists. Changing this forces a new resource to be created.
    MicrosoftAppId string
    The Microsoft Application ID for the Bot Channels Registration. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Bot Channels Registration. Changing this forces a new resource to be created. Must be globally unique.
    ResourceGroupName string
    The name of the resource group in which to create the Bot Channels Registration. Changing this forces a new resource to be created.
    Sku string
    The SKU of the Bot Channels Registration. Valid values include F0 or S1. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    cmkKeyVaultUrl String
    The CMK Key Vault Key URL to encrypt the Bot Channels Registration with the Customer Managed Encryption Key.
    description String
    The description of the Bot Channels Registration.
    developerAppInsightsApiKey String
    The Application Insights API Key to associate with the Bot Channels Registration.
    developerAppInsightsApplicationId String
    The Application Insights Application ID to associate with the Bot Channels Registration.
    developerAppInsightsKey String
    The Application Insights Key to associate with the Bot Channels Registration.
    displayName String
    The name of the Bot Channels Registration will be displayed as. This defaults to name if not specified.
    endpoint String
    The Bot Channels Registration endpoint.
    iconUrl String
    The icon URL to visually identify the Bot Channels Registration.
    isolatedNetworkEnabled Boolean
    Is the Bot Channels Registration in an isolated network?
    location String
    The supported Azure location where the resource exists. Changing this forces a new resource to be created.
    microsoftAppId String
    The Microsoft Application ID for the Bot Channels Registration. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Bot Channels Registration. Changing this forces a new resource to be created. Must be globally unique.
    resourceGroupName String
    The name of the resource group in which to create the Bot Channels Registration. Changing this forces a new resource to be created.
    sku String
    The SKU of the Bot Channels Registration. Valid values include F0 or S1. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    cmkKeyVaultUrl string
    The CMK Key Vault Key URL to encrypt the Bot Channels Registration with the Customer Managed Encryption Key.
    description string
    The description of the Bot Channels Registration.
    developerAppInsightsApiKey string
    The Application Insights API Key to associate with the Bot Channels Registration.
    developerAppInsightsApplicationId string
    The Application Insights Application ID to associate with the Bot Channels Registration.
    developerAppInsightsKey string
    The Application Insights Key to associate with the Bot Channels Registration.
    displayName string
    The name of the Bot Channels Registration will be displayed as. This defaults to name if not specified.
    endpoint string
    The Bot Channels Registration endpoint.
    iconUrl string
    The icon URL to visually identify the Bot Channels Registration.
    isolatedNetworkEnabled boolean
    Is the Bot Channels Registration in an isolated network?
    location string
    The supported Azure location where the resource exists. Changing this forces a new resource to be created.
    microsoftAppId string
    The Microsoft Application ID for the Bot Channels Registration. Changing this forces a new resource to be created.
    name string
    Specifies the name of the Bot Channels Registration. Changing this forces a new resource to be created. Must be globally unique.
    resourceGroupName string
    The name of the resource group in which to create the Bot Channels Registration. Changing this forces a new resource to be created.
    sku string
    The SKU of the Bot Channels Registration. Valid values include F0 or S1. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    cmk_key_vault_url str
    The CMK Key Vault Key URL to encrypt the Bot Channels Registration with the Customer Managed Encryption Key.
    description str
    The description of the Bot Channels Registration.
    developer_app_insights_api_key str
    The Application Insights API Key to associate with the Bot Channels Registration.
    developer_app_insights_application_id str
    The Application Insights Application ID to associate with the Bot Channels Registration.
    developer_app_insights_key str
    The Application Insights Key to associate with the Bot Channels Registration.
    display_name str
    The name of the Bot Channels Registration will be displayed as. This defaults to name if not specified.
    endpoint str
    The Bot Channels Registration endpoint.
    icon_url str
    The icon URL to visually identify the Bot Channels Registration.
    isolated_network_enabled bool
    Is the Bot Channels Registration in an isolated network?
    location str
    The supported Azure location where the resource exists. Changing this forces a new resource to be created.
    microsoft_app_id str
    The Microsoft Application ID for the Bot Channels Registration. Changing this forces a new resource to be created.
    name str
    Specifies the name of the Bot Channels Registration. Changing this forces a new resource to be created. Must be globally unique.
    resource_group_name str
    The name of the resource group in which to create the Bot Channels Registration. Changing this forces a new resource to be created.
    sku str
    The SKU of the Bot Channels Registration. Valid values include F0 or S1. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    cmkKeyVaultUrl String
    The CMK Key Vault Key URL to encrypt the Bot Channels Registration with the Customer Managed Encryption Key.
    description String
    The description of the Bot Channels Registration.
    developerAppInsightsApiKey String
    The Application Insights API Key to associate with the Bot Channels Registration.
    developerAppInsightsApplicationId String
    The Application Insights Application ID to associate with the Bot Channels Registration.
    developerAppInsightsKey String
    The Application Insights Key to associate with the Bot Channels Registration.
    displayName String
    The name of the Bot Channels Registration will be displayed as. This defaults to name if not specified.
    endpoint String
    The Bot Channels Registration endpoint.
    iconUrl String
    The icon URL to visually identify the Bot Channels Registration.
    isolatedNetworkEnabled Boolean
    Is the Bot Channels Registration in an isolated network?
    location String
    The supported Azure location where the resource exists. Changing this forces a new resource to be created.
    microsoftAppId String
    The Microsoft Application ID for the Bot Channels Registration. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Bot Channels Registration. Changing this forces a new resource to be created. Must be globally unique.
    resourceGroupName String
    The name of the resource group in which to create the Bot Channels Registration. Changing this forces a new resource to be created.
    sku String
    The SKU of the Bot Channels Registration. Valid values include F0 or S1. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Import

    Bot Channels Registration can be imported using the resource id, e.g.

     $ pulumi import azure:bot/channelsRegistration:ChannelsRegistration example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.BotService/botServices/example
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.