import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about a Load Test Service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.loadtest.get({ * resourceGroupName: "example-resources", * name: "example-load-test", * }); * export const loadTestId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.LoadTestService` - 2022-12-01 */ export declare function get(args: GetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking get. */ export interface GetArgs { /** * The name of the Load Test Service. */ name: string; /** * The name of the Resource Group in which the Load Test Service exists. */ resourceGroupName: string; } /** * A collection of values returned by get. */ export interface GetResult { /** * Resource data plane URI. */ readonly dataPlaneUri: string; /** * Description of the resource. */ readonly description: string; /** * An `encryption` block as defined below. */ readonly encryptions: outputs.loadtest.GetEncryption[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * An `identity` block as defined below. */ readonly identities: outputs.loadtest.GetIdentity[]; /** * The Azure Region where the Load Test exists. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * A mapping of tags assigned to the Load Test Service. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about a Load Test Service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.loadtest.get({ * resourceGroupName: "example-resources", * name: "example-load-test", * }); * export const loadTestId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.LoadTestService` - 2022-12-01 */ export declare function getOutput(args: GetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking get. */ export interface GetOutputArgs { /** * The name of the Load Test Service. */ name: pulumi.Input; /** * The name of the Resource Group in which the Load Test Service exists. */ resourceGroupName: pulumi.Input; }