import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Healthcare Workspace * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.healthcare.getWorkspace({ * name: "example-healthcare_service", * resourceGroupName: "example-resources", * }); * export const healthcareWorkspaceId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.HealthcareApis` - 2024-03-31 */ export declare function getWorkspace(args: GetWorkspaceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWorkspace. */ export interface GetWorkspaceArgs { /** * The name of the Healthcare Workspace. */ name: string; /** * The name of the Resource Group in which the Healthcare Workspace exists. */ resourceGroupName: string; } /** * A collection of values returned by getWorkspace. */ export interface GetWorkspaceResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the Healthcare Workspace is located. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * A map of tags assigned to the Healthcare Workspace. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Healthcare Workspace * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.healthcare.getWorkspace({ * name: "example-healthcare_service", * resourceGroupName: "example-resources", * }); * export const healthcareWorkspaceId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.HealthcareApis` - 2024-03-31 */ export declare function getWorkspaceOutput(args: GetWorkspaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWorkspace. */ export interface GetWorkspaceOutputArgs { /** * The name of the Healthcare Workspace. */ name: pulumi.Input; /** * The name of the Resource Group in which the Healthcare Workspace exists. */ resourceGroupName: pulumi.Input; }