1. Packages
  2. Azure Classic
  3. API Docs
  4. healthcare
  5. MedtechService

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

azure.healthcare.MedtechService

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Manages a Healthcare Med Tech Service.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-rg",
        location: "east us",
    });
    const exampleWorkspace = new azure.healthcare.Workspace("example", {
        name: "examplewkspace",
        location: example.location,
        resourceGroupName: example.name,
    });
    const exampleMedtechService = new azure.healthcare.MedtechService("example", {
        name: "examplemed",
        workspaceId: exampleWorkspace.id,
        location: "east us",
        identity: {
            type: "SystemAssigned",
        },
        eventhubNamespaceName: "example-eventhub-namespace",
        eventhubName: "example-eventhub",
        eventhubConsumerGroupName: "$Default",
        deviceMappingJson: JSON.stringify({
            templateType: "CollectionContent",
            template: [{
                templateType: "JsonPathContent",
                template: {
                    typeName: "heartrate",
                    typeMatchExpression: "$..[?(@heartrate)]",
                    deviceIdExpression: "$.deviceid",
                    timestampExpression: "$.measurementdatetime",
                    values: [{
                        required: "true",
                        valueExpression: "$.heartrate",
                        valueName: "hr",
                    }],
                },
            }],
        }),
    });
    
    import pulumi
    import json
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-rg",
        location="east us")
    example_workspace = azure.healthcare.Workspace("example",
        name="examplewkspace",
        location=example.location,
        resource_group_name=example.name)
    example_medtech_service = azure.healthcare.MedtechService("example",
        name="examplemed",
        workspace_id=example_workspace.id,
        location="east us",
        identity=azure.healthcare.MedtechServiceIdentityArgs(
            type="SystemAssigned",
        ),
        eventhub_namespace_name="example-eventhub-namespace",
        eventhub_name="example-eventhub",
        eventhub_consumer_group_name="$Default",
        device_mapping_json=json.dumps({
            "templateType": "CollectionContent",
            "template": [{
                "templateType": "JsonPathContent",
                "template": {
                    "typeName": "heartrate",
                    "typeMatchExpression": "$..[?(@heartrate)]",
                    "deviceIdExpression": "$.deviceid",
                    "timestampExpression": "$.measurementdatetime",
                    "values": [{
                        "required": "true",
                        "valueExpression": "$.heartrate",
                        "valueName": "hr",
                    }],
                },
            }],
        }))
    
    package main
    
    import (
    	"encoding/json"
    
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"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 := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-rg"),
    			Location: pulumi.String("east us"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleWorkspace, err := healthcare.NewWorkspace(ctx, "example", &healthcare.WorkspaceArgs{
    			Name:              pulumi.String("examplewkspace"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    		})
    		if err != nil {
    			return err
    		}
    		tmpJSON0, err := json.Marshal(map[string]interface{}{
    			"templateType": "CollectionContent",
    			"template": []map[string]interface{}{
    				map[string]interface{}{
    					"templateType": "JsonPathContent",
    					"template": map[string]interface{}{
    						"typeName":            "heartrate",
    						"typeMatchExpression": "$..[?(@heartrate)]",
    						"deviceIdExpression":  "$.deviceid",
    						"timestampExpression": "$.measurementdatetime",
    						"values": []map[string]interface{}{
    							map[string]interface{}{
    								"required":        "true",
    								"valueExpression": "$.heartrate",
    								"valueName":       "hr",
    							},
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		json0 := string(tmpJSON0)
    		_, err = healthcare.NewMedtechService(ctx, "example", &healthcare.MedtechServiceArgs{
    			Name:        pulumi.String("examplemed"),
    			WorkspaceId: exampleWorkspace.ID(),
    			Location:    pulumi.String("east us"),
    			Identity: &healthcare.MedtechServiceIdentityArgs{
    				Type: pulumi.String("SystemAssigned"),
    			},
    			EventhubNamespaceName:     pulumi.String("example-eventhub-namespace"),
    			EventhubName:              pulumi.String("example-eventhub"),
    			EventhubConsumerGroupName: pulumi.String("$Default"),
    			DeviceMappingJson:         pulumi.String(json0),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using System.Text.Json;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-rg",
            Location = "east us",
        });
    
        var exampleWorkspace = new Azure.Healthcare.Workspace("example", new()
        {
            Name = "examplewkspace",
            Location = example.Location,
            ResourceGroupName = example.Name,
        });
    
        var exampleMedtechService = new Azure.Healthcare.MedtechService("example", new()
        {
            Name = "examplemed",
            WorkspaceId = exampleWorkspace.Id,
            Location = "east us",
            Identity = new Azure.Healthcare.Inputs.MedtechServiceIdentityArgs
            {
                Type = "SystemAssigned",
            },
            EventhubNamespaceName = "example-eventhub-namespace",
            EventhubName = "example-eventhub",
            EventhubConsumerGroupName = "$Default",
            DeviceMappingJson = JsonSerializer.Serialize(new Dictionary<string, object?>
            {
                ["templateType"] = "CollectionContent",
                ["template"] = new[]
                {
                    new Dictionary<string, object?>
                    {
                        ["templateType"] = "JsonPathContent",
                        ["template"] = new Dictionary<string, object?>
                        {
                            ["typeName"] = "heartrate",
                            ["typeMatchExpression"] = "$..[?(@heartrate)]",
                            ["deviceIdExpression"] = "$.deviceid",
                            ["timestampExpression"] = "$.measurementdatetime",
                            ["values"] = new[]
                            {
                                new Dictionary<string, object?>
                                {
                                    ["required"] = "true",
                                    ["valueExpression"] = "$.heartrate",
                                    ["valueName"] = "hr",
                                },
                            },
                        },
                    },
                },
            }),
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.healthcare.Workspace;
    import com.pulumi.azure.healthcare.WorkspaceArgs;
    import com.pulumi.azure.healthcare.MedtechService;
    import com.pulumi.azure.healthcare.MedtechServiceArgs;
    import com.pulumi.azure.healthcare.inputs.MedtechServiceIdentityArgs;
    import static com.pulumi.codegen.internal.Serialization.*;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-rg")
                .location("east us")
                .build());
    
            var exampleWorkspace = new Workspace("exampleWorkspace", WorkspaceArgs.builder()        
                .name("examplewkspace")
                .location(example.location())
                .resourceGroupName(example.name())
                .build());
    
            var exampleMedtechService = new MedtechService("exampleMedtechService", MedtechServiceArgs.builder()        
                .name("examplemed")
                .workspaceId(exampleWorkspace.id())
                .location("east us")
                .identity(MedtechServiceIdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .eventhubNamespaceName("example-eventhub-namespace")
                .eventhubName("example-eventhub")
                .eventhubConsumerGroupName("$Default")
                .deviceMappingJson(serializeJson(
                    jsonObject(
                        jsonProperty("templateType", "CollectionContent"),
                        jsonProperty("template", jsonArray(jsonObject(
                            jsonProperty("templateType", "JsonPathContent"),
                            jsonProperty("template", jsonObject(
                                jsonProperty("typeName", "heartrate"),
                                jsonProperty("typeMatchExpression", "$..[?(@heartrate)]"),
                                jsonProperty("deviceIdExpression", "$.deviceid"),
                                jsonProperty("timestampExpression", "$.measurementdatetime"),
                                jsonProperty("values", jsonArray(jsonObject(
                                    jsonProperty("required", "true"),
                                    jsonProperty("valueExpression", "$.heartrate"),
                                    jsonProperty("valueName", "hr")
                                )))
                            ))
                        )))
                    )))
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-rg
          location: east us
      exampleWorkspace:
        type: azure:healthcare:Workspace
        name: example
        properties:
          name: examplewkspace
          location: ${example.location}
          resourceGroupName: ${example.name}
      exampleMedtechService:
        type: azure:healthcare:MedtechService
        name: example
        properties:
          name: examplemed
          workspaceId: ${exampleWorkspace.id}
          location: east us
          identity:
            type: SystemAssigned
          eventhubNamespaceName: example-eventhub-namespace
          eventhubName: example-eventhub
          eventhubConsumerGroupName: $Default
          deviceMappingJson:
            fn::toJSON:
              templateType: CollectionContent
              template:
                - templateType: JsonPathContent
                  template:
                    typeName: heartrate
                    typeMatchExpression: $..[?(@heartrate)]
                    deviceIdExpression: $.deviceid
                    timestampExpression: $.measurementdatetime
                    values:
                      - required: 'true'
                        valueExpression: $.heartrate
                        valueName: hr
    

    Create MedtechService Resource

    new MedtechService(name: string, args: MedtechServiceArgs, opts?: CustomResourceOptions);
    @overload
    def MedtechService(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       device_mapping_json: Optional[str] = None,
                       eventhub_consumer_group_name: Optional[str] = None,
                       eventhub_name: Optional[str] = None,
                       eventhub_namespace_name: Optional[str] = None,
                       identity: Optional[MedtechServiceIdentityArgs] = None,
                       location: Optional[str] = None,
                       name: Optional[str] = None,
                       tags: Optional[Mapping[str, str]] = None,
                       workspace_id: Optional[str] = None)
    @overload
    def MedtechService(resource_name: str,
                       args: MedtechServiceArgs,
                       opts: Optional[ResourceOptions] = None)
    func NewMedtechService(ctx *Context, name string, args MedtechServiceArgs, opts ...ResourceOption) (*MedtechService, error)
    public MedtechService(string name, MedtechServiceArgs args, CustomResourceOptions? opts = null)
    public MedtechService(String name, MedtechServiceArgs args)
    public MedtechService(String name, MedtechServiceArgs args, CustomResourceOptions options)
    
    type: azure:healthcare:MedtechService
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args MedtechServiceArgs
    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 MedtechServiceArgs
    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 MedtechServiceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MedtechServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MedtechServiceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    MedtechService 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 MedtechService resource accepts the following input properties:

    DeviceMappingJson string
    Specifies the Device Mappings of the Med Tech Service.
    EventhubConsumerGroupName string
    Specifies the Consumer Group of the Event Hub to connect to.
    EventhubName string
    Specifies the name of the Event Hub to connect to.
    EventhubNamespaceName string
    Specifies the namespace name of the Event Hub to connect to.
    WorkspaceId string
    Specifies the id of the Healthcare Workspace where the Healthcare Med Tech Service should exist. Changing this forces a new Healthcare Med Tech Service to be created.
    Identity MedtechServiceIdentity
    An identity block as defined below.
    Location string
    Specifies the Azure Region where the Healthcare Med Tech Service should be created. Changing this forces a new Healthcare Med Tech Service to be created.
    Name string
    Specifies the name of the Healthcare Med Tech Service. Changing this forces a new Healthcare Med Tech Service to be created.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the Healthcare Med Tech Service.
    DeviceMappingJson string
    Specifies the Device Mappings of the Med Tech Service.
    EventhubConsumerGroupName string
    Specifies the Consumer Group of the Event Hub to connect to.
    EventhubName string
    Specifies the name of the Event Hub to connect to.
    EventhubNamespaceName string
    Specifies the namespace name of the Event Hub to connect to.
    WorkspaceId string
    Specifies the id of the Healthcare Workspace where the Healthcare Med Tech Service should exist. Changing this forces a new Healthcare Med Tech Service to be created.
    Identity MedtechServiceIdentityArgs
    An identity block as defined below.
    Location string
    Specifies the Azure Region where the Healthcare Med Tech Service should be created. Changing this forces a new Healthcare Med Tech Service to be created.
    Name string
    Specifies the name of the Healthcare Med Tech Service. Changing this forces a new Healthcare Med Tech Service to be created.
    Tags map[string]string
    A mapping of tags to assign to the Healthcare Med Tech Service.
    deviceMappingJson String
    Specifies the Device Mappings of the Med Tech Service.
    eventhubConsumerGroupName String
    Specifies the Consumer Group of the Event Hub to connect to.
    eventhubName String
    Specifies the name of the Event Hub to connect to.
    eventhubNamespaceName String
    Specifies the namespace name of the Event Hub to connect to.
    workspaceId String
    Specifies the id of the Healthcare Workspace where the Healthcare Med Tech Service should exist. Changing this forces a new Healthcare Med Tech Service to be created.
    identity MedtechServiceIdentity
    An identity block as defined below.
    location String
    Specifies the Azure Region where the Healthcare Med Tech Service should be created. Changing this forces a new Healthcare Med Tech Service to be created.
    name String
    Specifies the name of the Healthcare Med Tech Service. Changing this forces a new Healthcare Med Tech Service to be created.
    tags Map<String,String>
    A mapping of tags to assign to the Healthcare Med Tech Service.
    deviceMappingJson string
    Specifies the Device Mappings of the Med Tech Service.
    eventhubConsumerGroupName string
    Specifies the Consumer Group of the Event Hub to connect to.
    eventhubName string
    Specifies the name of the Event Hub to connect to.
    eventhubNamespaceName string
    Specifies the namespace name of the Event Hub to connect to.
    workspaceId string
    Specifies the id of the Healthcare Workspace where the Healthcare Med Tech Service should exist. Changing this forces a new Healthcare Med Tech Service to be created.
    identity MedtechServiceIdentity
    An identity block as defined below.
    location string
    Specifies the Azure Region where the Healthcare Med Tech Service should be created. Changing this forces a new Healthcare Med Tech Service to be created.
    name string
    Specifies the name of the Healthcare Med Tech Service. Changing this forces a new Healthcare Med Tech Service to be created.
    tags {[key: string]: string}
    A mapping of tags to assign to the Healthcare Med Tech Service.
    device_mapping_json str
    Specifies the Device Mappings of the Med Tech Service.
    eventhub_consumer_group_name str
    Specifies the Consumer Group of the Event Hub to connect to.
    eventhub_name str
    Specifies the name of the Event Hub to connect to.
    eventhub_namespace_name str
    Specifies the namespace name of the Event Hub to connect to.
    workspace_id str
    Specifies the id of the Healthcare Workspace where the Healthcare Med Tech Service should exist. Changing this forces a new Healthcare Med Tech Service to be created.
    identity MedtechServiceIdentityArgs
    An identity block as defined below.
    location str
    Specifies the Azure Region where the Healthcare Med Tech Service should be created. Changing this forces a new Healthcare Med Tech Service to be created.
    name str
    Specifies the name of the Healthcare Med Tech Service. Changing this forces a new Healthcare Med Tech Service to be created.
    tags Mapping[str, str]
    A mapping of tags to assign to the Healthcare Med Tech Service.
    deviceMappingJson String
    Specifies the Device Mappings of the Med Tech Service.
    eventhubConsumerGroupName String
    Specifies the Consumer Group of the Event Hub to connect to.
    eventhubName String
    Specifies the name of the Event Hub to connect to.
    eventhubNamespaceName String
    Specifies the namespace name of the Event Hub to connect to.
    workspaceId String
    Specifies the id of the Healthcare Workspace where the Healthcare Med Tech Service should exist. Changing this forces a new Healthcare Med Tech Service to be created.
    identity Property Map
    An identity block as defined below.
    location String
    Specifies the Azure Region where the Healthcare Med Tech Service should be created. Changing this forces a new Healthcare Med Tech Service to be created.
    name String
    Specifies the name of the Healthcare Med Tech Service. Changing this forces a new Healthcare Med Tech Service to be created.
    tags Map<String>
    A mapping of tags to assign to the Healthcare Med Tech Service.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MedtechService resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing MedtechService Resource

    Get an existing MedtechService resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: MedtechServiceState, opts?: CustomResourceOptions): MedtechService
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device_mapping_json: Optional[str] = None,
            eventhub_consumer_group_name: Optional[str] = None,
            eventhub_name: Optional[str] = None,
            eventhub_namespace_name: Optional[str] = None,
            identity: Optional[MedtechServiceIdentityArgs] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            workspace_id: Optional[str] = None) -> MedtechService
    func GetMedtechService(ctx *Context, name string, id IDInput, state *MedtechServiceState, opts ...ResourceOption) (*MedtechService, error)
    public static MedtechService Get(string name, Input<string> id, MedtechServiceState? state, CustomResourceOptions? opts = null)
    public static MedtechService get(String name, Output<String> id, MedtechServiceState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DeviceMappingJson string
    Specifies the Device Mappings of the Med Tech Service.
    EventhubConsumerGroupName string
    Specifies the Consumer Group of the Event Hub to connect to.
    EventhubName string
    Specifies the name of the Event Hub to connect to.
    EventhubNamespaceName string
    Specifies the namespace name of the Event Hub to connect to.
    Identity MedtechServiceIdentity
    An identity block as defined below.
    Location string
    Specifies the Azure Region where the Healthcare Med Tech Service should be created. Changing this forces a new Healthcare Med Tech Service to be created.
    Name string
    Specifies the name of the Healthcare Med Tech Service. Changing this forces a new Healthcare Med Tech Service to be created.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the Healthcare Med Tech Service.
    WorkspaceId string
    Specifies the id of the Healthcare Workspace where the Healthcare Med Tech Service should exist. Changing this forces a new Healthcare Med Tech Service to be created.
    DeviceMappingJson string
    Specifies the Device Mappings of the Med Tech Service.
    EventhubConsumerGroupName string
    Specifies the Consumer Group of the Event Hub to connect to.
    EventhubName string
    Specifies the name of the Event Hub to connect to.
    EventhubNamespaceName string
    Specifies the namespace name of the Event Hub to connect to.
    Identity MedtechServiceIdentityArgs
    An identity block as defined below.
    Location string
    Specifies the Azure Region where the Healthcare Med Tech Service should be created. Changing this forces a new Healthcare Med Tech Service to be created.
    Name string
    Specifies the name of the Healthcare Med Tech Service. Changing this forces a new Healthcare Med Tech Service to be created.
    Tags map[string]string
    A mapping of tags to assign to the Healthcare Med Tech Service.
    WorkspaceId string
    Specifies the id of the Healthcare Workspace where the Healthcare Med Tech Service should exist. Changing this forces a new Healthcare Med Tech Service to be created.
    deviceMappingJson String
    Specifies the Device Mappings of the Med Tech Service.
    eventhubConsumerGroupName String
    Specifies the Consumer Group of the Event Hub to connect to.
    eventhubName String
    Specifies the name of the Event Hub to connect to.
    eventhubNamespaceName String
    Specifies the namespace name of the Event Hub to connect to.
    identity MedtechServiceIdentity
    An identity block as defined below.
    location String
    Specifies the Azure Region where the Healthcare Med Tech Service should be created. Changing this forces a new Healthcare Med Tech Service to be created.
    name String
    Specifies the name of the Healthcare Med Tech Service. Changing this forces a new Healthcare Med Tech Service to be created.
    tags Map<String,String>
    A mapping of tags to assign to the Healthcare Med Tech Service.
    workspaceId String
    Specifies the id of the Healthcare Workspace where the Healthcare Med Tech Service should exist. Changing this forces a new Healthcare Med Tech Service to be created.
    deviceMappingJson string
    Specifies the Device Mappings of the Med Tech Service.
    eventhubConsumerGroupName string
    Specifies the Consumer Group of the Event Hub to connect to.
    eventhubName string
    Specifies the name of the Event Hub to connect to.
    eventhubNamespaceName string
    Specifies the namespace name of the Event Hub to connect to.
    identity MedtechServiceIdentity
    An identity block as defined below.
    location string
    Specifies the Azure Region where the Healthcare Med Tech Service should be created. Changing this forces a new Healthcare Med Tech Service to be created.
    name string
    Specifies the name of the Healthcare Med Tech Service. Changing this forces a new Healthcare Med Tech Service to be created.
    tags {[key: string]: string}
    A mapping of tags to assign to the Healthcare Med Tech Service.
    workspaceId string
    Specifies the id of the Healthcare Workspace where the Healthcare Med Tech Service should exist. Changing this forces a new Healthcare Med Tech Service to be created.
    device_mapping_json str
    Specifies the Device Mappings of the Med Tech Service.
    eventhub_consumer_group_name str
    Specifies the Consumer Group of the Event Hub to connect to.
    eventhub_name str
    Specifies the name of the Event Hub to connect to.
    eventhub_namespace_name str
    Specifies the namespace name of the Event Hub to connect to.
    identity MedtechServiceIdentityArgs
    An identity block as defined below.
    location str
    Specifies the Azure Region where the Healthcare Med Tech Service should be created. Changing this forces a new Healthcare Med Tech Service to be created.
    name str
    Specifies the name of the Healthcare Med Tech Service. Changing this forces a new Healthcare Med Tech Service to be created.
    tags Mapping[str, str]
    A mapping of tags to assign to the Healthcare Med Tech Service.
    workspace_id str
    Specifies the id of the Healthcare Workspace where the Healthcare Med Tech Service should exist. Changing this forces a new Healthcare Med Tech Service to be created.
    deviceMappingJson String
    Specifies the Device Mappings of the Med Tech Service.
    eventhubConsumerGroupName String
    Specifies the Consumer Group of the Event Hub to connect to.
    eventhubName String
    Specifies the name of the Event Hub to connect to.
    eventhubNamespaceName String
    Specifies the namespace name of the Event Hub to connect to.
    identity Property Map
    An identity block as defined below.
    location String
    Specifies the Azure Region where the Healthcare Med Tech Service should be created. Changing this forces a new Healthcare Med Tech Service to be created.
    name String
    Specifies the name of the Healthcare Med Tech Service. Changing this forces a new Healthcare Med Tech Service to be created.
    tags Map<String>
    A mapping of tags to assign to the Healthcare Med Tech Service.
    workspaceId String
    Specifies the id of the Healthcare Workspace where the Healthcare Med Tech Service should exist. Changing this forces a new Healthcare Med Tech Service to be created.

    Supporting Types

    MedtechServiceIdentity, MedtechServiceIdentityArgs

    Type string
    Specifies the type of Managed Service Identity that should be configured on this Healthcare Med Tech Service. Possible values are SystemAssigned.
    IdentityIds List<string>
    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Healthcare Med Tech Service.
    PrincipalId string
    The Principal ID associated with this System Assigned Managed Service Identity.
    TenantId string
    The Tenant ID associated with this System Assigned Managed Service Identity.
    Type string
    Specifies the type of Managed Service Identity that should be configured on this Healthcare Med Tech Service. Possible values are SystemAssigned.
    IdentityIds []string
    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Healthcare Med Tech Service.
    PrincipalId string
    The Principal ID associated with this System Assigned Managed Service Identity.
    TenantId string
    The Tenant ID associated with this System Assigned Managed Service Identity.
    type String
    Specifies the type of Managed Service Identity that should be configured on this Healthcare Med Tech Service. Possible values are SystemAssigned.
    identityIds List<String>
    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Healthcare Med Tech Service.
    principalId String
    The Principal ID associated with this System Assigned Managed Service Identity.
    tenantId String
    The Tenant ID associated with this System Assigned Managed Service Identity.
    type string
    Specifies the type of Managed Service Identity that should be configured on this Healthcare Med Tech Service. Possible values are SystemAssigned.
    identityIds string[]
    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Healthcare Med Tech Service.
    principalId string
    The Principal ID associated with this System Assigned Managed Service Identity.
    tenantId string
    The Tenant ID associated with this System Assigned Managed Service Identity.
    type str
    Specifies the type of Managed Service Identity that should be configured on this Healthcare Med Tech Service. Possible values are SystemAssigned.
    identity_ids Sequence[str]
    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Healthcare Med Tech Service.
    principal_id str
    The Principal ID associated with this System Assigned Managed Service Identity.
    tenant_id str
    The Tenant ID associated with this System Assigned Managed Service Identity.
    type String
    Specifies the type of Managed Service Identity that should be configured on this Healthcare Med Tech Service. Possible values are SystemAssigned.
    identityIds List<String>
    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Healthcare Med Tech Service.
    principalId String
    The Principal ID associated with this System Assigned Managed Service Identity.
    tenantId String
    The Tenant ID associated with this System Assigned Managed Service Identity.

    Import

    Healthcare Med Tech Service can be imported using the resourceid, e.g.

    $ pulumi import azure:healthcare/medtechService:MedtechService example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/group1/providers/Microsoft.HealthcareApis/workspaces/workspace1/iotConnectors/iotconnector1
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi