UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

77 lines (76 loc) 1.71 kB
import * as pulumi from "@pulumi/pulumi"; /** * The EngagementFabric channel * * Uses Azure REST API version 2018-09-01-preview. */ export declare function getChannel(args: GetChannelArgs, opts?: pulumi.InvokeOptions): Promise<GetChannelResult>; export interface GetChannelArgs { /** * Account Name */ accountName: string; /** * Channel Name */ channelName: string; /** * Resource Group Name */ resourceGroupName: string; } /** * The EngagementFabric channel */ export interface GetChannelResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The functions to be enabled for the channel */ readonly channelFunctions?: string[]; /** * The channel type */ readonly channelType: string; /** * The channel credentials */ readonly credentials?: { [key: string]: string; }; /** * The ID of the resource */ readonly id: string; /** * The name of the resource */ readonly name: string; /** * The fully qualified type of the resource */ readonly type: string; } /** * The EngagementFabric channel * * Uses Azure REST API version 2018-09-01-preview. */ export declare function getChannelOutput(args: GetChannelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetChannelResult>; export interface GetChannelOutputArgs { /** * Account Name */ accountName: pulumi.Input<string>; /** * Channel Name */ channelName: pulumi.Input<string>; /** * Resource Group Name */ resourceGroupName: pulumi.Input<string>; }