import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing API Management Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.apimanagement.getGroup({ * name: "my-group", * apiManagementName: "example-apim", * resourceGroupName: "search-service", * }); * export const groupType = example.then(example => example.type); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ApiManagement` - 2022-08-01 */ export declare function getGroup(args: GetGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGroup. */ export interface GetGroupArgs { /** * The Name of the API Management Service in which this Group exists. */ apiManagementName: string; /** * The Name of the API Management Group. */ name: string; /** * The Name of the Resource Group in which the API Management Service exists. */ resourceGroupName: string; } /** * A collection of values returned by getGroup. */ export interface GetGroupResult { readonly apiManagementName: string; /** * The description of this API Management Group. */ readonly description: string; /** * The display name of this API Management Group. */ readonly displayName: string; /** * The identifier of the external Group. */ readonly externalId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly resourceGroupName: string; /** * The type of this API Management Group, such as `custom` or `external`. */ readonly type: string; } /** * Use this data source to access information about an existing API Management Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.apimanagement.getGroup({ * name: "my-group", * apiManagementName: "example-apim", * resourceGroupName: "search-service", * }); * export const groupType = example.then(example => example.type); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.ApiManagement` - 2022-08-01 */ export declare function getGroupOutput(args: GetGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGroup. */ export interface GetGroupOutputArgs { /** * The Name of the API Management Service in which this Group exists. */ apiManagementName: pulumi.Input; /** * The Name of the API Management Group. */ name: pulumi.Input; /** * The Name of the Resource Group in which the API Management Service exists. */ resourceGroupName: pulumi.Input; }