azure.healthcare.getWorkspace
Use this data source to access information about an existing Healthcare Workspace
Example Usage
using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = Azure.Healthcare.GetWorkspace.Invoke(new()
{
Name = "example-healthcare_service",
ResourceGroupName = "example-resources",
});
return new Dictionary<string, object?>
{
["healthcareWorkspaceId"] = example.Apply(getWorkspaceResult => getWorkspaceResult.Id),
};
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/healthcare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := healthcare.LookupWorkspace(ctx, &healthcare.LookupWorkspaceArgs{
Name: "example-healthcare_service",
ResourceGroupName: "example-resources",
}, nil)
if err != nil {
return err
}
ctx.Export("healthcareWorkspaceId", example.Id)
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.healthcare.HealthcareFunctions;
import com.pulumi.azure.healthcare.inputs.GetWorkspaceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = HealthcareFunctions.getWorkspace(GetWorkspaceArgs.builder()
.name("example-healthcare_service")
.resourceGroupName("example-resources")
.build());
ctx.export("healthcareWorkspaceId", example.applyValue(getWorkspaceResult -> getWorkspaceResult.id()));
}
}
import pulumi
import pulumi_azure as azure
example = azure.healthcare.get_workspace(name="example-healthcare_service",
resource_group_name="example-resources")
pulumi.export("healthcareWorkspaceId", example.id)
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);
variables:
example:
fn::invoke:
Function: azure:healthcare:getWorkspace
Arguments:
name: example-healthcare_service
resourceGroupName: example-resources
outputs:
healthcareWorkspaceId: ${example.id}
Using getWorkspace
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getWorkspace(args: GetWorkspaceArgs, opts?: InvokeOptions): Promise<GetWorkspaceResult>
function getWorkspaceOutput(args: GetWorkspaceOutputArgs, opts?: InvokeOptions): Output<GetWorkspaceResult>
def get_workspace(name: Optional[str] = None,
resource_group_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetWorkspaceResult
def get_workspace_output(name: Optional[pulumi.Input[str]] = None,
resource_group_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetWorkspaceResult]
func LookupWorkspace(ctx *Context, args *LookupWorkspaceArgs, opts ...InvokeOption) (*LookupWorkspaceResult, error)
func LookupWorkspaceOutput(ctx *Context, args *LookupWorkspaceOutputArgs, opts ...InvokeOption) LookupWorkspaceResultOutput
> Note: This function is named LookupWorkspace
in the Go SDK.
public static class GetWorkspace
{
public static Task<GetWorkspaceResult> InvokeAsync(GetWorkspaceArgs args, InvokeOptions? opts = null)
public static Output<GetWorkspaceResult> Invoke(GetWorkspaceInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetWorkspaceResult> getWorkspace(GetWorkspaceArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: azure:healthcare/getWorkspace:getWorkspace
arguments:
# arguments dictionary
The following arguments are supported:
- Name string
The name of the Healthcare Workspace.
- Resource
Group stringName The name of the Resource Group in which the Healthcare Workspace exists.
- Name string
The name of the Healthcare Workspace.
- Resource
Group stringName The name of the Resource Group in which the Healthcare Workspace exists.
- name String
The name of the Healthcare Workspace.
- resource
Group StringName The name of the Resource Group in which the Healthcare Workspace exists.
- name string
The name of the Healthcare Workspace.
- resource
Group stringName The name of the Resource Group in which the Healthcare Workspace exists.
- name str
The name of the Healthcare Workspace.
- resource_
group_ strname The name of the Resource Group in which the Healthcare Workspace exists.
- name String
The name of the Healthcare Workspace.
- resource
Group StringName The name of the Resource Group in which the Healthcare Workspace exists.
getWorkspace Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Location string
The Azure Region where the Healthcare Workspace is located.
- Name string
- Resource
Group stringName - Dictionary<string, string>
A map of tags assigned to the Healthcare Workspace.
- Id string
The provider-assigned unique ID for this managed resource.
- Location string
The Azure Region where the Healthcare Workspace is located.
- Name string
- Resource
Group stringName - map[string]string
A map of tags assigned to the Healthcare Workspace.
- id String
The provider-assigned unique ID for this managed resource.
- location String
The Azure Region where the Healthcare Workspace is located.
- name String
- resource
Group StringName - Map<String,String>
A map of tags assigned to the Healthcare Workspace.
- id string
The provider-assigned unique ID for this managed resource.
- location string
The Azure Region where the Healthcare Workspace is located.
- name string
- resource
Group stringName - {[key: string]: string}
A map of tags assigned to the Healthcare Workspace.
- id str
The provider-assigned unique ID for this managed resource.
- location str
The Azure Region where the Healthcare Workspace is located.
- name str
- resource_
group_ strname - Mapping[str, str]
A map of tags assigned to the Healthcare Workspace.
- id String
The provider-assigned unique ID for this managed resource.
- location String
The Azure Region where the Healthcare Workspace is located.
- name String
- resource
Group StringName - Map<String>
A map of tags assigned to the Healthcare Workspace.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.