@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.61 kB
TypeScript
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>;
}