Azure Native
Channel
Bot channel resource definition API Version: 2021-03-01.
Example Usage
Create Alexa Bot
using Pulumi;
using AzureNative = Pulumi.AzureNative;
class MyStack : Stack
{
public MyStack()
{
var channel = new AzureNative.BotService.Channel("channel", new AzureNative.BotService.ChannelArgs
{
ChannelName = "AlexaChannel",
Location = "global",
Properties =
{
{ "channelName", "AlexaChannel" },
{ "properties", new AzureNative.BotService.Inputs.AlexaChannelPropertiesArgs
{
AlexaSkillId = "XAlexaSkillIdX",
IsEnabled = true,
} },
},
ResourceGroupName = "OneResourceGroupName",
ResourceName = "samplebotname",
});
}
}
package main
import (
botservice "github.com/pulumi/pulumi-azure-native/sdk/go/azure/botservice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := botservice.NewChannel(ctx, "channel", &botservice.ChannelArgs{
ChannelName: pulumi.String("AlexaChannel"),
Location: pulumi.String("global"),
Properties: pulumi.Any{
ChannelName: "AlexaChannel",
Properties: botservice.AlexaChannelProperties{
AlexaSkillId: "XAlexaSkillIdX",
IsEnabled: true,
},
},
ResourceGroupName: pulumi.String("OneResourceGroupName"),
ResourceName: pulumi.String("samplebotname"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var channel = new Channel("channel", ChannelArgs.builder()
.channelName("AlexaChannel")
.location("global")
.properties(Map.ofEntries(
Map.entry("channelName", "AlexaChannel"),
Map.entry("properties", Map.ofEntries(
Map.entry("alexaSkillId", "XAlexaSkillIdX"),
Map.entry("isEnabled", true)
))
))
.resourceGroupName("OneResourceGroupName")
.resourceName("samplebotname")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
channel = azure_native.botservice.Channel("channel",
channel_name="AlexaChannel",
location="global",
properties={
"channelName": "AlexaChannel",
"properties": azure_native.botservice.AlexaChannelPropertiesArgs(
alexa_skill_id="XAlexaSkillIdX",
is_enabled=True,
),
},
resource_group_name="OneResourceGroupName",
resource_name_="samplebotname")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const channel = new azure_native.botservice.Channel("channel", {
channelName: "AlexaChannel",
location: "global",
properties: {
channelName: "AlexaChannel",
properties: {
alexaSkillId: "XAlexaSkillIdX",
isEnabled: true,
},
},
resourceGroupName: "OneResourceGroupName",
resourceName: "samplebotname",
});
resources:
channel:
type: azure-native:botservice:Channel
properties:
channelName: AlexaChannel
location: global
properties:
channelName: AlexaChannel
properties:
alexaSkillId: XAlexaSkillIdX
isEnabled: true
resourceGroupName: OneResourceGroupName
resourceName: samplebotname
Create Bot
using Pulumi;
using AzureNative = Pulumi.AzureNative;
class MyStack : Stack
{
public MyStack()
{
var channel = new AzureNative.BotService.Channel("channel", new AzureNative.BotService.ChannelArgs
{
ChannelName = "EmailChannel",
Location = "global",
Properties =
{
{ "channelName", "EmailChannel" },
{ "properties", new AzureNative.BotService.Inputs.EmailChannelPropertiesArgs
{
EmailAddress = "a@b.com",
IsEnabled = true,
Password = "pwd",
} },
},
ResourceGroupName = "OneResourceGroupName",
ResourceName = "samplebotname",
});
}
}
package main
import (
botservice "github.com/pulumi/pulumi-azure-native/sdk/go/azure/botservice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := botservice.NewChannel(ctx, "channel", &botservice.ChannelArgs{
ChannelName: pulumi.String("EmailChannel"),
Location: pulumi.String("global"),
Properties: pulumi.Any{
ChannelName: "EmailChannel",
Properties: botservice.EmailChannelProperties{
EmailAddress: "a@b.com",
IsEnabled: true,
Password: "pwd",
},
},
ResourceGroupName: pulumi.String("OneResourceGroupName"),
ResourceName: pulumi.String("samplebotname"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var channel = new Channel("channel", ChannelArgs.builder()
.channelName("EmailChannel")
.location("global")
.properties(Map.ofEntries(
Map.entry("channelName", "EmailChannel"),
Map.entry("properties", Map.ofEntries(
Map.entry("emailAddress", "a@b.com"),
Map.entry("isEnabled", true),
Map.entry("password", "pwd")
))
))
.resourceGroupName("OneResourceGroupName")
.resourceName("samplebotname")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
channel = azure_native.botservice.Channel("channel",
channel_name="EmailChannel",
location="global",
properties={
"channelName": "EmailChannel",
"properties": azure_native.botservice.EmailChannelPropertiesArgs(
email_address="a@b.com",
is_enabled=True,
password="pwd",
),
},
resource_group_name="OneResourceGroupName",
resource_name_="samplebotname")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const channel = new azure_native.botservice.Channel("channel", {
channelName: "EmailChannel",
location: "global",
properties: {
channelName: "EmailChannel",
properties: {
emailAddress: "a@b.com",
isEnabled: true,
password: "pwd",
},
},
resourceGroupName: "OneResourceGroupName",
resourceName: "samplebotname",
});
resources:
channel:
type: azure-native:botservice:Channel
properties:
channelName: EmailChannel
location: global
properties:
channelName: EmailChannel
properties:
emailAddress: a@b.com
isEnabled: true
password: pwd
resourceGroupName: OneResourceGroupName
resourceName: samplebotname
Create DirectLine Speech Bot
using Pulumi;
using AzureNative = Pulumi.AzureNative;
class MyStack : Stack
{
public MyStack()
{
var channel = new AzureNative.BotService.Channel("channel", new AzureNative.BotService.ChannelArgs
{
ChannelName = "DirectLineSpeechChannel",
Location = "global",
Properties =
{
{ "channelName", "DirectLineSpeechChannel" },
{ "properties", new AzureNative.BotService.Inputs.DirectLineSpeechChannelPropertiesArgs
{
CognitiveServiceRegion = "XcognitiveServiceRegionX",
CognitiveServiceSubscriptionKey = "XcognitiveServiceSubscriptionKeyX",
IsEnabled = true,
} },
},
ResourceGroupName = "OneResourceGroupName",
ResourceName = "samplebotname",
});
}
}
package main
import (
botservice "github.com/pulumi/pulumi-azure-native/sdk/go/azure/botservice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := botservice.NewChannel(ctx, "channel", &botservice.ChannelArgs{
ChannelName: pulumi.String("DirectLineSpeechChannel"),
Location: pulumi.String("global"),
Properties: pulumi.Any{
ChannelName: "DirectLineSpeechChannel",
Properties: botservice.DirectLineSpeechChannelProperties{
CognitiveServiceRegion: "XcognitiveServiceRegionX",
CognitiveServiceSubscriptionKey: "XcognitiveServiceSubscriptionKeyX",
IsEnabled: true,
},
},
ResourceGroupName: pulumi.String("OneResourceGroupName"),
ResourceName: pulumi.String("samplebotname"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var channel = new Channel("channel", ChannelArgs.builder()
.channelName("DirectLineSpeechChannel")
.location("global")
.properties(Map.ofEntries(
Map.entry("channelName", "DirectLineSpeechChannel"),
Map.entry("properties", Map.ofEntries(
Map.entry("cognitiveServiceRegion", "XcognitiveServiceRegionX"),
Map.entry("cognitiveServiceSubscriptionKey", "XcognitiveServiceSubscriptionKeyX"),
Map.entry("isEnabled", true)
))
))
.resourceGroupName("OneResourceGroupName")
.resourceName("samplebotname")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
channel = azure_native.botservice.Channel("channel",
channel_name="DirectLineSpeechChannel",
location="global",
properties={
"channelName": "DirectLineSpeechChannel",
"properties": azure_native.botservice.DirectLineSpeechChannelPropertiesArgs(
cognitive_service_region="XcognitiveServiceRegionX",
cognitive_service_subscription_key="XcognitiveServiceSubscriptionKeyX",
is_enabled=True,
),
},
resource_group_name="OneResourceGroupName",
resource_name_="samplebotname")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const channel = new azure_native.botservice.Channel("channel", {
channelName: "DirectLineSpeechChannel",
location: "global",
properties: {
channelName: "DirectLineSpeechChannel",
properties: {
cognitiveServiceRegion: "XcognitiveServiceRegionX",
cognitiveServiceSubscriptionKey: "XcognitiveServiceSubscriptionKeyX",
isEnabled: true,
},
},
resourceGroupName: "OneResourceGroupName",
resourceName: "samplebotname",
});
resources:
channel:
type: azure-native:botservice:Channel
properties:
channelName: DirectLineSpeechChannel
location: global
properties:
channelName: DirectLineSpeechChannel
properties:
cognitiveServiceRegion: XcognitiveServiceRegionX
cognitiveServiceSubscriptionKey: XcognitiveServiceSubscriptionKeyX
isEnabled: true
resourceGroupName: OneResourceGroupName
resourceName: samplebotname
Create Line Bot
using Pulumi;
using AzureNative = Pulumi.AzureNative;
class MyStack : Stack
{
public MyStack()
{
var channel = new AzureNative.BotService.Channel("channel", new AzureNative.BotService.ChannelArgs
{
ChannelName = "LineChannel",
Location = "global",
Properties =
{
{ "channelName", "LineChannel" },
{ "properties", new AzureNative.BotService.Inputs.LineChannelPropertiesArgs
{
LineRegistrations =
{
new AzureNative.BotService.Inputs.LineRegistrationArgs
{
ChannelAccessToken = "channelAccessToken",
ChannelSecret = "channelSecret",
},
},
} },
},
ResourceGroupName = "OneResourceGroupName",
ResourceName = "samplebotname",
});
}
}
package main
import (
botservice "github.com/pulumi/pulumi-azure-native/sdk/go/azure/botservice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := botservice.NewChannel(ctx, "channel", &botservice.ChannelArgs{
ChannelName: pulumi.String("LineChannel"),
Location: pulumi.String("global"),
Properties: pulumi.Any{
ChannelName: "LineChannel",
Properties: botservice.LineChannelProperties{
LineRegistrations: []botservice.LineRegistration{
botservice.LineRegistration{
ChannelAccessToken: "channelAccessToken",
ChannelSecret: "channelSecret",
},
},
},
},
ResourceGroupName: pulumi.String("OneResourceGroupName"),
ResourceName: pulumi.String("samplebotname"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var channel = new Channel("channel", ChannelArgs.builder()
.channelName("LineChannel")
.location("global")
.properties(Map.ofEntries(
Map.entry("channelName", "LineChannel"),
Map.entry("properties", Map.of("lineRegistrations", Map.ofEntries(
Map.entry("channelAccessToken", "channelAccessToken"),
Map.entry("channelSecret", "channelSecret")
)))
))
.resourceGroupName("OneResourceGroupName")
.resourceName("samplebotname")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
channel = azure_native.botservice.Channel("channel",
channel_name="LineChannel",
location="global",
properties={
"channelName": "LineChannel",
"properties": azure_native.botservice.LineChannelPropertiesArgs(
line_registrations=[azure_native.botservice.LineRegistrationArgs(
channel_access_token="channelAccessToken",
channel_secret="channelSecret",
)],
),
},
resource_group_name="OneResourceGroupName",
resource_name_="samplebotname")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const channel = new azure_native.botservice.Channel("channel", {
channelName: "LineChannel",
location: "global",
properties: {
channelName: "LineChannel",
properties: {
lineRegistrations: [{
channelAccessToken: "channelAccessToken",
channelSecret: "channelSecret",
}],
},
},
resourceGroupName: "OneResourceGroupName",
resourceName: "samplebotname",
});
resources:
channel:
type: azure-native:botservice:Channel
properties:
channelName: LineChannel
location: global
properties:
channelName: LineChannel
properties:
lineRegistrations:
- channelAccessToken: channelAccessToken
channelSecret: channelSecret
resourceGroupName: OneResourceGroupName
resourceName: samplebotname
Create a Channel Resource
new Channel(name: string, args: ChannelArgs, opts?: CustomResourceOptions);
@overload
def Channel(resource_name: str,
opts: Optional[ResourceOptions] = None,
channel_name: Optional[str] = None,
kind: Optional[Union[str, Kind]] = None,
location: Optional[str] = None,
properties: Optional[Union[AlexaChannelArgs, DirectLineChannelArgs, DirectLineSpeechChannelArgs, EmailChannelArgs, FacebookChannelArgs, KikChannelArgs, LineChannelArgs, MsTeamsChannelArgs, SkypeChannelArgs, SlackChannelArgs, SmsChannelArgs, TelegramChannelArgs, WebChatChannelArgs]] = None,
resource_group_name: Optional[str] = None,
resource_name_: Optional[str] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def Channel(resource_name: str,
args: ChannelArgs,
opts: Optional[ResourceOptions] = None)
func NewChannel(ctx *Context, name string, args ChannelArgs, opts ...ResourceOption) (*Channel, error)
public Channel(string name, ChannelArgs args, CustomResourceOptions? opts = null)
public Channel(String name, ChannelArgs args)
public Channel(String name, ChannelArgs args, CustomResourceOptions options)
type: azure-native:botservice:Channel
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ChannelArgs
- 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 ChannelArgs
- 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 ChannelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Channel Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Channel resource accepts the following input properties:
- Resource
Group stringName The name of the Bot resource group in the user subscription.
- Resource
Name string The name of the Bot resource.
- Channel
Name string The name of the Channel resource.
- Kind
string | Pulumi.
Azure Native. Bot Service. Kind Required. Gets or sets the Kind of the resource.
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure | Pulumi.Native. Bot Service. Inputs. Alexa Channel Args Azure | Pulumi.Native. Bot Service. Inputs. Direct Line Channel Args Azure | Pulumi.Native. Bot Service. Inputs. Direct Line Speech Channel Args Azure | Pulumi.Native. Bot Service. Inputs. Email Channel Args Azure | Pulumi.Native. Bot Service. Inputs. Facebook Channel Args Azure | Pulumi.Native. Bot Service. Inputs. Kik Channel Args Azure | Pulumi.Native. Bot Service. Inputs. Line Channel Args Azure | Pulumi.Native. Bot Service. Inputs. Ms Teams Channel Args Azure | Pulumi.Native. Bot Service. Inputs. Skype Channel Args Azure | Pulumi.Native. Bot Service. Inputs. Slack Channel Args Azure | Pulumi.Native. Bot Service. Inputs. Sms Channel Args Azure | Pulumi.Native. Bot Service. Inputs. Telegram Channel Args Azure Native. Bot Service. Inputs. Web Chat Channel Args The set of properties specific to bot channel resource
- Sku
Pulumi.
Azure Native. Bot Service. Inputs. Sku Args Gets or sets the SKU of the resource.
- Dictionary<string, string>
Contains resource tags defined as key/value pairs.
- Resource
Group stringName The name of the Bot resource group in the user subscription.
- Resource
Name string The name of the Bot resource.
- Channel
Name string The name of the Channel resource.
- Kind string | Kind
Required. Gets or sets the Kind of the resource.
- Location string
Specifies the location of the resource.
- Properties
Alexa
Channel | DirectArgs Line | DirectChannel Args Line | EmailSpeech Channel Args Channel | FacebookArgs Channel | KikArgs Channel | LineArgs Channel | MsArgs Teams | SkypeChannel Args Channel | SlackArgs Channel | SmsArgs Channel | TelegramArgs Channel | WebArgs Chat Channel Args The set of properties specific to bot channel resource
- Sku
Sku
Args Gets or sets the SKU of the resource.
- map[string]string
Contains resource tags defined as key/value pairs.
- resource
Group StringName The name of the Bot resource group in the user subscription.
- resource
Name String The name of the Bot resource.
- channel
Name String The name of the Channel resource.
- kind String | Kind
Required. Gets or sets the Kind of the resource.
- location String
Specifies the location of the resource.
- properties
Alexa
Channel | DirectArgs Line | DirectChannel Args Line | EmailSpeech Channel Args Channel | FacebookArgs Channel | KikArgs Channel | LineArgs Channel | MsArgs Teams | SkypeChannel Args Channel | SlackArgs Channel | SmsArgs Channel | TelegramArgs Channel | WebArgs Chat Channel Args The set of properties specific to bot channel resource
- sku
Sku
Args Gets or sets the SKU of the resource.
- Map
Contains resource tags defined as key/value pairs.
- resource
Group stringName The name of the Bot resource group in the user subscription.
- resource
Name string The name of the Bot resource.
- channel
Name string The name of the Channel resource.
- kind string | Kind
Required. Gets or sets the Kind of the resource.
- location string
Specifies the location of the resource.
- properties
Alexa
Channel | DirectArgs Line | DirectChannel Args Line | EmailSpeech Channel Args Channel | FacebookArgs Channel | KikArgs Channel | LineArgs Channel | MsArgs Teams | SkypeChannel Args Channel | SlackArgs Channel | SmsArgs Channel | TelegramArgs Channel | WebArgs Chat Channel Args The set of properties specific to bot channel resource
- sku
Sku
Args Gets or sets the SKU of the resource.
- {[key: string]: string}
Contains resource tags defined as key/value pairs.
- resource_
group_ strname The name of the Bot resource group in the user subscription.
- resource_
name str The name of the Bot resource.
- channel_
name str The name of the Channel resource.
- kind str | Kind
Required. Gets or sets the Kind of the resource.
- location str
Specifies the location of the resource.
- properties
Alexa
Channel | DirectArgs Line | DirectChannel Args Line | EmailSpeech Channel Args Channel | FacebookArgs Channel | KikArgs Channel | LineArgs Channel | MsArgs Teams | SkypeChannel Args Channel | SlackArgs Channel | SmsArgs Channel | TelegramArgs Channel | WebArgs Chat Channel Args The set of properties specific to bot channel resource
- sku
Sku
Args Gets or sets the SKU of the resource.
- Mapping[str, str]
Contains resource tags defined as key/value pairs.
- resource
Group StringName The name of the Bot resource group in the user subscription.
- resource
Name String The name of the Bot resource.
- channel
Name String The name of the Channel resource.
- kind String | "sdk" | "designer" | "bot" | "function"
Required. Gets or sets the Kind of the resource.
- location String
Specifies the location of the resource.
- properties Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
The set of properties specific to bot channel resource
- sku Property Map
Gets or sets the SKU of the resource.
- Map
Contains resource tags defined as key/value pairs.
Outputs
All input properties are implicitly available as output properties. Additionally, the Channel resource produces the following output properties:
Supporting Types
AlexaChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Alexa Channel Properties The set of properties specific to Alexa channel resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Alexa
Channel Properties The set of properties specific to Alexa channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Alexa
Channel Properties The set of properties specific to Alexa channel resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Alexa
Channel Properties The set of properties specific to Alexa channel resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Alexa
Channel Properties The set of properties specific to Alexa channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Alexa channel resource
AlexaChannelProperties
- Alexa
Skill stringId The Alexa skill Id
- Is
Enabled bool Whether this channel is enabled for the bot
- Alexa
Skill stringId The Alexa skill Id
- Is
Enabled bool Whether this channel is enabled for the bot
- alexa
Skill StringId The Alexa skill Id
- is
Enabled Boolean Whether this channel is enabled for the bot
- alexa
Skill stringId The Alexa skill Id
- is
Enabled boolean Whether this channel is enabled for the bot
- alexa_
skill_ strid The Alexa skill Id
- is_
enabled bool Whether this channel is enabled for the bot
- alexa
Skill StringId The Alexa skill Id
- is
Enabled Boolean Whether this channel is enabled for the bot
AlexaChannelPropertiesResponse
- Alexa
Skill stringId The Alexa skill Id
- Is
Enabled bool Whether this channel is enabled for the bot
- Service
Endpoint stringUri Full Uri used to configured the skill in Alexa
- Url
Fragment string Url fragment used in part of the Uri configured in Alexa
- Alexa
Skill stringId The Alexa skill Id
- Is
Enabled bool Whether this channel is enabled for the bot
- Service
Endpoint stringUri Full Uri used to configured the skill in Alexa
- Url
Fragment string Url fragment used in part of the Uri configured in Alexa
- alexa
Skill StringId The Alexa skill Id
- is
Enabled Boolean Whether this channel is enabled for the bot
- service
Endpoint StringUri Full Uri used to configured the skill in Alexa
- url
Fragment String Url fragment used in part of the Uri configured in Alexa
- alexa
Skill stringId The Alexa skill Id
- is
Enabled boolean Whether this channel is enabled for the bot
- service
Endpoint stringUri Full Uri used to configured the skill in Alexa
- url
Fragment string Url fragment used in part of the Uri configured in Alexa
- alexa_
skill_ strid The Alexa skill Id
- is_
enabled bool Whether this channel is enabled for the bot
- service_
endpoint_ struri Full Uri used to configured the skill in Alexa
- url_
fragment str Url fragment used in part of the Uri configured in Alexa
- alexa
Skill StringId The Alexa skill Id
- is
Enabled Boolean Whether this channel is enabled for the bot
- service
Endpoint StringUri Full Uri used to configured the skill in Alexa
- url
Fragment String Url fragment used in part of the Uri configured in Alexa
AlexaChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Alexa Channel Properties Response The set of properties specific to Alexa channel resource
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Alexa
Channel Properties Response The set of properties specific to Alexa channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Alexa
Channel Properties Response The set of properties specific to Alexa channel resource
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Alexa
Channel Properties Response The set of properties specific to Alexa channel resource
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Alexa
Channel Properties Response The set of properties specific to Alexa channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Alexa channel resource
DirectLineChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Direct Line Channel Properties The set of properties specific to Direct Line channel resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Direct
Line Channel Properties The set of properties specific to Direct Line channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Direct
Line Channel Properties The set of properties specific to Direct Line channel resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Direct
Line Channel Properties The set of properties specific to Direct Line channel resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Direct
Line Channel Properties The set of properties specific to Direct Line channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Direct Line channel resource
DirectLineChannelProperties
- Direct
Line stringEmbed Code Direct Line embed code of the resource
- Sites
List<Pulumi.
Azure Native. Bot Service. Inputs. Direct Line Site> The list of Direct Line sites
- Direct
Line stringEmbed Code Direct Line embed code of the resource
- Sites
[]Direct
Line Site The list of Direct Line sites
- direct
Line StringEmbed Code Direct Line embed code of the resource
- sites
List
Line Site> The list of Direct Line sites
- direct
Line stringEmbed Code Direct Line embed code of the resource
- sites
Direct
Line Site[] The list of Direct Line sites
- direct_
line_ strembed_ code Direct Line embed code of the resource
- sites
Sequence[Direct
Line Site] The list of Direct Line sites
- direct
Line StringEmbed Code Direct Line embed code of the resource
- sites
List
The list of Direct Line sites
DirectLineChannelPropertiesResponse
- Direct
Line stringEmbed Code Direct Line embed code of the resource
- Sites
List<Pulumi.
Azure Native. Bot Service. Inputs. Direct Line Site Response> The list of Direct Line sites
- Direct
Line stringEmbed Code Direct Line embed code of the resource
- Sites
[]Direct
Line Site Response The list of Direct Line sites
- direct
Line StringEmbed Code Direct Line embed code of the resource
- sites
List
Line Site Response> The list of Direct Line sites
- direct
Line stringEmbed Code Direct Line embed code of the resource
- sites
Direct
Line Site Response[] The list of Direct Line sites
- direct_
line_ strembed_ code Direct Line embed code of the resource
- sites
Sequence[Direct
Line Site Response] The list of Direct Line sites
- direct
Line StringEmbed Code Direct Line embed code of the resource
- sites
List
The list of Direct Line sites
DirectLineChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Direct Line Channel Properties Response The set of properties specific to Direct Line channel resource
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Direct
Line Channel Properties Response The set of properties specific to Direct Line channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Direct
Line Channel Properties Response The set of properties specific to Direct Line channel resource
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Direct
Line Channel Properties Response The set of properties specific to Direct Line channel resource
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Direct
Line Channel Properties Response The set of properties specific to Direct Line channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Direct Line channel resource
DirectLineSite
- Is
Enabled bool Whether this site is enabled for DirectLine channel.
- Is
V1Enabled bool Whether this site is enabled for Bot Framework V1 protocol.
- Is
V3Enabled bool Whether this site is enabled for Bot Framework V1 protocol.
- Site
Name string Site name
- Is
Block boolUser Upload Enabled Whether this site is enabled for block user upload.
- Is
Secure boolSite Enabled Whether this site is enabled for authentication with Bot Framework.
- Trusted
Origins List<string> List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
- Is
Enabled bool Whether this site is enabled for DirectLine channel.
- Is
V1Enabled bool Whether this site is enabled for Bot Framework V1 protocol.
- Is
V3Enabled bool Whether this site is enabled for Bot Framework V1 protocol.
- Site
Name string Site name
- Is
Block boolUser Upload Enabled Whether this site is enabled for block user upload.
- Is
Secure boolSite Enabled Whether this site is enabled for authentication with Bot Framework.
- Trusted
Origins []string List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
- is
Enabled Boolean Whether this site is enabled for DirectLine channel.
- is
V1Enabled Boolean Whether this site is enabled for Bot Framework V1 protocol.
- is
V3Enabled Boolean Whether this site is enabled for Bot Framework V1 protocol.
- site
Name String Site name
- is
Block BooleanUser Upload Enabled Whether this site is enabled for block user upload.
- is
Secure BooleanSite Enabled Whether this site is enabled for authentication with Bot Framework.
- trusted
Origins List List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
- is
Enabled boolean Whether this site is enabled for DirectLine channel.
- is
V1Enabled boolean Whether this site is enabled for Bot Framework V1 protocol.
- is
V3Enabled boolean Whether this site is enabled for Bot Framework V1 protocol.
- site
Name string Site name
- is
Block booleanUser Upload Enabled Whether this site is enabled for block user upload.
- is
Secure booleanSite Enabled Whether this site is enabled for authentication with Bot Framework.
- trusted
Origins string[] List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
- is_
enabled bool Whether this site is enabled for DirectLine channel.
- is_
v1_ boolenabled Whether this site is enabled for Bot Framework V1 protocol.
- is_
v3_ boolenabled Whether this site is enabled for Bot Framework V1 protocol.
- site_
name str Site name
- is_
block_ booluser_ upload_ enabled Whether this site is enabled for block user upload.
- is_
secure_ boolsite_ enabled Whether this site is enabled for authentication with Bot Framework.
- trusted_
origins Sequence[str] List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
- is
Enabled Boolean Whether this site is enabled for DirectLine channel.
- is
V1Enabled Boolean Whether this site is enabled for Bot Framework V1 protocol.
- is
V3Enabled Boolean Whether this site is enabled for Bot Framework V1 protocol.
- site
Name String Site name
- is
Block BooleanUser Upload Enabled Whether this site is enabled for block user upload.
- is
Secure BooleanSite Enabled Whether this site is enabled for authentication with Bot Framework.
- trusted
Origins List List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
DirectLineSiteResponse
- Is
Enabled bool Whether this site is enabled for DirectLine channel.
- Is
V1Enabled bool Whether this site is enabled for Bot Framework V1 protocol.
- Is
V3Enabled bool Whether this site is enabled for Bot Framework V1 protocol.
- Key string
Primary key. Value only returned through POST to the action Channel List API, otherwise empty.
- Key2 string
Secondary key. Value only returned through POST to the action Channel List API, otherwise empty.
- Site
Id string Site Id
- Site
Name string Site name
- Is
Block boolUser Upload Enabled Whether this site is enabled for block user upload.
- Is
Secure boolSite Enabled Whether this site is enabled for authentication with Bot Framework.
- Trusted
Origins List<string> List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
- Is
Enabled bool Whether this site is enabled for DirectLine channel.
- Is
V1Enabled bool Whether this site is enabled for Bot Framework V1 protocol.
- Is
V3Enabled bool Whether this site is enabled for Bot Framework V1 protocol.
- Key string
Primary key. Value only returned through POST to the action Channel List API, otherwise empty.
- Key2 string
Secondary key. Value only returned through POST to the action Channel List API, otherwise empty.
- Site
Id string Site Id
- Site
Name string Site name
- Is
Block boolUser Upload Enabled Whether this site is enabled for block user upload.
- Is
Secure boolSite Enabled Whether this site is enabled for authentication with Bot Framework.
- Trusted
Origins []string List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
- is
Enabled Boolean Whether this site is enabled for DirectLine channel.
- is
V1Enabled Boolean Whether this site is enabled for Bot Framework V1 protocol.
- is
V3Enabled Boolean Whether this site is enabled for Bot Framework V1 protocol.
- key String
Primary key. Value only returned through POST to the action Channel List API, otherwise empty.
- key2 String
Secondary key. Value only returned through POST to the action Channel List API, otherwise empty.
- site
Id String Site Id
- site
Name String Site name
- is
Block BooleanUser Upload Enabled Whether this site is enabled for block user upload.
- is
Secure BooleanSite Enabled Whether this site is enabled for authentication with Bot Framework.
- trusted
Origins List List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
- is
Enabled boolean Whether this site is enabled for DirectLine channel.
- is
V1Enabled boolean Whether this site is enabled for Bot Framework V1 protocol.
- is
V3Enabled boolean Whether this site is enabled for Bot Framework V1 protocol.
- key string
Primary key. Value only returned through POST to the action Channel List API, otherwise empty.
- key2 string
Secondary key. Value only returned through POST to the action Channel List API, otherwise empty.
- site
Id string Site Id
- site
Name string Site name
- is
Block booleanUser Upload Enabled Whether this site is enabled for block user upload.
- is
Secure booleanSite Enabled Whether this site is enabled for authentication with Bot Framework.
- trusted
Origins string[] List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
- is_
enabled bool Whether this site is enabled for DirectLine channel.
- is_
v1_ boolenabled Whether this site is enabled for Bot Framework V1 protocol.
- is_
v3_ boolenabled Whether this site is enabled for Bot Framework V1 protocol.
- key str
Primary key. Value only returned through POST to the action Channel List API, otherwise empty.
- key2 str
Secondary key. Value only returned through POST to the action Channel List API, otherwise empty.
- site_
id str Site Id
- site_
name str Site name
- is_
block_ booluser_ upload_ enabled Whether this site is enabled for block user upload.
- is_
secure_ boolsite_ enabled Whether this site is enabled for authentication with Bot Framework.
- trusted_
origins Sequence[str] List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
- is
Enabled Boolean Whether this site is enabled for DirectLine channel.
- is
V1Enabled Boolean Whether this site is enabled for Bot Framework V1 protocol.
- is
V3Enabled Boolean Whether this site is enabled for Bot Framework V1 protocol.
- key String
Primary key. Value only returned through POST to the action Channel List API, otherwise empty.
- key2 String
Secondary key. Value only returned through POST to the action Channel List API, otherwise empty.
- site
Id String Site Id
- site
Name String Site name
- is
Block BooleanUser Upload Enabled Whether this site is enabled for block user upload.
- is
Secure BooleanSite Enabled Whether this site is enabled for authentication with Bot Framework.
- trusted
Origins List List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
DirectLineSpeechChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Direct Line Speech Channel Properties The set of properties specific to DirectLine Speech channel resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Direct
Line Speech Channel Properties The set of properties specific to DirectLine Speech channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Direct
Line Speech Channel Properties The set of properties specific to DirectLine Speech channel resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Direct
Line Speech Channel Properties The set of properties specific to DirectLine Speech channel resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Direct
Line Speech Channel Properties The set of properties specific to DirectLine Speech channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to DirectLine Speech channel resource
DirectLineSpeechChannelProperties
- Cognitive
Service stringRegion The cognitive service region with this channel registration.
- Cognitive
Service stringSubscription Key The cognitive service subscription key to use with this channel registration.
- Custom
Speech stringModel Id Custom voice deployment id (optional).
- Custom
Voice stringDeployment Id Custom speech model id (optional).
- Is
Default boolBot For Cog Svc Account Make this a default bot for chosen cognitive service account.
- Is
Enabled bool Whether this channel is enabled or not.
- Cognitive
Service stringRegion The cognitive service region with this channel registration.
- Cognitive
Service stringSubscription Key The cognitive service subscription key to use with this channel registration.
- Custom
Speech stringModel Id Custom voice deployment id (optional).
- Custom
Voice stringDeployment Id Custom speech model id (optional).
- Is
Default boolBot For Cog Svc Account Make this a default bot for chosen cognitive service account.
- Is
Enabled bool Whether this channel is enabled or not.
- cognitive
Service StringRegion The cognitive service region with this channel registration.
- cognitive
Service StringSubscription Key The cognitive service subscription key to use with this channel registration.
- custom
Speech StringModel Id Custom voice deployment id (optional).
- custom
Voice StringDeployment Id Custom speech model id (optional).
- is
Default BooleanBot For Cog Svc Account Make this a default bot for chosen cognitive service account.
- is
Enabled Boolean Whether this channel is enabled or not.
- cognitive
Service stringRegion The cognitive service region with this channel registration.
- cognitive
Service stringSubscription Key The cognitive service subscription key to use with this channel registration.
- custom
Speech stringModel Id Custom voice deployment id (optional).
- custom
Voice stringDeployment Id Custom speech model id (optional).
- is
Default booleanBot For Cog Svc Account Make this a default bot for chosen cognitive service account.
- is
Enabled boolean Whether this channel is enabled or not.
- cognitive_
service_ strregion The cognitive service region with this channel registration.
- cognitive_
service_ strsubscription_ key The cognitive service subscription key to use with this channel registration.
- custom_
speech_ strmodel_ id Custom voice deployment id (optional).
- custom_
voice_ strdeployment_ id Custom speech model id (optional).
- is_
default_ boolbot_ for_ cog_ svc_ account Make this a default bot for chosen cognitive service account.
- is_
enabled bool Whether this channel is enabled or not.
- cognitive
Service StringRegion The cognitive service region with this channel registration.
- cognitive
Service StringSubscription Key The cognitive service subscription key to use with this channel registration.
- custom
Speech StringModel Id Custom voice deployment id (optional).
- custom
Voice StringDeployment Id Custom speech model id (optional).
- is
Default BooleanBot For Cog Svc Account Make this a default bot for chosen cognitive service account.
- is
Enabled Boolean Whether this channel is enabled or not.
DirectLineSpeechChannelPropertiesResponse
- Cognitive
Service stringRegion The cognitive service region with this channel registration.
- Cognitive
Service stringSubscription Key The cognitive service subscription key to use with this channel registration.
- Custom
Speech stringModel Id Custom voice deployment id (optional).
- Custom
Voice stringDeployment Id Custom speech model id (optional).
- Is
Default boolBot For Cog Svc Account Make this a default bot for chosen cognitive service account.
- Is
Enabled bool Whether this channel is enabled or not.
- Cognitive
Service stringRegion The cognitive service region with this channel registration.
- Cognitive
Service stringSubscription Key The cognitive service subscription key to use with this channel registration.
- Custom
Speech stringModel Id Custom voice deployment id (optional).
- Custom
Voice stringDeployment Id Custom speech model id (optional).
- Is
Default boolBot For Cog Svc Account Make this a default bot for chosen cognitive service account.
- Is
Enabled bool Whether this channel is enabled or not.
- cognitive
Service StringRegion The cognitive service region with this channel registration.
- cognitive
Service StringSubscription Key The cognitive service subscription key to use with this channel registration.
- custom
Speech StringModel Id Custom voice deployment id (optional).
- custom
Voice StringDeployment Id Custom speech model id (optional).
- is
Default BooleanBot For Cog Svc Account Make this a default bot for chosen cognitive service account.
- is
Enabled Boolean Whether this channel is enabled or not.
- cognitive
Service stringRegion The cognitive service region with this channel registration.
- cognitive
Service stringSubscription Key The cognitive service subscription key to use with this channel registration.
- custom
Speech stringModel Id Custom voice deployment id (optional).
- custom
Voice stringDeployment Id Custom speech model id (optional).
- is
Default booleanBot For Cog Svc Account Make this a default bot for chosen cognitive service account.
- is
Enabled boolean Whether this channel is enabled or not.
- cognitive_
service_ strregion The cognitive service region with this channel registration.
- cognitive_
service_ strsubscription_ key The cognitive service subscription key to use with this channel registration.
- custom_
speech_ strmodel_ id Custom voice deployment id (optional).
- custom_
voice_ strdeployment_ id Custom speech model id (optional).
- is_
default_ boolbot_ for_ cog_ svc_ account Make this a default bot for chosen cognitive service account.
- is_
enabled bool Whether this channel is enabled or not.
- cognitive
Service StringRegion The cognitive service region with this channel registration.
- cognitive
Service StringSubscription Key The cognitive service subscription key to use with this channel registration.
- custom
Speech StringModel Id Custom voice deployment id (optional).
- custom
Voice StringDeployment Id Custom speech model id (optional).
- is
Default BooleanBot For Cog Svc Account Make this a default bot for chosen cognitive service account.
- is
Enabled Boolean Whether this channel is enabled or not.
DirectLineSpeechChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Direct Line Speech Channel Properties Response The set of properties specific to DirectLine Speech channel resource
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Direct
Line Speech Channel Properties Response The set of properties specific to DirectLine Speech channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Direct
Line Speech Channel Properties Response The set of properties specific to DirectLine Speech channel resource
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Direct
Line Speech Channel Properties Response The set of properties specific to DirectLine Speech channel resource
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Direct
Line Speech Channel Properties Response The set of properties specific to DirectLine Speech channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to DirectLine Speech channel resource
EmailChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Email Channel Properties The set of properties specific to email channel resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Email
Channel Properties The set of properties specific to email channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Email
Channel Properties The set of properties specific to email channel resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Email
Channel Properties The set of properties specific to email channel resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Email
Channel Properties The set of properties specific to email channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to email channel resource
EmailChannelProperties
- Email
Address string The email address
- Is
Enabled bool Whether this channel is enabled for the bot
- Password string
The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
- Email
Address string The email address
- Is
Enabled bool Whether this channel is enabled for the bot
- Password string
The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
- email
Address String The email address
- is
Enabled Boolean Whether this channel is enabled for the bot
- password String
The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
- email
Address string The email address
- is
Enabled boolean Whether this channel is enabled for the bot
- password string
The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
- email_
address str The email address
- is_
enabled bool Whether this channel is enabled for the bot
- password str
The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
- email
Address String The email address
- is
Enabled Boolean Whether this channel is enabled for the bot
- password String
The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
EmailChannelPropertiesResponse
- Email
Address string The email address
- Is
Enabled bool Whether this channel is enabled for the bot
- Password string
The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
- Email
Address string The email address
- Is
Enabled bool Whether this channel is enabled for the bot
- Password string
The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
- email
Address String The email address
- is
Enabled Boolean Whether this channel is enabled for the bot
- password String
The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
- email
Address string The email address
- is
Enabled boolean Whether this channel is enabled for the bot
- password string
The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
- email_
address str The email address
- is_
enabled bool Whether this channel is enabled for the bot
- password str
The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
- email
Address String The email address
- is
Enabled Boolean Whether this channel is enabled for the bot
- password String
The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
EmailChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Email Channel Properties Response The set of properties specific to email channel resource
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Email
Channel Properties Response The set of properties specific to email channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Email
Channel Properties Response The set of properties specific to email channel resource
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Email
Channel Properties Response The set of properties specific to email channel resource
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Email
Channel Properties Response The set of properties specific to email channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to email channel resource
FacebookChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Facebook Channel Properties The set of properties specific to bot facebook channel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Facebook
Channel Properties The set of properties specific to bot facebook channel
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Facebook
Channel Properties The set of properties specific to bot facebook channel
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Facebook
Channel Properties The set of properties specific to bot facebook channel
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Facebook
Channel Properties The set of properties specific to bot facebook channel
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to bot facebook channel
FacebookChannelProperties
- App
Id string Facebook application id
- Is
Enabled bool Whether this channel is enabled for the bot
- App
Secret string Facebook application secret. Value only returned through POST to the action Channel List API, otherwise empty.
- Pages
List<Pulumi.
Azure Native. Bot Service. Inputs. Facebook Page> The list of Facebook pages
- App
Id string Facebook application id
- Is
Enabled bool Whether this channel is enabled for the bot
- App
Secret string Facebook application secret. Value only returned through POST to the action Channel List API, otherwise empty.
- Pages
[]Facebook
Page The list of Facebook pages
- app
Id string Facebook application id
- is
Enabled boolean Whether this channel is enabled for the bot
- app
Secret string Facebook application secret. Value only returned through POST to the action Channel List API, otherwise empty.
- pages
Facebook
Page[] The list of Facebook pages
- app_
id str Facebook application id
- is_
enabled bool Whether this channel is enabled for the bot
- app_
secret str Facebook application secret. Value only returned through POST to the action Channel List API, otherwise empty.
- pages
Sequence[Facebook
Page] The list of Facebook pages
FacebookChannelPropertiesResponse
- App
Id string Facebook application id
- Callback
Url string Callback Url
- Is
Enabled bool Whether this channel is enabled for the bot
- Verify
Token string Verify token. Value only returned through POST to the action Channel List API, otherwise empty.
- App
Secret string Facebook application secret. Value only returned through POST to the action Channel List API, otherwise empty.
- Pages
List<Pulumi.
Azure Native. Bot Service. Inputs. Facebook Page Response> The list of Facebook pages
- App
Id string Facebook application id
- Callback
Url string Callback Url
- Is
Enabled bool Whether this channel is enabled for the bot
- Verify
Token string Verify token. Value only returned through POST to the action Channel List API, otherwise empty.
- App
Secret string Facebook application secret. Value only returned through POST to the action Channel List API, otherwise empty.
- Pages
[]Facebook
Page Response The list of Facebook pages
- app
Id String Facebook application id
- callback
Url String Callback Url
- is
Enabled Boolean Whether this channel is enabled for the bot
- verify
Token String Verify token. Value only returned through POST to the action Channel List API, otherwise empty.
- app
Secret String Facebook application secret. Value only returned through POST to the action Channel List API, otherwise empty.
- pages
List
Page Response> The list of Facebook pages
- app
Id string Facebook application id
- callback
Url string Callback Url
- is
Enabled boolean Whether this channel is enabled for the bot
- verify
Token string Verify token. Value only returned through POST to the action Channel List API, otherwise empty.
- app
Secret string Facebook application secret. Value only returned through POST to the action Channel List API, otherwise empty.
- pages
Facebook
Page Response[] The list of Facebook pages
- app_
id str Facebook application id
- callback_
url str Callback Url
- is_
enabled bool Whether this channel is enabled for the bot
- verify_
token str Verify token. Value only returned through POST to the action Channel List API, otherwise empty.
- app_
secret str Facebook application secret. Value only returned through POST to the action Channel List API, otherwise empty.
- pages
Sequence[Facebook
Page Response] The list of Facebook pages
- app
Id String Facebook application id
- callback
Url String Callback Url
- is
Enabled Boolean Whether this channel is enabled for the bot
- verify
Token String Verify token. Value only returned through POST to the action Channel List API, otherwise empty.
- app
Secret String Facebook application secret. Value only returned through POST to the action Channel List API, otherwise empty.
- pages
List
The list of Facebook pages
FacebookChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Facebook Channel Properties Response The set of properties specific to bot facebook channel
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Facebook
Channel Properties Response The set of properties specific to bot facebook channel
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Facebook
Channel Properties Response The set of properties specific to bot facebook channel
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Facebook
Channel Properties Response The set of properties specific to bot facebook channel
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Facebook
Channel Properties Response The set of properties specific to bot facebook channel
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to bot facebook channel
FacebookPage
- Id string
Page id
- Access
Token string Facebook application access token. Value only returned through POST to the action Channel List API, otherwise empty.
- Id string
Page id
- Access
Token string Facebook application access token. Value only returned through POST to the action Channel List API, otherwise empty.
- id String
Page id
- access
Token String Facebook application access token. Value only returned through POST to the action Channel List API, otherwise empty.
- id string
Page id
- access
Token string Facebook application access token. Value only returned through POST to the action Channel List API, otherwise empty.
- id str
Page id
- access_
token str Facebook application access token. Value only returned through POST to the action Channel List API, otherwise empty.
- id String
Page id
- access
Token String Facebook application access token. Value only returned through POST to the action Channel List API, otherwise empty.
FacebookPageResponse
- Id string
Page id
- Access
Token string Facebook application access token. Value only returned through POST to the action Channel List API, otherwise empty.
- Id string
Page id
- Access
Token string Facebook application access token. Value only returned through POST to the action Channel List API, otherwise empty.
- id String
Page id
- access
Token String Facebook application access token. Value only returned through POST to the action Channel List API, otherwise empty.
- id string
Page id
- access
Token string Facebook application access token. Value only returned through POST to the action Channel List API, otherwise empty.
- id str
Page id
- access_
token str Facebook application access token. Value only returned through POST to the action Channel List API, otherwise empty.
- id String
Page id
- access
Token String Facebook application access token. Value only returned through POST to the action Channel List API, otherwise empty.
KikChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Kik Channel Properties The set of properties specific to Kik channel resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Kik
Channel Properties The set of properties specific to Kik channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Kik
Channel Properties The set of properties specific to Kik channel resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Kik
Channel Properties The set of properties specific to Kik channel resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Kik
Channel Properties The set of properties specific to Kik channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Kik channel resource
KikChannelProperties
- Is
Enabled bool Whether this channel is enabled for the bot
- User
Name string The Kik user name
- Api
Key string Kik API key. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Validated bool Whether this channel is validated for the bot
- Is
Enabled bool Whether this channel is enabled for the bot
- User
Name string The Kik user name
- Api
Key string Kik API key. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Validated bool Whether this channel is validated for the bot
- is
Enabled Boolean Whether this channel is enabled for the bot
- user
Name String The Kik user name
- api
Key String Kik API key. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated Boolean Whether this channel is validated for the bot
- is
Enabled boolean Whether this channel is enabled for the bot
- user
Name string The Kik user name
- api
Key string Kik API key. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated boolean Whether this channel is validated for the bot
- is_
enabled bool Whether this channel is enabled for the bot
- user_
name str The Kik user name
- api_
key str Kik API key. Value only returned through POST to the action Channel List API, otherwise empty.
- is_
validated bool Whether this channel is validated for the bot
- is
Enabled Boolean Whether this channel is enabled for the bot
- user
Name String The Kik user name
- api
Key String Kik API key. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated Boolean Whether this channel is validated for the bot
KikChannelPropertiesResponse
- Is
Enabled bool Whether this channel is enabled for the bot
- User
Name string The Kik user name
- Api
Key string Kik API key. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Validated bool Whether this channel is validated for the bot
- Is
Enabled bool Whether this channel is enabled for the bot
- User
Name string The Kik user name
- Api
Key string Kik API key. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Validated bool Whether this channel is validated for the bot
- is
Enabled Boolean Whether this channel is enabled for the bot
- user
Name String The Kik user name
- api
Key String Kik API key. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated Boolean Whether this channel is validated for the bot
- is
Enabled boolean Whether this channel is enabled for the bot
- user
Name string The Kik user name
- api
Key string Kik API key. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated boolean Whether this channel is validated for the bot
- is_
enabled bool Whether this channel is enabled for the bot
- user_
name str The Kik user name
- api_
key str Kik API key. Value only returned through POST to the action Channel List API, otherwise empty.
- is_
validated bool Whether this channel is validated for the bot
- is
Enabled Boolean Whether this channel is enabled for the bot
- user
Name String The Kik user name
- api
Key String Kik API key. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated Boolean Whether this channel is validated for the bot
KikChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Kik Channel Properties Response The set of properties specific to Kik channel resource
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Kik
Channel Properties Response The set of properties specific to Kik channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Kik
Channel Properties Response The set of properties specific to Kik channel resource
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Kik
Channel Properties Response The set of properties specific to Kik channel resource
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Kik
Channel Properties Response The set of properties specific to Kik channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Kik channel resource
Kind
- Sdk
- sdk
- Designer
- designer
- Bot
- bot
- Function
- function
- Kind
Sdk - sdk
- Kind
Designer - designer
- Kind
Bot - bot
- Kind
Function - function
- Sdk
- sdk
- Designer
- designer
- Bot
- bot
- Function
- function
- Sdk
- sdk
- Designer
- designer
- Bot
- bot
- Function
- function
- SDK
- sdk
- DESIGNER
- designer
- BOT
- bot
- FUNCTION
- function
- "sdk"
- sdk
- "designer"
- designer
- "bot"
- bot
- "function"
- function
LineChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Line Channel Properties The set of properties specific to line channel resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Line
Channel Properties The set of properties specific to line channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Line
Channel Properties The set of properties specific to line channel resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Line
Channel Properties The set of properties specific to line channel resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Line
Channel Properties The set of properties specific to line channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to line channel resource
LineChannelProperties
- Line
Registrations List<Pulumi.Azure Native. Bot Service. Inputs. Line Registration> The list of line channel registrations
- Line
Registrations []LineRegistration The list of line channel registrations
- line
Registrations ListRegistration> The list of line channel registrations
- line
Registrations LineRegistration[] The list of line channel registrations
- line_
registrations Sequence[LineRegistration] The list of line channel registrations
- line
Registrations List The list of line channel registrations
LineChannelPropertiesResponse
- Callback
Url string Callback Url to enter in line registration.
- Is
Validated bool Whether this channel is validated for the bot
- Line
Registrations List<Pulumi.Azure Native. Bot Service. Inputs. Line Registration Response> The list of line channel registrations
- Callback
Url string Callback Url to enter in line registration.
- Is
Validated bool Whether this channel is validated for the bot
- Line
Registrations []LineRegistration Response The list of line channel registrations
- callback
Url String Callback Url to enter in line registration.
- is
Validated Boolean Whether this channel is validated for the bot
- line
Registrations ListRegistration Response> The list of line channel registrations
- callback
Url string Callback Url to enter in line registration.
- is
Validated boolean Whether this channel is validated for the bot
- line
Registrations LineRegistration Response[] The list of line channel registrations
- callback_
url str Callback Url to enter in line registration.
- is_
validated bool Whether this channel is validated for the bot
- line_
registrations Sequence[LineRegistration Response] The list of line channel registrations
- callback
Url String Callback Url to enter in line registration.
- is
Validated Boolean Whether this channel is validated for the bot
- line
Registrations List The list of line channel registrations
LineChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Line Channel Properties Response The set of properties specific to line channel resource
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Line
Channel Properties Response The set of properties specific to line channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Line
Channel Properties Response The set of properties specific to line channel resource
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Line
Channel Properties Response The set of properties specific to line channel resource
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Line
Channel Properties Response The set of properties specific to line channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to line channel resource
LineRegistration
- Channel
Access stringToken Access token for the line channel registration
- Channel
Secret string Secret for the line channel registration
- Channel
Access stringToken Access token for the line channel registration
- Channel
Secret string Secret for the line channel registration
- channel
Access StringToken Access token for the line channel registration
- channel
Secret String Secret for the line channel registration
- channel
Access stringToken Access token for the line channel registration
- channel
Secret string Secret for the line channel registration
- channel_
access_ strtoken Access token for the line channel registration
- channel_
secret str Secret for the line channel registration
- channel
Access StringToken Access token for the line channel registration
- channel
Secret String Secret for the line channel registration
LineRegistrationResponse
- Generated
Id string Id generated for the line channel registration
- Channel
Access stringToken Access token for the line channel registration
- Channel
Secret string Secret for the line channel registration
- Generated
Id string Id generated for the line channel registration
- Channel
Access stringToken Access token for the line channel registration
- Channel
Secret string Secret for the line channel registration
- generated
Id String Id generated for the line channel registration
- channel
Access StringToken Access token for the line channel registration
- channel
Secret String Secret for the line channel registration
- generated
Id string Id generated for the line channel registration
- channel
Access stringToken Access token for the line channel registration
- channel
Secret string Secret for the line channel registration
- generated_
id str Id generated for the line channel registration
- channel_
access_ strtoken Access token for the line channel registration
- channel_
secret str Secret for the line channel registration
- generated
Id String Id generated for the line channel registration
- channel
Access StringToken Access token for the line channel registration
- channel
Secret String Secret for the line channel registration
MsTeamsChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Ms Teams Channel Properties The set of properties specific to Microsoft Teams channel resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Ms
Teams Channel Properties The set of properties specific to Microsoft Teams channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Ms
Teams Channel Properties The set of properties specific to Microsoft Teams channel resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Ms
Teams Channel Properties The set of properties specific to Microsoft Teams channel resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Ms
Teams Channel Properties The set of properties specific to Microsoft Teams channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Microsoft Teams channel resource
MsTeamsChannelProperties
- Is
Enabled bool Whether this channel is enabled for the bot
- Accepted
Terms bool Whether this channel accepted terms
- Calling
Web stringHook Webhook for Microsoft Teams channel calls
- Deployment
Environment string Deployment environment for Microsoft Teams channel calls
- Enable
Calling bool Enable calling for Microsoft Teams channel
- Incoming
Call stringRoute Webhook for Microsoft Teams channel calls
- Is
Enabled bool Whether this channel is enabled for the bot
- Accepted
Terms bool Whether this channel accepted terms
- Calling
Web stringHook Webhook for Microsoft Teams channel calls
- Deployment
Environment string Deployment environment for Microsoft Teams channel calls
- Enable
Calling bool Enable calling for Microsoft Teams channel
- Incoming
Call stringRoute Webhook for Microsoft Teams channel calls
- is
Enabled Boolean Whether this channel is enabled for the bot
- accepted
Terms Boolean Whether this channel accepted terms
- calling
Web StringHook Webhook for Microsoft Teams channel calls
- deployment
Environment String Deployment environment for Microsoft Teams channel calls
- enable
Calling Boolean Enable calling for Microsoft Teams channel
- incoming
Call StringRoute Webhook for Microsoft Teams channel calls
- is
Enabled boolean Whether this channel is enabled for the bot
- accepted
Terms boolean Whether this channel accepted terms
- calling
Web stringHook Webhook for Microsoft Teams channel calls
- deployment
Environment string Deployment environment for Microsoft Teams channel calls
- enable
Calling boolean Enable calling for Microsoft Teams channel
- incoming
Call stringRoute Webhook for Microsoft Teams channel calls
- is_
enabled bool Whether this channel is enabled for the bot
- accepted_
terms bool Whether this channel accepted terms
- calling_
web_ strhook Webhook for Microsoft Teams channel calls
- deployment_
environment str Deployment environment for Microsoft Teams channel calls
- enable_
calling bool Enable calling for Microsoft Teams channel
- incoming_
call_ strroute Webhook for Microsoft Teams channel calls
- is
Enabled Boolean Whether this channel is enabled for the bot
- accepted
Terms Boolean Whether this channel accepted terms
- calling
Web StringHook Webhook for Microsoft Teams channel calls
- deployment
Environment String Deployment environment for Microsoft Teams channel calls
- enable
Calling Boolean Enable calling for Microsoft Teams channel
- incoming
Call StringRoute Webhook for Microsoft Teams channel calls
MsTeamsChannelPropertiesResponse
- Is
Enabled bool Whether this channel is enabled for the bot
- Accepted
Terms bool Whether this channel accepted terms
- Calling
Web stringHook Webhook for Microsoft Teams channel calls
- Deployment
Environment string Deployment environment for Microsoft Teams channel calls
- Enable
Calling bool Enable calling for Microsoft Teams channel
- Incoming
Call stringRoute Webhook for Microsoft Teams channel calls
- Is
Enabled bool Whether this channel is enabled for the bot
- Accepted
Terms bool Whether this channel accepted terms
- Calling
Web stringHook Webhook for Microsoft Teams channel calls
- Deployment
Environment string Deployment environment for Microsoft Teams channel calls
- Enable
Calling bool Enable calling for Microsoft Teams channel
- Incoming
Call stringRoute Webhook for Microsoft Teams channel calls
- is
Enabled Boolean Whether this channel is enabled for the bot
- accepted
Terms Boolean Whether this channel accepted terms
- calling
Web StringHook Webhook for Microsoft Teams channel calls
- deployment
Environment String Deployment environment for Microsoft Teams channel calls
- enable
Calling Boolean Enable calling for Microsoft Teams channel
- incoming
Call StringRoute Webhook for Microsoft Teams channel calls
- is
Enabled boolean Whether this channel is enabled for the bot
- accepted
Terms boolean Whether this channel accepted terms
- calling
Web stringHook Webhook for Microsoft Teams channel calls
- deployment
Environment string Deployment environment for Microsoft Teams channel calls
- enable
Calling boolean Enable calling for Microsoft Teams channel
- incoming
Call stringRoute Webhook for Microsoft Teams channel calls
- is_
enabled bool Whether this channel is enabled for the bot
- accepted_
terms bool Whether this channel accepted terms
- calling_
web_ strhook Webhook for Microsoft Teams channel calls
- deployment_
environment str Deployment environment for Microsoft Teams channel calls
- enable_
calling bool Enable calling for Microsoft Teams channel
- incoming_
call_ strroute Webhook for Microsoft Teams channel calls
- is
Enabled Boolean Whether this channel is enabled for the bot
- accepted
Terms Boolean Whether this channel accepted terms
- calling
Web StringHook Webhook for Microsoft Teams channel calls
- deployment
Environment String Deployment environment for Microsoft Teams channel calls
- enable
Calling Boolean Enable calling for Microsoft Teams channel
- incoming
Call StringRoute Webhook for Microsoft Teams channel calls
MsTeamsChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Ms Teams Channel Properties Response The set of properties specific to Microsoft Teams channel resource
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Ms
Teams Channel Properties Response The set of properties specific to Microsoft Teams channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Ms
Teams Channel Properties Response The set of properties specific to Microsoft Teams channel resource
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Ms
Teams Channel Properties Response The set of properties specific to Microsoft Teams channel resource
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Ms
Teams Channel Properties Response The set of properties specific to Microsoft Teams channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Microsoft Teams channel resource
Sku
- Name
string | Pulumi.
Azure Native. Bot Service. Sku Name The sku name
- name String | "F0" | "S1"
The sku name
SkuName
- F0
- F0
- S1
- S1
- Sku
Name F0 - F0
- Sku
Name S1 - S1
- F0
- F0
- S1
- S1
- F0
- F0
- S1
- S1
- F0
- F0
- S1
- S1
- "F0"
- F0
- "S1"
- S1
SkuResponse
SkypeChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Skype Channel Properties The set of properties specific to Skype channel resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Skype
Channel Properties The set of properties specific to Skype channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Skype
Channel Properties The set of properties specific to Skype channel resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Skype
Channel Properties The set of properties specific to Skype channel resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Skype
Channel Properties The set of properties specific to Skype channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Skype channel resource
SkypeChannelProperties
- Is
Enabled bool Whether this channel is enabled for the bot
- Calling
Web stringHook Calling web hook for Skype channel
- Enable
Calling bool Enable calling for Skype channel
- Enable
Groups bool Enable groups for Skype channel
- Enable
Media boolCards Enable media cards for Skype channel
- Enable
Messaging bool Enable messaging for Skype channel
- Enable
Screen boolSharing Enable screen sharing for Skype channel
- Enable
Video bool Enable video for Skype channel
- Groups
Mode string Group mode for Skype channel
- Incoming
Call stringRoute Incoming call route for Skype channel
- Is
Enabled bool Whether this channel is enabled for the bot
- Calling
Web stringHook Calling web hook for Skype channel
- Enable
Calling bool Enable calling for Skype channel
- Enable
Groups bool Enable groups for Skype channel
- Enable
Media boolCards Enable media cards for Skype channel
- Enable
Messaging bool Enable messaging for Skype channel
- Enable
Screen boolSharing Enable screen sharing for Skype channel
- Enable
Video bool Enable video for Skype channel
- Groups
Mode string Group mode for Skype channel
- Incoming
Call stringRoute Incoming call route for Skype channel
- is
Enabled Boolean Whether this channel is enabled for the bot
- calling
Web StringHook Calling web hook for Skype channel
- enable
Calling Boolean Enable calling for Skype channel
- enable
Groups Boolean Enable groups for Skype channel
- enable
Media BooleanCards Enable media cards for Skype channel
- enable
Messaging Boolean Enable messaging for Skype channel
- enable
Screen BooleanSharing Enable screen sharing for Skype channel
- enable
Video Boolean Enable video for Skype channel
- groups
Mode String Group mode for Skype channel
- incoming
Call StringRoute Incoming call route for Skype channel
- is
Enabled boolean Whether this channel is enabled for the bot
- calling
Web stringHook Calling web hook for Skype channel
- enable
Calling boolean Enable calling for Skype channel
- enable
Groups boolean Enable groups for Skype channel
- enable
Media booleanCards Enable media cards for Skype channel
- enable
Messaging boolean Enable messaging for Skype channel
- enable
Screen booleanSharing Enable screen sharing for Skype channel
- enable
Video boolean Enable video for Skype channel
- groups
Mode string Group mode for Skype channel
- incoming
Call stringRoute Incoming call route for Skype channel
- is_
enabled bool Whether this channel is enabled for the bot
- calling_
web_ strhook Calling web hook for Skype channel
- enable_
calling bool Enable calling for Skype channel
- enable_
groups bool Enable groups for Skype channel
- enable_
media_ boolcards Enable media cards for Skype channel
- enable_
messaging bool Enable messaging for Skype channel
- enable_
screen_ boolsharing Enable screen sharing for Skype channel
- enable_
video bool Enable video for Skype channel
- groups_
mode str Group mode for Skype channel
- incoming_
call_ strroute Incoming call route for Skype channel
- is
Enabled Boolean Whether this channel is enabled for the bot
- calling
Web StringHook Calling web hook for Skype channel
- enable
Calling Boolean Enable calling for Skype channel
- enable
Groups Boolean Enable groups for Skype channel
- enable
Media BooleanCards Enable media cards for Skype channel
- enable
Messaging Boolean Enable messaging for Skype channel
- enable
Screen BooleanSharing Enable screen sharing for Skype channel
- enable
Video Boolean Enable video for Skype channel
- groups
Mode String Group mode for Skype channel
- incoming
Call StringRoute Incoming call route for Skype channel
SkypeChannelPropertiesResponse
- Is
Enabled bool Whether this channel is enabled for the bot
- Calling
Web stringHook Calling web hook for Skype channel
- Enable
Calling bool Enable calling for Skype channel
- Enable
Groups bool Enable groups for Skype channel
- Enable
Media boolCards Enable media cards for Skype channel
- Enable
Messaging bool Enable messaging for Skype channel
- Enable
Screen boolSharing Enable screen sharing for Skype channel
- Enable
Video bool Enable video for Skype channel
- Groups
Mode string Group mode for Skype channel
- Incoming
Call stringRoute Incoming call route for Skype channel
- Is
Enabled bool Whether this channel is enabled for the bot
- Calling
Web stringHook Calling web hook for Skype channel
- Enable
Calling bool Enable calling for Skype channel
- Enable
Groups bool Enable groups for Skype channel
- Enable
Media boolCards Enable media cards for Skype channel
- Enable
Messaging bool Enable messaging for Skype channel
- Enable
Screen boolSharing Enable screen sharing for Skype channel
- Enable
Video bool Enable video for Skype channel
- Groups
Mode string Group mode for Skype channel
- Incoming
Call stringRoute Incoming call route for Skype channel
- is
Enabled Boolean Whether this channel is enabled for the bot
- calling
Web StringHook Calling web hook for Skype channel
- enable
Calling Boolean Enable calling for Skype channel
- enable
Groups Boolean Enable groups for Skype channel
- enable
Media BooleanCards Enable media cards for Skype channel
- enable
Messaging Boolean Enable messaging for Skype channel
- enable
Screen BooleanSharing Enable screen sharing for Skype channel
- enable
Video Boolean Enable video for Skype channel
- groups
Mode String Group mode for Skype channel
- incoming
Call StringRoute Incoming call route for Skype channel
- is
Enabled boolean Whether this channel is enabled for the bot
- calling
Web stringHook Calling web hook for Skype channel
- enable
Calling boolean Enable calling for Skype channel
- enable
Groups boolean Enable groups for Skype channel
- enable
Media booleanCards Enable media cards for Skype channel
- enable
Messaging boolean Enable messaging for Skype channel
- enable
Screen booleanSharing Enable screen sharing for Skype channel
- enable
Video boolean Enable video for Skype channel
- groups
Mode string Group mode for Skype channel
- incoming
Call stringRoute Incoming call route for Skype channel
- is_
enabled bool Whether this channel is enabled for the bot
- calling_
web_ strhook Calling web hook for Skype channel
- enable_
calling bool Enable calling for Skype channel
- enable_
groups bool Enable groups for Skype channel
- enable_
media_ boolcards Enable media cards for Skype channel
- enable_
messaging bool Enable messaging for Skype channel
- enable_
screen_ boolsharing Enable screen sharing for Skype channel
- enable_
video bool Enable video for Skype channel
- groups_
mode str Group mode for Skype channel
- incoming_
call_ strroute Incoming call route for Skype channel
- is
Enabled Boolean Whether this channel is enabled for the bot
- calling
Web StringHook Calling web hook for Skype channel
- enable
Calling Boolean Enable calling for Skype channel
- enable
Groups Boolean Enable groups for Skype channel
- enable
Media BooleanCards Enable media cards for Skype channel
- enable
Messaging Boolean Enable messaging for Skype channel
- enable
Screen BooleanSharing Enable screen sharing for Skype channel
- enable
Video Boolean Enable video for Skype channel
- groups
Mode String Group mode for Skype channel
- incoming
Call StringRoute Incoming call route for Skype channel
SkypeChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Skype Channel Properties Response The set of properties specific to Skype channel resource
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Skype
Channel Properties Response The set of properties specific to Skype channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Skype
Channel Properties Response The set of properties specific to Skype channel resource
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Skype
Channel Properties Response The set of properties specific to Skype channel resource
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Skype
Channel Properties Response The set of properties specific to Skype channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Skype channel resource
SlackChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Slack Channel Properties The set of properties specific to Slack channel resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Slack
Channel Properties The set of properties specific to Slack channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Slack
Channel Properties The set of properties specific to Slack channel resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Slack
Channel Properties The set of properties specific to Slack channel resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Slack
Channel Properties The set of properties specific to Slack channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Slack channel resource
SlackChannelProperties
- Is
Enabled bool Whether this channel is enabled for the bot
- Client
Id string The Slack client id
- Client
Secret string The Slack client secret. Value only returned through POST to the action Channel List API, otherwise empty.
- Landing
Page stringUrl The Slack landing page Url
- Signing
Secret string The Slack signing secret.
- Verification
Token string The Slack verification token. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Enabled bool Whether this channel is enabled for the bot
- Client
Id string The Slack client id
- Client
Secret string The Slack client secret. Value only returned through POST to the action Channel List API, otherwise empty.
- Landing
Page stringUrl The Slack landing page Url
- Signing
Secret string The Slack signing secret.
- Verification
Token string The Slack verification token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Enabled Boolean Whether this channel is enabled for the bot
- client
Id String The Slack client id
- client
Secret String The Slack client secret. Value only returned through POST to the action Channel List API, otherwise empty.
- landing
Page StringUrl The Slack landing page Url
- signing
Secret String The Slack signing secret.
- verification
Token String The Slack verification token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Enabled boolean Whether this channel is enabled for the bot
- client
Id string The Slack client id
- client
Secret string The Slack client secret. Value only returned through POST to the action Channel List API, otherwise empty.
- landing
Page stringUrl The Slack landing page Url
- signing
Secret string The Slack signing secret.
- verification
Token string The Slack verification token. Value only returned through POST to the action Channel List API, otherwise empty.
- is_
enabled bool Whether this channel is enabled for the bot
- client_
id str The Slack client id
- client_
secret str The Slack client secret. Value only returned through POST to the action Channel List API, otherwise empty.
- landing_
page_ strurl The Slack landing page Url
- signing_
secret str The Slack signing secret.
- verification_
token str The Slack verification token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Enabled Boolean Whether this channel is enabled for the bot
- client
Id String The Slack client id
- client
Secret String The Slack client secret. Value only returned through POST to the action Channel List API, otherwise empty.
- landing
Page StringUrl The Slack landing page Url
- signing
Secret String The Slack signing secret.
- verification
Token String The Slack verification token. Value only returned through POST to the action Channel List API, otherwise empty.
SlackChannelPropertiesResponse
- Is
Enabled bool Whether this channel is enabled for the bot
- Is
Validated bool Whether this channel is validated for the bot
- Last
Submission stringId The Sms auth token
- Redirect
Action string The Slack redirect action
- Register
Before boolOAuth Flow Whether to register the settings before OAuth validation is performed. Recommended to True.
- Client
Id string The Slack client id
- Client
Secret string The Slack client secret. Value only returned through POST to the action Channel List API, otherwise empty.
- Landing
Page stringUrl The Slack landing page Url
- Signing
Secret string The Slack signing secret.
- Verification
Token string The Slack verification token. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Enabled bool Whether this channel is enabled for the bot
- Is
Validated bool Whether this channel is validated for the bot
- Last
Submission stringId The Sms auth token
- Redirect
Action string The Slack redirect action
- Register
Before boolOAuth Flow Whether to register the settings before OAuth validation is performed. Recommended to True.
- Client
Id string The Slack client id
- Client
Secret string The Slack client secret. Value only returned through POST to the action Channel List API, otherwise empty.
- Landing
Page stringUrl The Slack landing page Url
- Signing
Secret string The Slack signing secret.
- Verification
Token string The Slack verification token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Enabled Boolean Whether this channel is enabled for the bot
- is
Validated Boolean Whether this channel is validated for the bot
- last
Submission StringId The Sms auth token
- redirect
Action String The Slack redirect action
- register
Before BooleanOAuth Flow Whether to register the settings before OAuth validation is performed. Recommended to True.
- client
Id String The Slack client id
- client
Secret String The Slack client secret. Value only returned through POST to the action Channel List API, otherwise empty.
- landing
Page StringUrl The Slack landing page Url
- signing
Secret String The Slack signing secret.
- verification
Token String The Slack verification token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Enabled boolean Whether this channel is enabled for the bot
- is
Validated boolean Whether this channel is validated for the bot
- last
Submission stringId The Sms auth token
- redirect
Action string The Slack redirect action
- register
Before booleanOAuth Flow Whether to register the settings before OAuth validation is performed. Recommended to True.
- client
Id string The Slack client id
- client
Secret string The Slack client secret. Value only returned through POST to the action Channel List API, otherwise empty.
- landing
Page stringUrl The Slack landing page Url
- signing
Secret string The Slack signing secret.
- verification
Token string The Slack verification token. Value only returned through POST to the action Channel List API, otherwise empty.
- is_
enabled bool Whether this channel is enabled for the bot
- is_
validated bool Whether this channel is validated for the bot
- last_
submission_ strid The Sms auth token
- redirect_
action str The Slack redirect action
- register_
before_ boolo_ auth_ flow Whether to register the settings before OAuth validation is performed. Recommended to True.
- client_
id str The Slack client id
- client_
secret str The Slack client secret. Value only returned through POST to the action Channel List API, otherwise empty.
- landing_
page_ strurl The Slack landing page Url
- signing_
secret str The Slack signing secret.
- verification_
token str The Slack verification token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Enabled Boolean Whether this channel is enabled for the bot
- is
Validated Boolean Whether this channel is validated for the bot
- last
Submission StringId The Sms auth token
- redirect
Action String The Slack redirect action
- register
Before BooleanOAuth Flow Whether to register the settings before OAuth validation is performed. Recommended to True.
- client
Id String The Slack client id
- client
Secret String The Slack client secret. Value only returned through POST to the action Channel List API, otherwise empty.
- landing
Page StringUrl The Slack landing page Url
- signing
Secret String The Slack signing secret.
- verification
Token String The Slack verification token. Value only returned through POST to the action Channel List API, otherwise empty.
SlackChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Slack Channel Properties Response The set of properties specific to Slack channel resource
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Slack
Channel Properties Response The set of properties specific to Slack channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Slack
Channel Properties Response The set of properties specific to Slack channel resource
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Slack
Channel Properties Response The set of properties specific to Slack channel resource
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Slack
Channel Properties Response The set of properties specific to Slack channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Slack channel resource
SmsChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Sms Channel Properties The set of properties specific to Sms channel resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Sms
Channel Properties The set of properties specific to Sms channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Sms
Channel Properties The set of properties specific to Sms channel resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Sms
Channel Properties The set of properties specific to Sms channel resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Sms
Channel Properties The set of properties specific to Sms channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Sms channel resource
SmsChannelProperties
- Account
SID string The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Enabled bool Whether this channel is enabled for the bot
- Phone string
The Sms phone
- Auth
Token string The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Validated bool Whether this channel is validated for the bot
- Account
SID string The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Enabled bool Whether this channel is enabled for the bot
- Phone string
The Sms phone
- Auth
Token string The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Validated bool Whether this channel is validated for the bot
- account
SID String The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Enabled Boolean Whether this channel is enabled for the bot
- phone String
The Sms phone
- auth
Token String The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated Boolean Whether this channel is validated for the bot
- account
SID string The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Enabled boolean Whether this channel is enabled for the bot
- phone string
The Sms phone
- auth
Token string The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated boolean Whether this channel is validated for the bot
- account_
sid str The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.
- is_
enabled bool Whether this channel is enabled for the bot
- phone str
The Sms phone
- auth_
token str The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.
- is_
validated bool Whether this channel is validated for the bot
- account
SID String The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Enabled Boolean Whether this channel is enabled for the bot
- phone String
The Sms phone
- auth
Token String The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated Boolean Whether this channel is validated for the bot
SmsChannelPropertiesResponse
- Account
SID string The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Enabled bool Whether this channel is enabled for the bot
- Phone string
The Sms phone
- Auth
Token string The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Validated bool Whether this channel is validated for the bot
- Account
SID string The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Enabled bool Whether this channel is enabled for the bot
- Phone string
The Sms phone
- Auth
Token string The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Validated bool Whether this channel is validated for the bot
- account
SID String The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Enabled Boolean Whether this channel is enabled for the bot
- phone String
The Sms phone
- auth
Token String The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated Boolean Whether this channel is validated for the bot
- account
SID string The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Enabled boolean Whether this channel is enabled for the bot
- phone string
The Sms phone
- auth
Token string The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated boolean Whether this channel is validated for the bot
- account_
sid str The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.
- is_
enabled bool Whether this channel is enabled for the bot
- phone str
The Sms phone
- auth_
token str The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.
- is_
validated bool Whether this channel is validated for the bot
- account
SID String The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Enabled Boolean Whether this channel is enabled for the bot
- phone String
The Sms phone
- auth
Token String The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated Boolean Whether this channel is validated for the bot
SmsChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Sms Channel Properties Response The set of properties specific to Sms channel resource
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Sms
Channel Properties Response The set of properties specific to Sms channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Sms
Channel Properties Response The set of properties specific to Sms channel resource
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Sms
Channel Properties Response The set of properties specific to Sms channel resource
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Sms
Channel Properties Response The set of properties specific to Sms channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Sms channel resource
TelegramChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Telegram Channel Properties The set of properties specific to Telegram channel resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Telegram
Channel Properties The set of properties specific to Telegram channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Telegram
Channel Properties The set of properties specific to Telegram channel resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Telegram
Channel Properties The set of properties specific to Telegram channel resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Telegram
Channel Properties The set of properties specific to Telegram channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Telegram channel resource
TelegramChannelProperties
- Is
Enabled bool Whether this channel is enabled for the bot
- Access
Token string The Telegram access token. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Validated bool Whether this channel is validated for the bot
- Is
Enabled bool Whether this channel is enabled for the bot
- Access
Token string The Telegram access token. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Validated bool Whether this channel is validated for the bot
- is
Enabled Boolean Whether this channel is enabled for the bot
- access
Token String The Telegram access token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated Boolean Whether this channel is validated for the bot
- is
Enabled boolean Whether this channel is enabled for the bot
- access
Token string The Telegram access token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated boolean Whether this channel is validated for the bot
- is_
enabled bool Whether this channel is enabled for the bot
- access_
token str The Telegram access token. Value only returned through POST to the action Channel List API, otherwise empty.
- is_
validated bool Whether this channel is validated for the bot
- is
Enabled Boolean Whether this channel is enabled for the bot
- access
Token String The Telegram access token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated Boolean Whether this channel is validated for the bot
TelegramChannelPropertiesResponse
- Is
Enabled bool Whether this channel is enabled for the bot
- Access
Token string The Telegram access token. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Validated bool Whether this channel is validated for the bot
- Is
Enabled bool Whether this channel is enabled for the bot
- Access
Token string The Telegram access token. Value only returned through POST to the action Channel List API, otherwise empty.
- Is
Validated bool Whether this channel is validated for the bot
- is
Enabled Boolean Whether this channel is enabled for the bot
- access
Token String The Telegram access token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated Boolean Whether this channel is validated for the bot
- is
Enabled boolean Whether this channel is enabled for the bot
- access
Token string The Telegram access token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated boolean Whether this channel is validated for the bot
- is_
enabled bool Whether this channel is enabled for the bot
- access_
token str The Telegram access token. Value only returned through POST to the action Channel List API, otherwise empty.
- is_
validated bool Whether this channel is validated for the bot
- is
Enabled Boolean Whether this channel is enabled for the bot
- access
Token String The Telegram access token. Value only returned through POST to the action Channel List API, otherwise empty.
- is
Validated Boolean Whether this channel is validated for the bot
TelegramChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Telegram Channel Properties Response The set of properties specific to Telegram channel resource
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Telegram
Channel Properties Response The set of properties specific to Telegram channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Telegram
Channel Properties Response The set of properties specific to Telegram channel resource
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Telegram
Channel Properties Response The set of properties specific to Telegram channel resource
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Telegram
Channel Properties Response The set of properties specific to Telegram channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Telegram channel resource
WebChatChannel
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Web Chat Channel Properties The set of properties specific to Web Chat channel resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Web
Chat Channel Properties The set of properties specific to Web Chat channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Web
Chat Channel Properties The set of properties specific to Web Chat channel resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Web
Chat Channel Properties The set of properties specific to Web Chat channel resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Web
Chat Channel Properties The set of properties specific to Web Chat channel resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Web Chat channel resource
WebChatChannelProperties
- Sites
List<Pulumi.
Azure Native. Bot Service. Inputs. Web Chat Site> The list of Web Chat sites
- Sites
[]Web
Chat Site The list of Web Chat sites
- sites
List
Chat Site> The list of Web Chat sites
- sites
Web
Chat Site[] The list of Web Chat sites
- sites
Sequence[Web
Chat Site] The list of Web Chat sites
WebChatChannelPropertiesResponse
- Web
Chat stringEmbed Code Web chat control embed code
- Sites
List<Pulumi.
Azure Native. Bot Service. Inputs. Web Chat Site Response> The list of Web Chat sites
- Web
Chat stringEmbed Code Web chat control embed code
- Sites
[]Web
Chat Site Response The list of Web Chat sites
- web
Chat StringEmbed Code Web chat control embed code
- sites
List
Chat Site Response> The list of Web Chat sites
- web
Chat stringEmbed Code Web chat control embed code
- sites
Web
Chat Site Response[] The list of Web Chat sites
- web_
chat_ strembed_ code Web chat control embed code
- sites
Sequence[Web
Chat Site Response] The list of Web Chat sites
- web
Chat StringEmbed Code Web chat control embed code
- sites
List
The list of Web Chat sites
WebChatChannelResponse
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Web Chat Channel Properties Response The set of properties specific to Web Chat channel resource
- Provisioning
State string Provisioning state of the resource
- Etag string
Entity Tag of the resource
- Location string
Specifies the location of the resource.
- Properties
Web
Chat Channel Properties Response The set of properties specific to Web Chat channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties
Web
Chat Channel Properties Response The set of properties specific to Web Chat channel resource
- provisioning
State string Provisioning state of the resource
- etag string
Entity Tag of the resource
- location string
Specifies the location of the resource.
- properties
Web
Chat Channel Properties Response The set of properties specific to Web Chat channel resource
- provisioning_
state str Provisioning state of the resource
- etag str
Entity Tag of the resource
- location str
Specifies the location of the resource.
- properties
Web
Chat Channel Properties Response The set of properties specific to Web Chat channel resource
- provisioning
State String Provisioning state of the resource
- etag String
Entity Tag of the resource
- location String
Specifies the location of the resource.
- properties Property Map
The set of properties specific to Web Chat channel resource
WebChatSite
- Is
Enabled bool Whether this site is enabled for DirectLine channel
- Is
Webchat boolPreview Enabled Whether this site is enabled for preview versions of Webchat
- Site
Name string Site name
- Is
Enabled bool Whether this site is enabled for DirectLine channel
- Is
Webchat boolPreview Enabled Whether this site is enabled for preview versions of Webchat
- Site
Name string Site name
- is
Enabled Boolean Whether this site is enabled for DirectLine channel
- is
Webchat BooleanPreview Enabled Whether this site is enabled for preview versions of Webchat
- site
Name String Site name
- is
Enabled boolean Whether this site is enabled for DirectLine channel
- is
Webchat booleanPreview Enabled Whether this site is enabled for preview versions of Webchat
- site
Name string Site name
- is_
enabled bool Whether this site is enabled for DirectLine channel
- is_
webchat_ boolpreview_ enabled Whether this site is enabled for preview versions of Webchat
- site_
name str Site name
- is
Enabled Boolean Whether this site is enabled for DirectLine channel
- is
Webchat BooleanPreview Enabled Whether this site is enabled for preview versions of Webchat
- site
Name String Site name
WebChatSiteResponse
- Is
Enabled bool Whether this site is enabled for DirectLine channel
- Is
Webchat boolPreview Enabled Whether this site is enabled for preview versions of Webchat
- Key string
Primary key. Value only returned through POST to the action Channel List API, otherwise empty.
- Key2 string
Secondary key. Value only returned through POST to the action Channel List API, otherwise empty.
- Site
Id string Site Id
- Site
Name string Site name
- Is
Enabled bool Whether this site is enabled for DirectLine channel
- Is
Webchat boolPreview Enabled Whether this site is enabled for preview versions of Webchat
- Key string
Primary key. Value only returned through POST to the action Channel List API, otherwise empty.
- Key2 string
Secondary key. Value only returned through POST to the action Channel List API, otherwise empty.
- Site
Id string Site Id
- Site
Name string Site name
- is
Enabled Boolean Whether this site is enabled for DirectLine channel
- is
Webchat BooleanPreview Enabled Whether this site is enabled for preview versions of Webchat
- key String
Primary key. Value only returned through POST to the action Channel List API, otherwise empty.
- key2 String
Secondary key. Value only returned through POST to the action Channel List API, otherwise empty.
- site
Id String Site Id
- site
Name String Site name
- is
Enabled boolean Whether this site is enabled for DirectLine channel
- is
Webchat booleanPreview Enabled Whether this site is enabled for preview versions of Webchat
- key string
Primary key. Value only returned through POST to the action Channel List API, otherwise empty.
- key2 string
Secondary key. Value only returned through POST to the action Channel List API, otherwise empty.
- site
Id string Site Id
- site
Name string Site name
- is_
enabled bool Whether this site is enabled for DirectLine channel
- is_
webchat_ boolpreview_ enabled Whether this site is enabled for preview versions of Webchat
- key str
Primary key. Value only returned through POST to the action Channel List API, otherwise empty.
- key2 str
Secondary key. Value only returned through POST to the action Channel List API, otherwise empty.
- site_
id str Site Id
- site_
name str Site name
- is
Enabled Boolean Whether this site is enabled for DirectLine channel
- is
Webchat BooleanPreview Enabled Whether this site is enabled for preview versions of Webchat
- key String
Primary key. Value only returned through POST to the action Channel List API, otherwise empty.
- key2 String
Secondary key. Value only returned through POST to the action Channel List API, otherwise empty.
- site
Id String Site Id
- site
Name String Site name
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:botservice:Channel myresource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/channels/{channelName}
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure-native
- License
- Apache-2.0