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

70 lines (69 loc) 1.61 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * The EngagementFabric account * * Uses Azure REST API version 2018-09-01-preview. */ export declare function getAccount(args: GetAccountArgs, opts?: pulumi.InvokeOptions): Promise<GetAccountResult>; export interface GetAccountArgs { /** * Account Name */ accountName: string; /** * Resource Group Name */ resourceGroupName: string; } /** * The EngagementFabric account */ export interface GetAccountResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The ID of the resource */ readonly id: string; /** * The location of the resource */ readonly location: string; /** * The name of the resource */ readonly name: string; /** * The SKU of the resource */ readonly sku: outputs.engagementfabric.SKUResponse; /** * The tags of the resource */ readonly tags?: { [key: string]: string; }; /** * The fully qualified type of the resource */ readonly type: string; } /** * The EngagementFabric account * * Uses Azure REST API version 2018-09-01-preview. */ export declare function getAccountOutput(args: GetAccountOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAccountResult>; export interface GetAccountOutputArgs { /** * Account Name */ accountName: pulumi.Input<string>; /** * Resource Group Name */ resourceGroupName: pulumi.Input<string>; }