Share via


BotChannelCollection Class

Definition

A class representing a collection of BotChannelResource and their operations. Each BotChannelResource in the collection will belong to the same instance of BotResource. To get a BotChannelCollection instance call the GetBotChannels method from an instance of BotResource.

public class BotChannelCollection : Azure.ResourceManager.ArmCollection, System.Collections.Generic.IAsyncEnumerable<Azure.ResourceManager.BotService.BotChannelResource>, System.Collections.Generic.IEnumerable<Azure.ResourceManager.BotService.BotChannelResource>
type BotChannelCollection = class
    inherit ArmCollection
    interface seq<BotChannelResource>
    interface IEnumerable
    interface IAsyncEnumerable<BotChannelResource>
Public Class BotChannelCollection
Inherits ArmCollection
Implements IAsyncEnumerable(Of BotChannelResource), IEnumerable(Of BotChannelResource)
Inheritance
BotChannelCollection
Implements

Constructors

BotChannelCollection()

Initializes a new instance of the BotChannelCollection class for mocking.

Properties

Client

Gets the ArmClient this resource client was created from.

(Inherited from ArmCollection)
Diagnostics

Gets the diagnostic options for this resource client.

(Inherited from ArmCollection)
Endpoint

Gets the base uri for this resource client.

(Inherited from ArmCollection)
Id

Gets the resource identifier.

(Inherited from ArmCollection)
Pipeline

Gets the pipeline for this resource client.

(Inherited from ArmCollection)

Methods

CreateOrUpdate(WaitUntil, BotChannelName, BotChannelData, CancellationToken)

Creates a Channel registration for a Bot Service

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/channels/{channelName}
  • Operation Id: Channels_Create
CreateOrUpdateAsync(WaitUntil, BotChannelName, BotChannelData, CancellationToken)

Creates a Channel registration for a Bot Service

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/channels/{channelName}
  • Operation Id: Channels_Create
Exists(BotChannelName, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/channels/{channelName}
  • Operation Id: Channels_Get
ExistsAsync(BotChannelName, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/channels/{channelName}
  • Operation Id: Channels_Get
Get(BotChannelName, CancellationToken)

Returns a BotService Channel registration specified by the parameters.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/channels/{channelName}
  • Operation Id: Channels_Get
GetAll(CancellationToken)

Returns all the Channel registrations of a particular BotService resource

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/channels
  • Operation Id: Channels_ListByResourceGroup
GetAllAsync(CancellationToken)

Returns all the Channel registrations of a particular BotService resource

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/channels
  • Operation Id: Channels_ListByResourceGroup
GetAsync(BotChannelName, CancellationToken)

Returns a BotService Channel registration specified by the parameters.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/channels/{channelName}
  • Operation Id: Channels_Get
GetIfExists(BotChannelName, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/channels/{channelName}
  • Operation Id: Channels_Get
GetIfExistsAsync(BotChannelName, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BotService/botServices/{resourceName}/channels/{channelName}
  • Operation Id: Channels_Get
TryGetApiVersion(ResourceType, String)

Gets the api version override if it has been set for the current client options.

(Inherited from ArmCollection)

Explicit Interface Implementations

IAsyncEnumerable<BotChannelResource>.GetAsyncEnumerator(CancellationToken)

Returns an enumerator that iterates asynchronously through the collection.

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.

IEnumerable<BotChannelResource>.GetEnumerator()

Returns an enumerator that iterates through the collection.

Applies to