azure-native.healthcareapis.Workspace
Explore with Pulumi AI
Workspace resource. API Version: 2022-05-15.
Example Usage
Create or update a workspace
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var workspace = new AzureNative.HealthcareApis.Workspace("workspace", new()
{
Location = "westus",
ResourceGroupName = "testRG",
WorkspaceName = "workspace1",
});
});
package main
import (
healthcareapis "github.com/pulumi/pulumi-azure-native-sdk/healthcareapis"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := healthcareapis.NewWorkspace(ctx, "workspace", &healthcareapis.WorkspaceArgs{
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("testRG"),
WorkspaceName: pulumi.String("workspace1"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.healthcareapis.Workspace;
import com.pulumi.azurenative.healthcareapis.WorkspaceArgs;
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) {
var workspace = new Workspace("workspace", WorkspaceArgs.builder()
.location("westus")
.resourceGroupName("testRG")
.workspaceName("workspace1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
workspace = azure_native.healthcareapis.Workspace("workspace",
location="westus",
resource_group_name="testRG",
workspace_name="workspace1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workspace = new azure_native.healthcareapis.Workspace("workspace", {
location: "westus",
resourceGroupName: "testRG",
workspaceName: "workspace1",
});
resources:
workspace:
type: azure-native:healthcareapis:Workspace
properties:
location: westus
resourceGroupName: testRG
workspaceName: workspace1
Create Workspace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Workspace(name: string, args: WorkspaceArgs, opts?: CustomResourceOptions);
@overload
def Workspace(resource_name: str,
args: WorkspaceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Workspace(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
workspace_name: Optional[str] = None)
func NewWorkspace(ctx *Context, name string, args WorkspaceArgs, opts ...ResourceOption) (*Workspace, error)
public Workspace(string name, WorkspaceArgs args, CustomResourceOptions? opts = null)
public Workspace(String name, WorkspaceArgs args)
public Workspace(String name, WorkspaceArgs args, CustomResourceOptions options)
type: azure-native:healthcareapis:Workspace
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampleworkspaceResourceResourceFromHealthcareapis = new AzureNative.Healthcareapis.Workspace("exampleworkspaceResourceResourceFromHealthcareapis", new()
{
ResourceGroupName = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
WorkspaceName = "string",
});
example, err := healthcareapis.NewWorkspace(ctx, "exampleworkspaceResourceResourceFromHealthcareapis", &healthcareapis.WorkspaceArgs{
ResourceGroupName: "string",
Location: "string",
Tags: map[string]interface{}{
"string": "string",
},
WorkspaceName: "string",
})
var exampleworkspaceResourceResourceFromHealthcareapis = new Workspace("exampleworkspaceResourceResourceFromHealthcareapis", WorkspaceArgs.builder()
.resourceGroupName("string")
.location("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.workspaceName("string")
.build());
exampleworkspace_resource_resource_from_healthcareapis = azure_native.healthcareapis.Workspace("exampleworkspaceResourceResourceFromHealthcareapis",
resource_group_name=string,
location=string,
tags={
string: string,
},
workspace_name=string)
const exampleworkspaceResourceResourceFromHealthcareapis = new azure_native.healthcareapis.Workspace("exampleworkspaceResourceResourceFromHealthcareapis", {
resourceGroupName: "string",
location: "string",
tags: {
string: "string",
},
workspaceName: "string",
});
type: azure-native:healthcareapis:Workspace
properties:
location: string
resourceGroupName: string
tags:
string: string
workspaceName: string
Workspace Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Workspace resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group that contains the service instance.
- Location string
- The resource location.
- Dictionary<string, string>
- Resource tags.
- Workspace
Name string - The name of workspace resource.
- Resource
Group stringName - The name of the resource group that contains the service instance.
- Location string
- The resource location.
- map[string]string
- Resource tags.
- Workspace
Name string - The name of workspace resource.
- resource
Group StringName - The name of the resource group that contains the service instance.
- location String
- The resource location.
- Map<String,String>
- Resource tags.
- workspace
Name String - The name of workspace resource.
- resource
Group stringName - The name of the resource group that contains the service instance.
- location string
- The resource location.
- {[key: string]: string}
- Resource tags.
- workspace
Name string - The name of workspace resource.
- resource_
group_ strname - The name of the resource group that contains the service instance.
- location str
- The resource location.
- Mapping[str, str]
- Resource tags.
- workspace_
name str - The name of workspace resource.
- resource
Group StringName - The name of the resource group that contains the service instance.
- location String
- The resource location.
- Map<String>
- Resource tags.
- workspace
Name String - The name of workspace resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the Workspace resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name.
- Properties
Pulumi.
Azure Native. Healthcare Apis. Outputs. Workspace Response Properties - Workspaces resource specific properties.
- System
Data Pulumi.Azure Native. Healthcare Apis. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The resource type.
- Etag string
- An etag associated with the resource, used for optimistic concurrency when editing it.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name.
- Properties
Workspace
Response Properties - Workspaces resource specific properties.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The resource type.
- Etag string
- An etag associated with the resource, used for optimistic concurrency when editing it.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name.
- properties
Workspace
Response Properties - Workspaces resource specific properties.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- The resource type.
- etag String
- An etag associated with the resource, used for optimistic concurrency when editing it.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The resource name.
- properties
Workspace
Response Properties - Workspaces resource specific properties.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- The resource type.
- etag string
- An etag associated with the resource, used for optimistic concurrency when editing it.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The resource name.
- properties
Workspace
Response Properties - Workspaces resource specific properties.
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- The resource type.
- etag str
- An etag associated with the resource, used for optimistic concurrency when editing it.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name.
- properties Property Map
- Workspaces resource specific properties.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- The resource type.
- etag String
- An etag associated with the resource, used for optimistic concurrency when editing it.
Supporting Types
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Name string
- The name of the resource
- Private
Link Pulumi.Service Connection State Azure Native. Healthcare Apis. Inputs. Private Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Private
Endpoint Pulumi.Azure Native. Healthcare Apis. Inputs. Private Endpoint Response - The resource of private end point.
- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Name string
- The name of the resource
- Private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id String
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name String
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name string
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State string - The provisioning state of the private endpoint connection resource.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id str
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name str
- The name of the resource
- private_
link_ Privateservice_ connection_ state Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning_
state str - The provisioning state of the private endpoint connection resource.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private_
endpoint PrivateEndpoint Response - The resource of private end point.
- id String
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name String
- The name of the resource
- private
Link Property MapService Connection State - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint Property Map - The resource of private end point.
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id string
- The ARM identifier for Private Endpoint
- Id string
- The ARM identifier for Private Endpoint
- id String
- The ARM identifier for Private Endpoint
- id string
- The ARM identifier for Private Endpoint
- id str
- The ARM identifier for Private Endpoint
- id String
- The ARM identifier for Private Endpoint
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- description string
- The reason for approval/rejection of the connection.
- status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions_
required str - A message indicating if changes on the service provider require any updates on the consumer.
- description str
- The reason for approval/rejection of the connection.
- status str
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
WorkspaceResponseProperties, WorkspaceResponsePropertiesArgs
- Private
Endpoint List<Pulumi.Connections Azure Native. Healthcare Apis. Inputs. Private Endpoint Connection Response> - The list of private endpoint connections that are set up for this resource.
- Provisioning
State string - The provisioning state.
- Public
Network stringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- Private
Endpoint []PrivateConnections Endpoint Connection Response - The list of private endpoint connections that are set up for this resource.
- Provisioning
State string - The provisioning state.
- Public
Network stringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - The list of private endpoint connections that are set up for this resource.
- provisioning
State String - The provisioning state.
- public
Network StringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- private
Endpoint PrivateConnections Endpoint Connection Response[] - The list of private endpoint connections that are set up for this resource.
- provisioning
State string - The provisioning state.
- public
Network stringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - The list of private endpoint connections that are set up for this resource.
- provisioning_
state str - The provisioning state.
- public_
network_ straccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- private
Endpoint List<Property Map>Connections - The list of private endpoint connections that are set up for this resource.
- provisioning
State String - The provisioning state.
- public
Network StringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:healthcareapis:Workspace workspace1 /subscriptions/subid/resourceGroups/testRG/providers/Microsoft.HealthcareApis/workspaces/workspace1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0