azure-native.botservice.Channel
Explore with Pulumi AI
Bot channel resource definition API Version: 2021-03-01.
Example Usage
Create Alexa Channel
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var channel = new AzureNative.BotService.Channel("channel", new()
{
ChannelName = "AlexaChannel",
Location = "global",
Properties = new AzureNative.BotService.Inputs.AlexaChannelArgs
{
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/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: botservice.AlexaChannel{
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 com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.botservice.Channel;
import com.pulumi.azurenative.botservice.ChannelArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
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=azure_native.botservice.AlexaChannelArgs(
channel_name="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 Channel
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var channel = new AzureNative.BotService.Channel("channel", new()
{
ChannelName = "EmailChannel",
Location = "global",
Properties = new AzureNative.BotService.Inputs.EmailChannelArgs
{
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/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: botservice.EmailChannel{
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 com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.botservice.Channel;
import com.pulumi.azurenative.botservice.ChannelArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
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=azure_native.botservice.EmailChannelArgs(
channel_name="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 Channel
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var channel = new AzureNative.BotService.Channel("channel", new()
{
ChannelName = "DirectLineSpeechChannel",
Location = "global",
Properties = new AzureNative.BotService.Inputs.DirectLineSpeechChannelArgs
{
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/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: botservice.DirectLineSpeechChannel{
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 com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.botservice.Channel;
import com.pulumi.azurenative.botservice.ChannelArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
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=azure_native.botservice.DirectLineSpeechChannelArgs(
channel_name="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 Email Channel
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var channel = new AzureNative.BotService.Channel("channel", new()
{
ChannelName = "EmailChannel",
Location = "global",
Properties = new AzureNative.BotService.Inputs.EmailChannelArgs
{
ChannelName = "EmailChannel",
Properties = new AzureNative.BotService.Inputs.EmailChannelPropertiesArgs
{
AuthMethod = 1,
EmailAddress = "a@b.com",
IsEnabled = true,
MagicCode = "000000",
},
},
ResourceGroupName = "OneResourceGroupName",
ResourceName = "samplebotname",
});
});
package main
import (
botservice "github.com/pulumi/pulumi-azure-native-sdk/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: botservice.EmailChannel{
ChannelName: "EmailChannel",
Properties: botservice.EmailChannelProperties{
AuthMethod: 1,
EmailAddress: "a@b.com",
IsEnabled: true,
MagicCode: "000000",
},
},
ResourceGroupName: pulumi.String("OneResourceGroupName"),
ResourceName: pulumi.String("samplebotname"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.botservice.Channel;
import com.pulumi.azurenative.botservice.ChannelArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
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("authMethod", 1),
Map.entry("emailAddress", "a@b.com"),
Map.entry("isEnabled", true),
Map.entry("magicCode", "000000")
))
))
.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=azure_native.botservice.EmailChannelArgs(
channel_name="EmailChannel",
properties=azure_native.botservice.EmailChannelPropertiesArgs(
auth_method=1,
email_address="a@b.com",
is_enabled=True,
magic_code="000000",
),
),
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: {
authMethod: 1,
emailAddress: "a@b.com",
isEnabled: true,
magicCode: "000000",
},
},
resourceGroupName: "OneResourceGroupName",
resourceName: "samplebotname",
});
resources:
channel:
type: azure-native:botservice:Channel
properties:
channelName: EmailChannel
location: global
properties:
channelName: EmailChannel
properties:
authMethod: 1
emailAddress: a@b.com
isEnabled: true
magicCode: '000000'
resourceGroupName: OneResourceGroupName
resourceName: samplebotname
Create Line Channel
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var channel = new AzureNative.BotService.Channel("channel", new()
{
ChannelName = "LineChannel",
Location = "global",
Properties = new AzureNative.BotService.Inputs.LineChannelArgs
{
ChannelName = "LineChannel",
Properties = new AzureNative.BotService.Inputs.LineChannelPropertiesArgs
{
LineRegistrations = new[]
{
new AzureNative.BotService.Inputs.LineRegistrationArgs
{
ChannelAccessToken = "channelAccessToken",
ChannelSecret = "channelSecret",
},
},
},
},
ResourceGroupName = "OneResourceGroupName",
ResourceName = "samplebotname",
});
});
package main
import (
botservice "github.com/pulumi/pulumi-azure-native-sdk/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: botservice.LineChannel{
ChannelName: "LineChannel",
Properties: botservice.LineChannelProperties{
LineRegistrations: []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 com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.botservice.Channel;
import com.pulumi.azurenative.botservice.ChannelArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
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=azure_native.botservice.LineChannelArgs(
channel_name="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 Channel Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Channel(name: string, args: ChannelArgs, opts?: CustomResourceOptions);
@overload
def Channel(resource_name: str,
args: ChannelArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Channel(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
resource_name_: Optional[str] = None,
channel_name: Optional[str] = None,
kind: Optional[Union[str, Kind]] = None,
location: Optional[str] = None,
properties: Optional[Union[AcsChatChannelArgs, AlexaChannelArgs, DirectLineChannelArgs, DirectLineSpeechChannelArgs, EmailChannelArgs, FacebookChannelArgs, KikChannelArgs, LineChannelArgs, M365ExtensionsArgs, MsTeamsChannelArgs, OmnichannelArgs, OutlookChannelArgs, SearchAssistantArgs, SkypeChannelArgs, SlackChannelArgs, SmsChannelArgs, TelegramChannelArgs, TelephonyChannelArgs, WebChatChannelArgs]] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var channelResource = new AzureNative.Botservice.Channel("channelResource", new()
{
ResourceGroupName = "string",
ResourceName = "string",
ChannelName = "string",
Kind = "string",
Location = "string",
Properties =
{
{ "channelName", "AcsChatChannel" },
{ "etag", "string" },
{ "location", "string" },
},
Sku =
{
{ "name", "string" },
},
Tags =
{
{ "string", "string" },
},
});
example, err := botservice.NewChannel(ctx, "channelResource", &botservice.ChannelArgs{
ResourceGroupName: "string",
ResourceName: "string",
ChannelName: "string",
Kind: "string",
Location: "string",
Properties: map[string]interface{}{
"channelName": "AcsChatChannel",
"etag": "string",
"location": "string",
},
Sku: map[string]interface{}{
"name": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
})
var channelResource = new Channel("channelResource", ChannelArgs.builder()
.resourceGroupName("string")
.resourceName("string")
.channelName("string")
.kind("string")
.location("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
channel_resource = azure_native.botservice.Channel("channelResource",
resource_group_name=string,
resource_name_=string,
channel_name=string,
kind=string,
location=string,
properties={
channelName: AcsChatChannel,
etag: string,
location: string,
},
sku={
name: string,
},
tags={
string: string,
})
const channelResource = new azure_native.botservice.Channel("channelResource", {
resourceGroupName: "string",
resourceName: "string",
channelName: "string",
kind: "string",
location: "string",
properties: {
channelName: "AcsChatChannel",
etag: "string",
location: "string",
},
sku: {
name: "string",
},
tags: {
string: "string",
},
});
type: azure-native:botservice:Channel
properties:
channelName: string
kind: string
location: string
properties:
channelName: AcsChatChannel
etag: string
location: string
resourceGroupName: string
resourceName: string
sku:
name: string
tags:
string: string
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. Acs Chat Channel Azure | Pulumi.Native. Bot Service. Inputs. Alexa Channel Azure | Pulumi.Native. Bot Service. Inputs. Direct Line Channel Azure | Pulumi.Native. Bot Service. Inputs. Direct Line Speech Channel Azure | Pulumi.Native. Bot Service. Inputs. Email Channel Azure | Pulumi.Native. Bot Service. Inputs. Facebook Channel Azure | Pulumi.Native. Bot Service. Inputs. Kik Channel Azure | Pulumi.Native. Bot Service. Inputs. Line Channel Azure | Pulumi.Native. Bot Service. Inputs. M365Extensions Azure | Pulumi.Native. Bot Service. Inputs. Ms Teams Channel Azure | Pulumi.Native. Bot Service. Inputs. Omnichannel Azure | Pulumi.Native. Bot Service. Inputs. Outlook Channel Azure | Pulumi.Native. Bot Service. Inputs. Search Assistant Azure | Pulumi.Native. Bot Service. Inputs. Skype Channel Azure | Pulumi.Native. Bot Service. Inputs. Slack Channel Azure | Pulumi.Native. Bot Service. Inputs. Sms Channel Azure | Pulumi.Native. Bot Service. Inputs. Telegram Channel Azure | Pulumi.Native. Bot Service. Inputs. Telephony Channel Azure Native. Bot Service. Inputs. Web Chat Channel - The set of properties specific to bot channel resource
- Sku
Pulumi.
Azure Native. Bot Service. Inputs. Sku - 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
Acs
Chat | AlexaChannel Args Channel | DirectArgs Line | DirectChannel Args Line | EmailSpeech Channel Args Channel | FacebookArgs Channel | KikArgs Channel | LineArgs Channel | M365ExtensionsArgs Args | MsTeams | OmnichannelChannel Args Args | OutlookChannel | SearchArgs Assistant | SkypeArgs Channel | SlackArgs Channel | SmsArgs Channel | TelegramArgs Channel | TelephonyArgs 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
Acs
Chat | AlexaChannel Channel | DirectLine | DirectChannel Line | EmailSpeech Channel Channel | FacebookChannel | KikChannel | LineChannel | M365Extensions | MsTeams | Omnichannel | OutlookChannel Channel | SearchAssistant | SkypeChannel | SlackChannel | SmsChannel | TelegramChannel | TelephonyChannel | WebChat Channel - The set of properties specific to bot channel resource
- sku Sku
- 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
Acs
Chat | AlexaChannel Channel | DirectLine | DirectChannel Line | EmailSpeech Channel Channel | FacebookChannel | KikChannel | LineChannel | M365Extensions | MsTeams | Omnichannel | OutlookChannel Channel | SearchAssistant | SkypeChannel | SlackChannel | SmsChannel | TelegramChannel | TelephonyChannel | WebChat Channel - The set of properties specific to bot channel resource
- sku Sku
- 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
Acs
Chat | AlexaChannel Args Channel | DirectArgs Line | DirectChannel Args Line | EmailSpeech Channel Args Channel | FacebookArgs Channel | KikArgs Channel | LineArgs Channel | M365ExtensionsArgs Args | MsTeams | OmnichannelChannel Args Args | OutlookChannel | SearchArgs Assistant | SkypeArgs Channel | SlackArgs Channel | SmsArgs Channel | TelegramArgs Channel | TelephonyArgs 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 | 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<String>
- 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
AcsChatChannel, AcsChatChannelArgs
AcsChatChannelResponse, AcsChatChannelResponseArgs
- Provisioning
State string - Provisioning state of the resource
- Etag string
- Entity Tag of the resource
- Location string
- Specifies the location of the resource.
- Provisioning
State string - Provisioning state of the resource
- Etag string
- Entity Tag of the resource
- Location string
- Specifies the location of the resource.
- provisioning
State String - Provisioning state of the resource
- etag String
- Entity Tag of the resource
- location String
- Specifies the location of the resource.
- provisioning
State string - Provisioning state of the resource
- etag string
- Entity Tag of the resource
- location string
- Specifies the location of the resource.
- provisioning_
state str - Provisioning state of the resource
- etag str
- Entity Tag of the resource
- location str
- Specifies the location of the resource.
- provisioning
State String - Provisioning state of the resource
- etag String
- Entity Tag of the resource
- location String
- Specifies the location of the resource.
AlexaChannel, AlexaChannelArgs
- 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, AlexaChannelPropertiesArgs
- 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, AlexaChannelPropertiesResponseArgs
- 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, AlexaChannelResponseArgs
- 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, DirectLineChannelArgs
- 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, DirectLineChannelPropertiesArgs
- Direct
Line stringEmbed Code - Direct Line embed code of the resource
- Extension
Key1 string - The extensionKey1
- Extension
Key2 string - The extensionKey2
- 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
- Extension
Key1 string - The extensionKey1
- Extension
Key2 string - The extensionKey2
- Sites
[]Direct
Line Site - The list of Direct Line sites
- direct
Line StringEmbed Code - Direct Line embed code of the resource
- extension
Key1 String - The extensionKey1
- extension
Key2 String - The extensionKey2
- sites
List<Direct
Line Site> - The list of Direct Line sites
- direct
Line stringEmbed Code - Direct Line embed code of the resource
- extension
Key1 string - The extensionKey1
- extension
Key2 string - The extensionKey2
- sites
Direct
Line Site[] - The list of Direct Line sites
- direct_
line_ strembed_ code - Direct Line embed code of the resource
- extension_
key1 str - The extensionKey1
- extension_
key2 str - The extensionKey2
- sites
Sequence[Direct
Line Site] - The list of Direct Line sites
- direct
Line StringEmbed Code - Direct Line embed code of the resource
- extension
Key1 String - The extensionKey1
- extension
Key2 String - The extensionKey2
- sites List<Property Map>
- The list of Direct Line sites
DirectLineChannelPropertiesResponse, DirectLineChannelPropertiesResponseArgs
- Direct
Line stringEmbed Code - Direct Line embed code of the resource
- Extension
Key1 string - The extensionKey1
- Extension
Key2 string - The extensionKey2
- 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
- Extension
Key1 string - The extensionKey1
- Extension
Key2 string - The extensionKey2
- Sites
[]Direct
Line Site Response - The list of Direct Line sites
- direct
Line StringEmbed Code - Direct Line embed code of the resource
- extension
Key1 String - The extensionKey1
- extension
Key2 String - The extensionKey2
- sites
List<Direct
Line Site Response> - The list of Direct Line sites
- direct
Line stringEmbed Code - Direct Line embed code of the resource
- extension
Key1 string - The extensionKey1
- extension
Key2 string - The extensionKey2
- sites
Direct
Line Site Response[] - The list of Direct Line sites
- direct_
line_ strembed_ code - Direct Line embed code of the resource
- extension_
key1 str - The extensionKey1
- extension_
key2 str - The extensionKey2
- sites
Sequence[Direct
Line Site Response] - The list of Direct Line sites
- direct
Line StringEmbed Code - Direct Line embed code of the resource
- extension
Key1 String - The extensionKey1
- extension
Key2 String - The extensionKey2
- sites List<Property Map>
- The list of Direct Line sites
DirectLineChannelResponse, DirectLineChannelResponseArgs
- 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, DirectLineSiteArgs
- 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 V3 protocol.
- Site
Name string - Site name
- App
Id string - DirectLine application id
- ETag string
- Entity Tag
- Is
Block boolUser Upload Enabled - Whether this site is enabled for block user upload.
- Is
Detailed boolLogging Enabled - Whether this site is disabled detailed logging for
- Is
Endpoint boolParameters Enabled - Whether this site is EndpointParameters enabled for channel
- Is
No boolStorage Enabled - Whether this no-storage site is disabled detailed logging for
- Is
Secure boolSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- Is
Web boolChat Speech Enabled - Whether this site is enabled for Webchat Speech
- Is
Webchat boolPreview Enabled - Whether this site is enabled for preview versions of Webchat
- Tenant
Id string - Tenant Id
- 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 V3 protocol.
- Site
Name string - Site name
- App
Id string - DirectLine application id
- ETag string
- Entity Tag
- Is
Block boolUser Upload Enabled - Whether this site is enabled for block user upload.
- Is
Detailed boolLogging Enabled - Whether this site is disabled detailed logging for
- Is
Endpoint boolParameters Enabled - Whether this site is EndpointParameters enabled for channel
- Is
No boolStorage Enabled - Whether this no-storage site is disabled detailed logging for
- Is
Secure boolSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- Is
Web boolChat Speech Enabled - Whether this site is enabled for Webchat Speech
- Is
Webchat boolPreview Enabled - Whether this site is enabled for preview versions of Webchat
- Tenant
Id string - Tenant Id
- 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 V3 protocol.
- site
Name String - Site name
- app
Id String - DirectLine application id
- e
Tag String - Entity Tag
- is
Block BooleanUser Upload Enabled - Whether this site is enabled for block user upload.
- is
Detailed BooleanLogging Enabled - Whether this site is disabled detailed logging for
- is
Endpoint BooleanParameters Enabled - Whether this site is EndpointParameters enabled for channel
- is
No BooleanStorage Enabled - Whether this no-storage site is disabled detailed logging for
- is
Secure BooleanSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- is
Web BooleanChat Speech Enabled - Whether this site is enabled for Webchat Speech
- is
Webchat BooleanPreview Enabled - Whether this site is enabled for preview versions of Webchat
- tenant
Id String - Tenant Id
- trusted
Origins List<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 V3 protocol.
- site
Name string - Site name
- app
Id string - DirectLine application id
- e
Tag string - Entity Tag
- is
Block booleanUser Upload Enabled - Whether this site is enabled for block user upload.
- is
Detailed booleanLogging Enabled - Whether this site is disabled detailed logging for
- is
Endpoint booleanParameters Enabled - Whether this site is EndpointParameters enabled for channel
- is
No booleanStorage Enabled - Whether this no-storage site is disabled detailed logging for
- is
Secure booleanSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- is
Web booleanChat Speech Enabled - Whether this site is enabled for Webchat Speech
- is
Webchat booleanPreview Enabled - Whether this site is enabled for preview versions of Webchat
- tenant
Id string - Tenant Id
- 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 V3 protocol.
- site_
name str - Site name
- app_
id str - DirectLine application id
- e_
tag str - Entity Tag
- is_
block_ booluser_ upload_ enabled - Whether this site is enabled for block user upload.
- is_
detailed_ boollogging_ enabled - Whether this site is disabled detailed logging for
- is_
endpoint_ boolparameters_ enabled - Whether this site is EndpointParameters enabled for channel
- is_
no_ boolstorage_ enabled - Whether this no-storage site is disabled detailed logging for
- is_
secure_ boolsite_ enabled - Whether this site is enabled for authentication with Bot Framework.
- is_
web_ boolchat_ speech_ enabled - Whether this site is enabled for Webchat Speech
- is_
webchat_ boolpreview_ enabled - Whether this site is enabled for preview versions of Webchat
- tenant_
id str - Tenant Id
- 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 V3 protocol.
- site
Name String - Site name
- app
Id String - DirectLine application id
- e
Tag String - Entity Tag
- is
Block BooleanUser Upload Enabled - Whether this site is enabled for block user upload.
- is
Detailed BooleanLogging Enabled - Whether this site is disabled detailed logging for
- is
Endpoint BooleanParameters Enabled - Whether this site is EndpointParameters enabled for channel
- is
No BooleanStorage Enabled - Whether this no-storage site is disabled detailed logging for
- is
Secure BooleanSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- is
Web BooleanChat Speech Enabled - Whether this site is enabled for Webchat Speech
- is
Webchat BooleanPreview Enabled - Whether this site is enabled for preview versions of Webchat
- tenant
Id String - Tenant Id
- trusted
Origins List<String> - List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
DirectLineSiteResponse, DirectLineSiteResponseArgs
- Is
Enabled bool - Whether this site is enabled for DirectLine channel
- Is
Token boolEnabled - Whether this site is token enabled for 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 V3 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
- App
Id string - DirectLine application id
- ETag string
- Entity Tag
- Is
Block boolUser Upload Enabled - Whether this site is enabled for block user upload.
- Is
Detailed boolLogging Enabled - Whether this site is disabled detailed logging for
- Is
Endpoint boolParameters Enabled - Whether this site is EndpointParameters enabled for channel
- Is
No boolStorage Enabled - Whether this no-storage site is disabled detailed logging for
- Is
Secure boolSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- Is
Web boolChat Speech Enabled - Whether this site is enabled for Webchat Speech
- Is
Webchat boolPreview Enabled - Whether this site is enabled for preview versions of Webchat
- Tenant
Id string - Tenant Id
- 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
Token boolEnabled - Whether this site is token enabled for 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 V3 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
- App
Id string - DirectLine application id
- ETag string
- Entity Tag
- Is
Block boolUser Upload Enabled - Whether this site is enabled for block user upload.
- Is
Detailed boolLogging Enabled - Whether this site is disabled detailed logging for
- Is
Endpoint boolParameters Enabled - Whether this site is EndpointParameters enabled for channel
- Is
No boolStorage Enabled - Whether this no-storage site is disabled detailed logging for
- Is
Secure boolSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- Is
Web boolChat Speech Enabled - Whether this site is enabled for Webchat Speech
- Is
Webchat boolPreview Enabled - Whether this site is enabled for preview versions of Webchat
- Tenant
Id string - Tenant Id
- 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
Token BooleanEnabled - Whether this site is token enabled for 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 V3 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
- app
Id String - DirectLine application id
- e
Tag String - Entity Tag
- is
Block BooleanUser Upload Enabled - Whether this site is enabled for block user upload.
- is
Detailed BooleanLogging Enabled - Whether this site is disabled detailed logging for
- is
Endpoint BooleanParameters Enabled - Whether this site is EndpointParameters enabled for channel
- is
No BooleanStorage Enabled - Whether this no-storage site is disabled detailed logging for
- is
Secure BooleanSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- is
Web BooleanChat Speech Enabled - Whether this site is enabled for Webchat Speech
- is
Webchat BooleanPreview Enabled - Whether this site is enabled for preview versions of Webchat
- tenant
Id String - Tenant Id
- trusted
Origins List<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
Token booleanEnabled - Whether this site is token enabled for 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 V3 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
- app
Id string - DirectLine application id
- e
Tag string - Entity Tag
- is
Block booleanUser Upload Enabled - Whether this site is enabled for block user upload.
- is
Detailed booleanLogging Enabled - Whether this site is disabled detailed logging for
- is
Endpoint booleanParameters Enabled - Whether this site is EndpointParameters enabled for channel
- is
No booleanStorage Enabled - Whether this no-storage site is disabled detailed logging for
- is
Secure booleanSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- is
Web booleanChat Speech Enabled - Whether this site is enabled for Webchat Speech
- is
Webchat booleanPreview Enabled - Whether this site is enabled for preview versions of Webchat
- tenant
Id string - Tenant Id
- 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_
token_ boolenabled - Whether this site is token enabled for 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 V3 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
- app_
id str - DirectLine application id
- e_
tag str - Entity Tag
- is_
block_ booluser_ upload_ enabled - Whether this site is enabled for block user upload.
- is_
detailed_ boollogging_ enabled - Whether this site is disabled detailed logging for
- is_
endpoint_ boolparameters_ enabled - Whether this site is EndpointParameters enabled for channel
- is_
no_ boolstorage_ enabled - Whether this no-storage site is disabled detailed logging for
- is_
secure_ boolsite_ enabled - Whether this site is enabled for authentication with Bot Framework.
- is_
web_ boolchat_ speech_ enabled - Whether this site is enabled for Webchat Speech
- is_
webchat_ boolpreview_ enabled - Whether this site is enabled for preview versions of Webchat
- tenant_
id str - Tenant Id
- 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
Token BooleanEnabled - Whether this site is token enabled for 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 V3 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
- app
Id String - DirectLine application id
- e
Tag String - Entity Tag
- is
Block BooleanUser Upload Enabled - Whether this site is enabled for block user upload.
- is
Detailed BooleanLogging Enabled - Whether this site is disabled detailed logging for
- is
Endpoint BooleanParameters Enabled - Whether this site is EndpointParameters enabled for channel
- is
No BooleanStorage Enabled - Whether this no-storage site is disabled detailed logging for
- is
Secure BooleanSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- is
Web BooleanChat Speech Enabled - Whether this site is enabled for Webchat Speech
- is
Webchat BooleanPreview Enabled - Whether this site is enabled for preview versions of Webchat
- tenant
Id String - Tenant Id
- trusted
Origins List<String> - List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
DirectLineSpeechChannel, DirectLineSpeechChannelArgs
- 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, DirectLineSpeechChannelPropertiesArgs
- Cognitive
Service stringRegion - The cognitive service region with this channel registration.
- Cognitive
Service stringResource Id - The cognitive service id 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 stringResource Id - The cognitive service id 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 StringResource Id - The cognitive service id 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 stringResource Id - The cognitive service id 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_ strresource_ id - The cognitive service id 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 StringResource Id - The cognitive service id 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, DirectLineSpeechChannelPropertiesResponseArgs
- Cognitive
Service stringRegion - The cognitive service region with this channel registration.
- Cognitive
Service stringResource Id - The cognitive service id 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 stringResource Id - The cognitive service id 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 StringResource Id - The cognitive service id 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 stringResource Id - The cognitive service id 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_ strresource_ id - The cognitive service id 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 StringResource Id - The cognitive service id 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, DirectLineSpeechChannelResponseArgs
- 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, EmailChannelArgs
- 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, EmailChannelPropertiesArgs
- Email
Address string - The email address
- Is
Enabled bool - Whether this channel is enabled for the bot
- Auth
Method double - Email channel auth method. 0 Password (Default); 1 Graph.
- Magic
Code string - The magic code for setting up the modern authentication.
- 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
- Auth
Method float64 - Email channel auth method. 0 Password (Default); 1 Graph.
- Magic
Code string - The magic code for setting up the modern authentication.
- 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
- auth
Method Double - Email channel auth method. 0 Password (Default); 1 Graph.
- magic
Code String - The magic code for setting up the modern authentication.
- 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
- auth
Method number - Email channel auth method. 0 Password (Default); 1 Graph.
- magic
Code string - The magic code for setting up the modern authentication.
- 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
- auth_
method float - Email channel auth method. 0 Password (Default); 1 Graph.
- magic_
code str - The magic code for setting up the modern authentication.
- 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
- auth
Method Number - Email channel auth method. 0 Password (Default); 1 Graph.
- magic
Code String - The magic code for setting up the modern authentication.
- password String
- The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
EmailChannelPropertiesResponse, EmailChannelPropertiesResponseArgs
- Email
Address string - The email address
- Is
Enabled bool - Whether this channel is enabled for the bot
- Auth
Method double - Email channel auth method. 0 Password (Default); 1 Graph.
- Magic
Code string - The magic code for setting up the modern authentication.
- 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
- Auth
Method float64 - Email channel auth method. 0 Password (Default); 1 Graph.
- Magic
Code string - The magic code for setting up the modern authentication.
- 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
- auth
Method Double - Email channel auth method. 0 Password (Default); 1 Graph.
- magic
Code String - The magic code for setting up the modern authentication.
- 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
- auth
Method number - Email channel auth method. 0 Password (Default); 1 Graph.
- magic
Code string - The magic code for setting up the modern authentication.
- 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
- auth_
method float - Email channel auth method. 0 Password (Default); 1 Graph.
- magic_
code str - The magic code for setting up the modern authentication.
- 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
- auth
Method Number - Email channel auth method. 0 Password (Default); 1 Graph.
- magic
Code String - The magic code for setting up the modern authentication.
- password String
- The password for the email address. Value only returned through POST to the action Channel List API, otherwise empty.
EmailChannelResponse, EmailChannelResponseArgs
- 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, FacebookChannelArgs
- 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, FacebookChannelPropertiesArgs
- 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
List<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
- 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 List<Property Map>
- The list of Facebook pages
FacebookChannelPropertiesResponse, FacebookChannelPropertiesResponseArgs
- 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<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
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<Property Map>
- The list of Facebook pages
FacebookChannelResponse, FacebookChannelResponseArgs
- 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, FacebookPageArgs
- 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, FacebookPageResponseArgs
- 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, KikChannelArgs
- 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, KikChannelPropertiesArgs
- 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, KikChannelPropertiesResponseArgs
- 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, KikChannelResponseArgs
- 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, KindArgs
- 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, LineChannelArgs
- 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, LineChannelPropertiesArgs
- 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 List<LineRegistration> - 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<Property Map> - The list of line channel registrations
LineChannelPropertiesResponse, LineChannelPropertiesResponseArgs
- 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 List<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 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<Property Map> - The list of line channel registrations
LineChannelResponse, LineChannelResponseArgs
- 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, LineRegistrationArgs
- 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, LineRegistrationResponseArgs
- 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
M365Extensions, M365ExtensionsArgs
M365ExtensionsResponse, M365ExtensionsResponseArgs
- Provisioning
State string - Provisioning state of the resource
- Etag string
- Entity Tag of the resource
- Location string
- Specifies the location of the resource.
- Provisioning
State string - Provisioning state of the resource
- Etag string
- Entity Tag of the resource
- Location string
- Specifies the location of the resource.
- provisioning
State String - Provisioning state of the resource
- etag String
- Entity Tag of the resource
- location String
- Specifies the location of the resource.
- provisioning
State string - Provisioning state of the resource
- etag string
- Entity Tag of the resource
- location string
- Specifies the location of the resource.
- provisioning_
state str - Provisioning state of the resource
- etag str
- Entity Tag of the resource
- location str
- Specifies the location of the resource.
- provisioning
State String - Provisioning state of the resource
- etag String
- Entity Tag of the resource
- location String
- Specifies the location of the resource.
MsTeamsChannel, MsTeamsChannelArgs
- 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, MsTeamsChannelPropertiesArgs
- Is
Enabled bool - Whether this channel is enabled for the bot
- Accepted
Terms bool - Whether this channel accepted terms
- Calling
Webhook string - 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
Webhook string - 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
Webhook String - 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
Webhook string - 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_
webhook str - 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
Webhook String - 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, MsTeamsChannelPropertiesResponseArgs
- Is
Enabled bool - Whether this channel is enabled for the bot
- Accepted
Terms bool - Whether this channel accepted terms
- Calling
Webhook string - 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
Webhook string - 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
Webhook String - 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
Webhook string - 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_
webhook str - 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
Webhook String - 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, MsTeamsChannelResponseArgs
- 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
Omnichannel, OmnichannelArgs
OmnichannelResponse, OmnichannelResponseArgs
- Provisioning
State string - Provisioning state of the resource
- Etag string
- Entity Tag of the resource
- Location string
- Specifies the location of the resource.
- Provisioning
State string - Provisioning state of the resource
- Etag string
- Entity Tag of the resource
- Location string
- Specifies the location of the resource.
- provisioning
State String - Provisioning state of the resource
- etag String
- Entity Tag of the resource
- location String
- Specifies the location of the resource.
- provisioning
State string - Provisioning state of the resource
- etag string
- Entity Tag of the resource
- location string
- Specifies the location of the resource.
- provisioning_
state str - Provisioning state of the resource
- etag str
- Entity Tag of the resource
- location str
- Specifies the location of the resource.
- provisioning
State String - Provisioning state of the resource
- etag String
- Entity Tag of the resource
- location String
- Specifies the location of the resource.
OutlookChannel, OutlookChannelArgs
OutlookChannelResponse, OutlookChannelResponseArgs
- Provisioning
State string - Provisioning state of the resource
- Etag string
- Entity Tag of the resource
- Location string
- Specifies the location of the resource.
- Provisioning
State string - Provisioning state of the resource
- Etag string
- Entity Tag of the resource
- Location string
- Specifies the location of the resource.
- provisioning
State String - Provisioning state of the resource
- etag String
- Entity Tag of the resource
- location String
- Specifies the location of the resource.
- provisioning
State string - Provisioning state of the resource
- etag string
- Entity Tag of the resource
- location string
- Specifies the location of the resource.
- provisioning_
state str - Provisioning state of the resource
- etag str
- Entity Tag of the resource
- location str
- Specifies the location of the resource.
- provisioning
State String - Provisioning state of the resource
- etag String
- Entity Tag of the resource
- location String
- Specifies the location of the resource.
SearchAssistant, SearchAssistantArgs
SearchAssistantResponse, SearchAssistantResponseArgs
- Provisioning
State string - Provisioning state of the resource
- Etag string
- Entity Tag of the resource
- Location string
- Specifies the location of the resource.
- Provisioning
State string - Provisioning state of the resource
- Etag string
- Entity Tag of the resource
- Location string
- Specifies the location of the resource.
- provisioning
State String - Provisioning state of the resource
- etag String
- Entity Tag of the resource
- location String
- Specifies the location of the resource.
- provisioning
State string - Provisioning state of the resource
- etag string
- Entity Tag of the resource
- location string
- Specifies the location of the resource.
- provisioning_
state str - Provisioning state of the resource
- etag str
- Entity Tag of the resource
- location str
- Specifies the location of the resource.
- provisioning
State String - Provisioning state of the resource
- etag String
- Entity Tag of the resource
- location String
- Specifies the location of the resource.
Sku, SkuArgs
- Name
string | Pulumi.
Azure Native. Bot Service. Sku Name - The sku name
- name String | "F0" | "S1"
- The sku name
SkuName, SkuNameArgs
- 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, SkuResponseArgs
SkypeChannel, SkypeChannelArgs
- 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, SkypeChannelPropertiesArgs
- 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, SkypeChannelPropertiesResponseArgs
- 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, SkypeChannelResponseArgs
- 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, SlackChannelArgs
- 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, SlackChannelPropertiesArgs
- 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
- Scopes string
- The Slack permission scopes.
- 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
- Scopes string
- The Slack permission scopes.
- 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
- scopes String
- The Slack permission scopes.
- 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
- scopes string
- The Slack permission scopes.
- 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
- scopes str
- The Slack permission scopes.
- 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
- scopes String
- The Slack permission scopes.
- 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, SlackChannelPropertiesResponseArgs
- 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
- Scopes string
- The Slack permission scopes.
- 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
- Scopes string
- The Slack permission scopes.
- 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
- scopes String
- The Slack permission scopes.
- 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
- scopes string
- The Slack permission scopes.
- 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
- scopes str
- The Slack permission scopes.
- 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
- scopes String
- The Slack permission scopes.
- 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, SlackChannelResponseArgs
- 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, SmsChannelArgs
- 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, SmsChannelPropertiesArgs
- 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, SmsChannelPropertiesResponseArgs
- 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, SmsChannelResponseArgs
- 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, TelegramChannelArgs
- 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, TelegramChannelPropertiesArgs
- 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, TelegramChannelPropertiesResponseArgs
- 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, TelegramChannelResponseArgs
- 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
TelephonyChannel, TelephonyChannelArgs
- Etag string
- Entity Tag of the resource
- Location string
- Specifies the location of the resource.
- Properties
Pulumi.
Azure Native. Bot Service. Inputs. Telephony Channel Properties - The set of properties specific to Telephony channel resource
- Etag string
- Entity Tag of the resource
- Location string
- Specifies the location of the resource.
- Properties
Telephony
Channel Properties - The set of properties specific to Telephony channel resource
- etag String
- Entity Tag of the resource
- location String
- Specifies the location of the resource.
- properties
Telephony
Channel Properties - The set of properties specific to Telephony channel resource
- etag string
- Entity Tag of the resource
- location string
- Specifies the location of the resource.
- properties
Telephony
Channel Properties - The set of properties specific to Telephony channel resource
- etag str
- Entity Tag of the resource
- location str
- Specifies the location of the resource.
- properties
Telephony
Channel Properties - The set of properties specific to Telephony 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 Telephony channel resource
TelephonyChannelProperties, TelephonyChannelPropertiesArgs
- Api
Configurations List<Pulumi.Azure Native. Bot Service. Inputs. Telephony Channel Resource Api Configuration> - The list of Telephony api configuration
- Cognitive
Service stringRegion - The extensionKey2
- Cognitive
Service stringSubscription Key - The extensionKey1
- Default
Locale string - The default locale of the channel
- Is
Enabled bool - Whether the channel is enabled
- Phone
Numbers List<Pulumi.Azure Native. Bot Service. Inputs. Telephony Phone Numbers> - The list of Telephony phone numbers
- string
- The premium SKU applied to the channel
- Api
Configurations []TelephonyChannel Resource Api Configuration - The list of Telephony api configuration
- Cognitive
Service stringRegion - The extensionKey2
- Cognitive
Service stringSubscription Key - The extensionKey1
- Default
Locale string - The default locale of the channel
- Is
Enabled bool - Whether the channel is enabled
- Phone
Numbers []TelephonyPhone Numbers - The list of Telephony phone numbers
- string
- The premium SKU applied to the channel
- api
Configurations List<TelephonyChannel Resource Api Configuration> - The list of Telephony api configuration
- cognitive
Service StringRegion - The extensionKey2
- cognitive
Service StringSubscription Key - The extensionKey1
- default
Locale String - The default locale of the channel
- is
Enabled Boolean - Whether the channel is enabled
- phone
Numbers List<TelephonyPhone Numbers> - The list of Telephony phone numbers
- String
- The premium SKU applied to the channel
- api
Configurations TelephonyChannel Resource Api Configuration[] - The list of Telephony api configuration
- cognitive
Service stringRegion - The extensionKey2
- cognitive
Service stringSubscription Key - The extensionKey1
- default
Locale string - The default locale of the channel
- is
Enabled boolean - Whether the channel is enabled
- phone
Numbers TelephonyPhone Numbers[] - The list of Telephony phone numbers
- string
- The premium SKU applied to the channel
- api_
configurations Sequence[TelephonyChannel Resource Api Configuration] - The list of Telephony api configuration
- cognitive_
service_ strregion - The extensionKey2
- cognitive_
service_ strsubscription_ key - The extensionKey1
- default_
locale str - The default locale of the channel
- is_
enabled bool - Whether the channel is enabled
- phone_
numbers Sequence[TelephonyPhone Numbers] - The list of Telephony phone numbers
- str
- The premium SKU applied to the channel
- api
Configurations List<Property Map> - The list of Telephony api configuration
- cognitive
Service StringRegion - The extensionKey2
- cognitive
Service StringSubscription Key - The extensionKey1
- default
Locale String - The default locale of the channel
- is
Enabled Boolean - Whether the channel is enabled
- phone
Numbers List<Property Map> - The list of Telephony phone numbers
- String
- The premium SKU applied to the channel
TelephonyChannelPropertiesResponse, TelephonyChannelPropertiesResponseArgs
- Api
Configurations List<Pulumi.Azure Native. Bot Service. Inputs. Telephony Channel Resource Api Configuration Response> - The list of Telephony api configuration
- Cognitive
Service stringRegion - The extensionKey2
- Cognitive
Service stringSubscription Key - The extensionKey1
- Default
Locale string - The default locale of the channel
- Is
Enabled bool - Whether the channel is enabled
- Phone
Numbers List<Pulumi.Azure Native. Bot Service. Inputs. Telephony Phone Numbers Response> - The list of Telephony phone numbers
- string
- The premium SKU applied to the channel
- Api
Configurations []TelephonyChannel Resource Api Configuration Response - The list of Telephony api configuration
- Cognitive
Service stringRegion - The extensionKey2
- Cognitive
Service stringSubscription Key - The extensionKey1
- Default
Locale string - The default locale of the channel
- Is
Enabled bool - Whether the channel is enabled
- Phone
Numbers []TelephonyPhone Numbers Response - The list of Telephony phone numbers
- string
- The premium SKU applied to the channel
- api
Configurations List<TelephonyChannel Resource Api Configuration Response> - The list of Telephony api configuration
- cognitive
Service StringRegion - The extensionKey2
- cognitive
Service StringSubscription Key - The extensionKey1
- default
Locale String - The default locale of the channel
- is
Enabled Boolean - Whether the channel is enabled
- phone
Numbers List<TelephonyPhone Numbers Response> - The list of Telephony phone numbers
- String
- The premium SKU applied to the channel
- api
Configurations TelephonyChannel Resource Api Configuration Response[] - The list of Telephony api configuration
- cognitive
Service stringRegion - The extensionKey2
- cognitive
Service stringSubscription Key - The extensionKey1
- default
Locale string - The default locale of the channel
- is
Enabled boolean - Whether the channel is enabled
- phone
Numbers TelephonyPhone Numbers Response[] - The list of Telephony phone numbers
- string
- The premium SKU applied to the channel
- api_
configurations Sequence[TelephonyChannel Resource Api Configuration Response] - The list of Telephony api configuration
- cognitive_
service_ strregion - The extensionKey2
- cognitive_
service_ strsubscription_ key - The extensionKey1
- default_
locale str - The default locale of the channel
- is_
enabled bool - Whether the channel is enabled
- phone_
numbers Sequence[TelephonyPhone Numbers Response] - The list of Telephony phone numbers
- str
- The premium SKU applied to the channel
- api
Configurations List<Property Map> - The list of Telephony api configuration
- cognitive
Service StringRegion - The extensionKey2
- cognitive
Service StringSubscription Key - The extensionKey1
- default
Locale String - The default locale of the channel
- is
Enabled Boolean - Whether the channel is enabled
- phone
Numbers List<Property Map> - The list of Telephony phone numbers
- String
- The premium SKU applied to the channel
TelephonyChannelResourceApiConfiguration, TelephonyChannelResourceApiConfigurationArgs
- Cognitive
Service stringRegion - The cognitive service region.
- Cognitive
Service stringResource Id - The cognitive service resourceId.
- Cognitive
Service stringSubscription Key - The cognitive service subscription key.
- Default
Locale string - The default locale.
- Id string
- The id of config.
- Provider
Name string - The provider name.
- Cognitive
Service stringRegion - The cognitive service region.
- Cognitive
Service stringResource Id - The cognitive service resourceId.
- Cognitive
Service stringSubscription Key - The cognitive service subscription key.
- Default
Locale string - The default locale.
- Id string
- The id of config.
- Provider
Name string - The provider name.
- cognitive
Service StringRegion - The cognitive service region.
- cognitive
Service StringResource Id - The cognitive service resourceId.
- cognitive
Service StringSubscription Key - The cognitive service subscription key.
- default
Locale String - The default locale.
- id String
- The id of config.
- provider
Name String - The provider name.
- cognitive
Service stringRegion - The cognitive service region.
- cognitive
Service stringResource Id - The cognitive service resourceId.
- cognitive
Service stringSubscription Key - The cognitive service subscription key.
- default
Locale string - The default locale.
- id string
- The id of config.
- provider
Name string - The provider name.
- cognitive_
service_ strregion - The cognitive service region.
- cognitive_
service_ strresource_ id - The cognitive service resourceId.
- cognitive_
service_ strsubscription_ key - The cognitive service subscription key.
- default_
locale str - The default locale.
- id str
- The id of config.
- provider_
name str - The provider name.
- cognitive
Service StringRegion - The cognitive service region.
- cognitive
Service StringResource Id - The cognitive service resourceId.
- cognitive
Service StringSubscription Key - The cognitive service subscription key.
- default
Locale String - The default locale.
- id String
- The id of config.
- provider
Name String - The provider name.
TelephonyChannelResourceApiConfigurationResponse, TelephonyChannelResourceApiConfigurationResponseArgs
- Cognitive
Service stringRegion - The cognitive service region.
- Cognitive
Service stringResource Id - The cognitive service resourceId.
- Cognitive
Service stringSubscription Key - The cognitive service subscription key.
- Default
Locale string - The default locale.
- Id string
- The id of config.
- Provider
Name string - The provider name.
- Cognitive
Service stringRegion - The cognitive service region.
- Cognitive
Service stringResource Id - The cognitive service resourceId.
- Cognitive
Service stringSubscription Key - The cognitive service subscription key.
- Default
Locale string - The default locale.
- Id string
- The id of config.
- Provider
Name string - The provider name.
- cognitive
Service StringRegion - The cognitive service region.
- cognitive
Service StringResource Id - The cognitive service resourceId.
- cognitive
Service StringSubscription Key - The cognitive service subscription key.
- default
Locale String - The default locale.
- id String
- The id of config.
- provider
Name String - The provider name.
- cognitive
Service stringRegion - The cognitive service region.
- cognitive
Service stringResource Id - The cognitive service resourceId.
- cognitive
Service stringSubscription Key - The cognitive service subscription key.
- default
Locale string - The default locale.
- id string
- The id of config.
- provider
Name string - The provider name.
- cognitive_
service_ strregion - The cognitive service region.
- cognitive_
service_ strresource_ id - The cognitive service resourceId.
- cognitive_
service_ strsubscription_ key - The cognitive service subscription key.
- default_
locale str - The default locale.
- id str
- The id of config.
- provider_
name str - The provider name.
- cognitive
Service StringRegion - The cognitive service region.
- cognitive
Service StringResource Id - The cognitive service resourceId.
- cognitive
Service StringSubscription Key - The cognitive service subscription key.
- default
Locale String - The default locale.
- id String
- The id of config.
- provider
Name String - The provider name.
TelephonyChannelResponse, TelephonyChannelResponseArgs
- 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. Telephony Channel Properties Response - The set of properties specific to Telephony 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
Telephony
Channel Properties Response - The set of properties specific to Telephony 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
Telephony
Channel Properties Response - The set of properties specific to Telephony 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
Telephony
Channel Properties Response - The set of properties specific to Telephony 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
Telephony
Channel Properties Response - The set of properties specific to Telephony 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 Telephony channel resource
TelephonyPhoneNumbers, TelephonyPhoneNumbersArgs
- Acs
Endpoint string - The endpoint of ACS.
- Acs
Resource stringId - The resource id of ACS.
- Acs
Secret string - The secret of ACS.
- Cognitive
Service stringRegion - The service region of cognitive service.
- Cognitive
Service stringResource Id - The resource id of cognitive service.
- Cognitive
Service stringSubscription Key - The subscription key of cognitive service.
- Default
Locale string - The default locale of the phone number.
- Id string
- The element id.
- Offer
Type string - Optional Property that will determine the offering type of the phone.
- Phone
Number string - The phone number.
- Acs
Endpoint string - The endpoint of ACS.
- Acs
Resource stringId - The resource id of ACS.
- Acs
Secret string - The secret of ACS.
- Cognitive
Service stringRegion - The service region of cognitive service.
- Cognitive
Service stringResource Id - The resource id of cognitive service.
- Cognitive
Service stringSubscription Key - The subscription key of cognitive service.
- Default
Locale string - The default locale of the phone number.
- Id string
- The element id.
- Offer
Type string - Optional Property that will determine the offering type of the phone.
- Phone
Number string - The phone number.
- acs
Endpoint String - The endpoint of ACS.
- acs
Resource StringId - The resource id of ACS.
- acs
Secret String - The secret of ACS.
- cognitive
Service StringRegion - The service region of cognitive service.
- cognitive
Service StringResource Id - The resource id of cognitive service.
- cognitive
Service StringSubscription Key - The subscription key of cognitive service.
- default
Locale String - The default locale of the phone number.
- id String
- The element id.
- offer
Type String - Optional Property that will determine the offering type of the phone.
- phone
Number String - The phone number.
- acs
Endpoint string - The endpoint of ACS.
- acs
Resource stringId - The resource id of ACS.
- acs
Secret string - The secret of ACS.
- cognitive
Service stringRegion - The service region of cognitive service.
- cognitive
Service stringResource Id - The resource id of cognitive service.
- cognitive
Service stringSubscription Key - The subscription key of cognitive service.
- default
Locale string - The default locale of the phone number.
- id string
- The element id.
- offer
Type string - Optional Property that will determine the offering type of the phone.
- phone
Number string - The phone number.
- acs_
endpoint str - The endpoint of ACS.
- acs_
resource_ strid - The resource id of ACS.
- acs_
secret str - The secret of ACS.
- cognitive_
service_ strregion - The service region of cognitive service.
- cognitive_
service_ strresource_ id - The resource id of cognitive service.
- cognitive_
service_ strsubscription_ key - The subscription key of cognitive service.
- default_
locale str - The default locale of the phone number.
- id str
- The element id.
- offer_
type str - Optional Property that will determine the offering type of the phone.
- phone_
number str - The phone number.
- acs
Endpoint String - The endpoint of ACS.
- acs
Resource StringId - The resource id of ACS.
- acs
Secret String - The secret of ACS.
- cognitive
Service StringRegion - The service region of cognitive service.
- cognitive
Service StringResource Id - The resource id of cognitive service.
- cognitive
Service StringSubscription Key - The subscription key of cognitive service.
- default
Locale String - The default locale of the phone number.
- id String
- The element id.
- offer
Type String - Optional Property that will determine the offering type of the phone.
- phone
Number String - The phone number.
TelephonyPhoneNumbersResponse, TelephonyPhoneNumbersResponseArgs
- Acs
Endpoint string - The endpoint of ACS.
- Acs
Resource stringId - The resource id of ACS.
- Acs
Secret string - The secret of ACS.
- Cognitive
Service stringRegion - The service region of cognitive service.
- Cognitive
Service stringResource Id - The resource id of cognitive service.
- Cognitive
Service stringSubscription Key - The subscription key of cognitive service.
- Default
Locale string - The default locale of the phone number.
- Id string
- The element id.
- Offer
Type string - Optional Property that will determine the offering type of the phone.
- Phone
Number string - The phone number.
- Acs
Endpoint string - The endpoint of ACS.
- Acs
Resource stringId - The resource id of ACS.
- Acs
Secret string - The secret of ACS.
- Cognitive
Service stringRegion - The service region of cognitive service.
- Cognitive
Service stringResource Id - The resource id of cognitive service.
- Cognitive
Service stringSubscription Key - The subscription key of cognitive service.
- Default
Locale string - The default locale of the phone number.
- Id string
- The element id.
- Offer
Type string - Optional Property that will determine the offering type of the phone.
- Phone
Number string - The phone number.
- acs
Endpoint String - The endpoint of ACS.
- acs
Resource StringId - The resource id of ACS.
- acs
Secret String - The secret of ACS.
- cognitive
Service StringRegion - The service region of cognitive service.
- cognitive
Service StringResource Id - The resource id of cognitive service.
- cognitive
Service StringSubscription Key - The subscription key of cognitive service.
- default
Locale String - The default locale of the phone number.
- id String
- The element id.
- offer
Type String - Optional Property that will determine the offering type of the phone.
- phone
Number String - The phone number.
- acs
Endpoint string - The endpoint of ACS.
- acs
Resource stringId - The resource id of ACS.
- acs
Secret string - The secret of ACS.
- cognitive
Service stringRegion - The service region of cognitive service.
- cognitive
Service stringResource Id - The resource id of cognitive service.
- cognitive
Service stringSubscription Key - The subscription key of cognitive service.
- default
Locale string - The default locale of the phone number.
- id string
- The element id.
- offer
Type string - Optional Property that will determine the offering type of the phone.
- phone
Number string - The phone number.
- acs_
endpoint str - The endpoint of ACS.
- acs_
resource_ strid - The resource id of ACS.
- acs_
secret str - The secret of ACS.
- cognitive_
service_ strregion - The service region of cognitive service.
- cognitive_
service_ strresource_ id - The resource id of cognitive service.
- cognitive_
service_ strsubscription_ key - The subscription key of cognitive service.
- default_
locale str - The default locale of the phone number.
- id str
- The element id.
- offer_
type str - Optional Property that will determine the offering type of the phone.
- phone_
number str - The phone number.
- acs
Endpoint String - The endpoint of ACS.
- acs
Resource StringId - The resource id of ACS.
- acs
Secret String - The secret of ACS.
- cognitive
Service StringRegion - The service region of cognitive service.
- cognitive
Service StringResource Id - The resource id of cognitive service.
- cognitive
Service StringSubscription Key - The subscription key of cognitive service.
- default
Locale String - The default locale of the phone number.
- id String
- The element id.
- offer
Type String - Optional Property that will determine the offering type of the phone.
- phone
Number String - The phone number.
WebChatChannel, WebChatChannelArgs
- 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, WebChatChannelPropertiesArgs
- 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<Web
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
- sites List<Property Map>
- The list of Web Chat sites
WebChatChannelPropertiesResponse, WebChatChannelPropertiesResponseArgs
- 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<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_ 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<Property Map>
- The list of Web Chat sites
WebChatChannelResponse, WebChatChannelResponseArgs
- 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, WebChatSiteArgs
- 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
- App
Id string - DirectLine application id
- ETag string
- Entity Tag
- Is
Block boolUser Upload Enabled - Whether this site is enabled for block user upload.
- Is
Detailed boolLogging Enabled - Whether this site is disabled detailed logging for
- Is
Endpoint boolParameters Enabled - Whether this site is EndpointParameters enabled for channel
- Is
No boolStorage Enabled - Whether this no-storage site is disabled detailed logging for
- Is
Secure boolSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- Is
V1Enabled bool - Whether this site is enabled for Bot Framework V1 protocol.
- Is
V3Enabled bool - Whether this site is enabled for Bot Framework V3 protocol.
- Is
Web boolChat Speech Enabled - Whether this site is enabled for Webchat Speech
- Tenant
Id string - Tenant Id
- 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
Webchat boolPreview Enabled - Whether this site is enabled for preview versions of Webchat
- Site
Name string - Site name
- App
Id string - DirectLine application id
- ETag string
- Entity Tag
- Is
Block boolUser Upload Enabled - Whether this site is enabled for block user upload.
- Is
Detailed boolLogging Enabled - Whether this site is disabled detailed logging for
- Is
Endpoint boolParameters Enabled - Whether this site is EndpointParameters enabled for channel
- Is
No boolStorage Enabled - Whether this no-storage site is disabled detailed logging for
- Is
Secure boolSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- Is
V1Enabled bool - Whether this site is enabled for Bot Framework V1 protocol.
- Is
V3Enabled bool - Whether this site is enabled for Bot Framework V3 protocol.
- Is
Web boolChat Speech Enabled - Whether this site is enabled for Webchat Speech
- Tenant
Id string - Tenant Id
- 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
Webchat BooleanPreview Enabled - Whether this site is enabled for preview versions of Webchat
- site
Name String - Site name
- app
Id String - DirectLine application id
- e
Tag String - Entity Tag
- is
Block BooleanUser Upload Enabled - Whether this site is enabled for block user upload.
- is
Detailed BooleanLogging Enabled - Whether this site is disabled detailed logging for
- is
Endpoint BooleanParameters Enabled - Whether this site is EndpointParameters enabled for channel
- is
No BooleanStorage Enabled - Whether this no-storage site is disabled detailed logging for
- is
Secure BooleanSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- is
V1Enabled Boolean - Whether this site is enabled for Bot Framework V1 protocol.
- is
V3Enabled Boolean - Whether this site is enabled for Bot Framework V3 protocol.
- is
Web BooleanChat Speech Enabled - Whether this site is enabled for Webchat Speech
- tenant
Id String - Tenant Id
- trusted
Origins List<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
Webchat booleanPreview Enabled - Whether this site is enabled for preview versions of Webchat
- site
Name string - Site name
- app
Id string - DirectLine application id
- e
Tag string - Entity Tag
- is
Block booleanUser Upload Enabled - Whether this site is enabled for block user upload.
- is
Detailed booleanLogging Enabled - Whether this site is disabled detailed logging for
- is
Endpoint booleanParameters Enabled - Whether this site is EndpointParameters enabled for channel
- is
No booleanStorage Enabled - Whether this no-storage site is disabled detailed logging for
- is
Secure booleanSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- is
V1Enabled boolean - Whether this site is enabled for Bot Framework V1 protocol.
- is
V3Enabled boolean - Whether this site is enabled for Bot Framework V3 protocol.
- is
Web booleanChat Speech Enabled - Whether this site is enabled for Webchat Speech
- tenant
Id string - Tenant Id
- 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_
webchat_ boolpreview_ enabled - Whether this site is enabled for preview versions of Webchat
- site_
name str - Site name
- app_
id str - DirectLine application id
- e_
tag str - Entity Tag
- is_
block_ booluser_ upload_ enabled - Whether this site is enabled for block user upload.
- is_
detailed_ boollogging_ enabled - Whether this site is disabled detailed logging for
- is_
endpoint_ boolparameters_ enabled - Whether this site is EndpointParameters enabled for channel
- is_
no_ boolstorage_ enabled - Whether this no-storage site is disabled detailed logging for
- is_
secure_ boolsite_ enabled - Whether this site is enabled for authentication with Bot Framework.
- is_
v1_ boolenabled - Whether this site is enabled for Bot Framework V1 protocol.
- is_
v3_ boolenabled - Whether this site is enabled for Bot Framework V3 protocol.
- is_
web_ boolchat_ speech_ enabled - Whether this site is enabled for Webchat Speech
- tenant_
id str - Tenant Id
- 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
Webchat BooleanPreview Enabled - Whether this site is enabled for preview versions of Webchat
- site
Name String - Site name
- app
Id String - DirectLine application id
- e
Tag String - Entity Tag
- is
Block BooleanUser Upload Enabled - Whether this site is enabled for block user upload.
- is
Detailed BooleanLogging Enabled - Whether this site is disabled detailed logging for
- is
Endpoint BooleanParameters Enabled - Whether this site is EndpointParameters enabled for channel
- is
No BooleanStorage Enabled - Whether this no-storage site is disabled detailed logging for
- is
Secure BooleanSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- is
V1Enabled Boolean - Whether this site is enabled for Bot Framework V1 protocol.
- is
V3Enabled Boolean - Whether this site is enabled for Bot Framework V3 protocol.
- is
Web BooleanChat Speech Enabled - Whether this site is enabled for Webchat Speech
- tenant
Id String - Tenant Id
- trusted
Origins List<String> - List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
WebChatSiteResponse, WebChatSiteResponseArgs
- Is
Enabled bool - Whether this site is enabled for DirectLine channel
- Is
Token boolEnabled - Whether this site is token enabled for 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
- App
Id string - DirectLine application id
- ETag string
- Entity Tag
- Is
Block boolUser Upload Enabled - Whether this site is enabled for block user upload.
- Is
Detailed boolLogging Enabled - Whether this site is disabled detailed logging for
- Is
Endpoint boolParameters Enabled - Whether this site is EndpointParameters enabled for channel
- Is
No boolStorage Enabled - Whether this no-storage site is disabled detailed logging for
- Is
Secure boolSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- Is
V1Enabled bool - Whether this site is enabled for Bot Framework V1 protocol.
- Is
V3Enabled bool - Whether this site is enabled for Bot Framework V3 protocol.
- Is
Web boolChat Speech Enabled - Whether this site is enabled for Webchat Speech
- Tenant
Id string - Tenant Id
- 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
Token boolEnabled - Whether this site is token enabled for 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
- App
Id string - DirectLine application id
- ETag string
- Entity Tag
- Is
Block boolUser Upload Enabled - Whether this site is enabled for block user upload.
- Is
Detailed boolLogging Enabled - Whether this site is disabled detailed logging for
- Is
Endpoint boolParameters Enabled - Whether this site is EndpointParameters enabled for channel
- Is
No boolStorage Enabled - Whether this no-storage site is disabled detailed logging for
- Is
Secure boolSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- Is
V1Enabled bool - Whether this site is enabled for Bot Framework V1 protocol.
- Is
V3Enabled bool - Whether this site is enabled for Bot Framework V3 protocol.
- Is
Web boolChat Speech Enabled - Whether this site is enabled for Webchat Speech
- Tenant
Id string - Tenant Id
- 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
Token BooleanEnabled - Whether this site is token enabled for 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
- app
Id String - DirectLine application id
- e
Tag String - Entity Tag
- is
Block BooleanUser Upload Enabled - Whether this site is enabled for block user upload.
- is
Detailed BooleanLogging Enabled - Whether this site is disabled detailed logging for
- is
Endpoint BooleanParameters Enabled - Whether this site is EndpointParameters enabled for channel
- is
No BooleanStorage Enabled - Whether this no-storage site is disabled detailed logging for
- is
Secure BooleanSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- is
V1Enabled Boolean - Whether this site is enabled for Bot Framework V1 protocol.
- is
V3Enabled Boolean - Whether this site is enabled for Bot Framework V3 protocol.
- is
Web BooleanChat Speech Enabled - Whether this site is enabled for Webchat Speech
- tenant
Id String - Tenant Id
- trusted
Origins List<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
Token booleanEnabled - Whether this site is token enabled for 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
- app
Id string - DirectLine application id
- e
Tag string - Entity Tag
- is
Block booleanUser Upload Enabled - Whether this site is enabled for block user upload.
- is
Detailed booleanLogging Enabled - Whether this site is disabled detailed logging for
- is
Endpoint booleanParameters Enabled - Whether this site is EndpointParameters enabled for channel
- is
No booleanStorage Enabled - Whether this no-storage site is disabled detailed logging for
- is
Secure booleanSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- is
V1Enabled boolean - Whether this site is enabled for Bot Framework V1 protocol.
- is
V3Enabled boolean - Whether this site is enabled for Bot Framework V3 protocol.
- is
Web booleanChat Speech Enabled - Whether this site is enabled for Webchat Speech
- tenant
Id string - Tenant Id
- 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_
token_ boolenabled - Whether this site is token enabled for 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
- app_
id str - DirectLine application id
- e_
tag str - Entity Tag
- is_
block_ booluser_ upload_ enabled - Whether this site is enabled for block user upload.
- is_
detailed_ boollogging_ enabled - Whether this site is disabled detailed logging for
- is_
endpoint_ boolparameters_ enabled - Whether this site is EndpointParameters enabled for channel
- is_
no_ boolstorage_ enabled - Whether this no-storage site is disabled detailed logging for
- is_
secure_ boolsite_ enabled - Whether this site is enabled for authentication with Bot Framework.
- is_
v1_ boolenabled - Whether this site is enabled for Bot Framework V1 protocol.
- is_
v3_ boolenabled - Whether this site is enabled for Bot Framework V3 protocol.
- is_
web_ boolchat_ speech_ enabled - Whether this site is enabled for Webchat Speech
- tenant_
id str - Tenant Id
- 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
Token BooleanEnabled - Whether this site is token enabled for 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
- app
Id String - DirectLine application id
- e
Tag String - Entity Tag
- is
Block BooleanUser Upload Enabled - Whether this site is enabled for block user upload.
- is
Detailed BooleanLogging Enabled - Whether this site is disabled detailed logging for
- is
Endpoint BooleanParameters Enabled - Whether this site is EndpointParameters enabled for channel
- is
No BooleanStorage Enabled - Whether this no-storage site is disabled detailed logging for
- is
Secure BooleanSite Enabled - Whether this site is enabled for authentication with Bot Framework.
- is
V1Enabled Boolean - Whether this site is enabled for Bot Framework V1 protocol.
- is
V3Enabled Boolean - Whether this site is enabled for Bot Framework V3 protocol.
- is
Web BooleanChat Speech Enabled - Whether this site is enabled for Webchat Speech
- tenant
Id String - Tenant Id
- trusted
Origins List<String> - List of Trusted Origin URLs for this site. This field is applicable only if isSecureSiteEnabled is True.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:botservice:Channel myresource1 /subscriptions/subscription-id/providers/Microsoft.BotService/botServices
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0