We recommend using Azure Native.
azure.healthcare.MedtechService
Explore with Pulumi AI
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={
        "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/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MedtechService(name: string, args: MedtechServiceArgs, opts?: CustomResourceOptions);@overload
def MedtechService(resource_name: str,
                   args: MedtechServiceArgs,
                   opts: Optional[ResourceOptions] = None)
@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,
                   workspace_id: Optional[str] = None,
                   identity: Optional[MedtechServiceIdentityArgs] = None,
                   location: Optional[str] = None,
                   name: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var medtechServiceResource = new Azure.Healthcare.MedtechService("medtechServiceResource", new()
{
    DeviceMappingJson = "string",
    EventhubConsumerGroupName = "string",
    EventhubName = "string",
    EventhubNamespaceName = "string",
    WorkspaceId = "string",
    Identity = new Azure.Healthcare.Inputs.MedtechServiceIdentityArgs
    {
        Type = "string",
        IdentityIds = new[]
        {
            "string",
        },
        PrincipalId = "string",
        TenantId = "string",
    },
    Location = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := healthcare.NewMedtechService(ctx, "medtechServiceResource", &healthcare.MedtechServiceArgs{
	DeviceMappingJson:         pulumi.String("string"),
	EventhubConsumerGroupName: pulumi.String("string"),
	EventhubName:              pulumi.String("string"),
	EventhubNamespaceName:     pulumi.String("string"),
	WorkspaceId:               pulumi.String("string"),
	Identity: &healthcare.MedtechServiceIdentityArgs{
		Type: pulumi.String("string"),
		IdentityIds: pulumi.StringArray{
			pulumi.String("string"),
		},
		PrincipalId: pulumi.String("string"),
		TenantId:    pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	Name:     pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var medtechServiceResource = new MedtechService("medtechServiceResource", MedtechServiceArgs.builder()
    .deviceMappingJson("string")
    .eventhubConsumerGroupName("string")
    .eventhubName("string")
    .eventhubNamespaceName("string")
    .workspaceId("string")
    .identity(MedtechServiceIdentityArgs.builder()
        .type("string")
        .identityIds("string")
        .principalId("string")
        .tenantId("string")
        .build())
    .location("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
medtech_service_resource = azure.healthcare.MedtechService("medtechServiceResource",
    device_mapping_json="string",
    eventhub_consumer_group_name="string",
    eventhub_name="string",
    eventhub_namespace_name="string",
    workspace_id="string",
    identity={
        "type": "string",
        "identity_ids": ["string"],
        "principal_id": "string",
        "tenant_id": "string",
    },
    location="string",
    name="string",
    tags={
        "string": "string",
    })
const medtechServiceResource = new azure.healthcare.MedtechService("medtechServiceResource", {
    deviceMappingJson: "string",
    eventhubConsumerGroupName: "string",
    eventhubName: "string",
    eventhubNamespaceName: "string",
    workspaceId: "string",
    identity: {
        type: "string",
        identityIds: ["string"],
        principalId: "string",
        tenantId: "string",
    },
    location: "string",
    name: "string",
    tags: {
        string: "string",
    },
});
type: azure:healthcare:MedtechService
properties:
    deviceMappingJson: string
    eventhubConsumerGroupName: string
    eventhubName: string
    eventhubNamespaceName: string
    identity:
        identityIds:
            - string
        principalId: string
        tenantId: string
        type: string
    location: string
    name: string
    tags:
        string: string
    workspaceId: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MedtechService resource accepts the following input properties:
- DeviceMapping stringJson 
- Specifies the Device Mappings of the Med Tech Service.
- EventhubConsumer stringGroup Name 
- Specifies the Consumer Group of the Event Hub to connect to.
- EventhubName string
- Specifies the name of the Event Hub to connect to.
- EventhubNamespace stringName 
- 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
MedtechService Identity 
- An identityblock 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.
- Dictionary<string, string>
- A mapping of tags to assign to the Healthcare Med Tech Service.
- DeviceMapping stringJson 
- Specifies the Device Mappings of the Med Tech Service.
- EventhubConsumer stringGroup Name 
- Specifies the Consumer Group of the Event Hub to connect to.
- EventhubName string
- Specifies the name of the Event Hub to connect to.
- EventhubNamespace stringName 
- 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
MedtechService Identity Args 
- An identityblock 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.
- map[string]string
- A mapping of tags to assign to the Healthcare Med Tech Service.
- deviceMapping StringJson 
- Specifies the Device Mappings of the Med Tech Service.
- eventhubConsumer StringGroup Name 
- Specifies the Consumer Group of the Event Hub to connect to.
- eventhubName String
- Specifies the name of the Event Hub to connect to.
- eventhubNamespace StringName 
- 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
MedtechService Identity 
- An identityblock 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.
- Map<String,String>
- A mapping of tags to assign to the Healthcare Med Tech Service.
- deviceMapping stringJson 
- Specifies the Device Mappings of the Med Tech Service.
- eventhubConsumer stringGroup Name 
- Specifies the Consumer Group of the Event Hub to connect to.
- eventhubName string
- Specifies the name of the Event Hub to connect to.
- eventhubNamespace stringName 
- 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
MedtechService Identity 
- An identityblock 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.
- {[key: string]: string}
- A mapping of tags to assign to the Healthcare Med Tech Service.
- device_mapping_ strjson 
- Specifies the Device Mappings of the Med Tech Service.
- eventhub_consumer_ strgroup_ name 
- 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_ strname 
- 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
MedtechService Identity Args 
- An identityblock 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.
- Mapping[str, str]
- A mapping of tags to assign to the Healthcare Med Tech Service.
- deviceMapping StringJson 
- Specifies the Device Mappings of the Med Tech Service.
- eventhubConsumer StringGroup Name 
- Specifies the Consumer Group of the Event Hub to connect to.
- eventhubName String
- Specifies the name of the Event Hub to connect to.
- eventhubNamespace StringName 
- 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 identityblock 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.
- 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) -> MedtechServicefunc 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)resources:  _:    type: azure:healthcare:MedtechService    get:      id: ${id}- 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.
- DeviceMapping stringJson 
- Specifies the Device Mappings of the Med Tech Service.
- EventhubConsumer stringGroup Name 
- Specifies the Consumer Group of the Event Hub to connect to.
- EventhubName string
- Specifies the name of the Event Hub to connect to.
- EventhubNamespace stringName 
- Specifies the namespace name of the Event Hub to connect to.
- Identity
MedtechService Identity 
- An identityblock 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.
- 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.
- DeviceMapping stringJson 
- Specifies the Device Mappings of the Med Tech Service.
- EventhubConsumer stringGroup Name 
- Specifies the Consumer Group of the Event Hub to connect to.
- EventhubName string
- Specifies the name of the Event Hub to connect to.
- EventhubNamespace stringName 
- Specifies the namespace name of the Event Hub to connect to.
- Identity
MedtechService Identity Args 
- An identityblock 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.
- 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.
- deviceMapping StringJson 
- Specifies the Device Mappings of the Med Tech Service.
- eventhubConsumer StringGroup Name 
- Specifies the Consumer Group of the Event Hub to connect to.
- eventhubName String
- Specifies the name of the Event Hub to connect to.
- eventhubNamespace StringName 
- Specifies the namespace name of the Event Hub to connect to.
- identity
MedtechService Identity 
- An identityblock 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.
- 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.
- deviceMapping stringJson 
- Specifies the Device Mappings of the Med Tech Service.
- eventhubConsumer stringGroup Name 
- Specifies the Consumer Group of the Event Hub to connect to.
- eventhubName string
- Specifies the name of the Event Hub to connect to.
- eventhubNamespace stringName 
- Specifies the namespace name of the Event Hub to connect to.
- identity
MedtechService Identity 
- An identityblock 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.
- {[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_ strjson 
- Specifies the Device Mappings of the Med Tech Service.
- eventhub_consumer_ strgroup_ name 
- 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_ strname 
- Specifies the namespace name of the Event Hub to connect to.
- identity
MedtechService Identity Args 
- An identityblock 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.
- 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.
- deviceMapping StringJson 
- Specifies the Device Mappings of the Med Tech Service.
- eventhubConsumer StringGroup Name 
- Specifies the Consumer Group of the Event Hub to connect to.
- eventhubName String
- Specifies the name of the Event Hub to connect to.
- eventhubNamespace StringName 
- Specifies the namespace name of the Event Hub to connect to.
- identity Property Map
- An identityblock 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.
- 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
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.