import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Graph Services Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.graph.getServicesAccount({ * name: "example-graph-services-account", * resourceGroupName: "example-resources", * }); * export const applicationId = example.then(example => example.applicationId); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.GraphServices` - 2023-04-13 */ export declare function getServicesAccount(args: GetServicesAccountArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServicesAccount. */ export interface GetServicesAccountArgs { /** * The name of the Graph Services Account. */ name: string; /** * The name of the Resource Group where the Graph Services Account exists. */ resourceGroupName: string; } /** * A collection of values returned by getServicesAccount. */ export interface GetServicesAccountResult { /** * The application ID associated with the Graph Services Account. */ readonly applicationId: string; /** * The billing plan ID for the Graph Services Account. */ readonly billingPlanId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly resourceGroupName: string; /** * A mapping of tags assigned to the Graph Services Account. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Graph Services Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.graph.getServicesAccount({ * name: "example-graph-services-account", * resourceGroupName: "example-resources", * }); * export const applicationId = example.then(example => example.applicationId); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.GraphServices` - 2023-04-13 */ export declare function getServicesAccountOutput(args: GetServicesAccountOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServicesAccount. */ export interface GetServicesAccountOutputArgs { /** * The name of the Graph Services Account. */ name: pulumi.Input; /** * The name of the Resource Group where the Graph Services Account exists. */ resourceGroupName: pulumi.Input; }