pulumi-azure-native 2.17.1a1700150019__py3-none-any.whl → 2.18.1a1700572187__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +54 -0
- pulumi_azure_native/config/__init__.pyi +83 -0
- pulumi_azure_native/eventhub/__init__.py +3 -0
- pulumi_azure_native/eventhub/application_group.py +3 -3
- pulumi_azure_native/eventhub/cluster.py +3 -3
- pulumi_azure_native/eventhub/consumer_group.py +3 -3
- pulumi_azure_native/eventhub/disaster_recovery_config.py +3 -3
- pulumi_azure_native/eventhub/event_hub.py +3 -3
- pulumi_azure_native/eventhub/event_hub_authorization_rule.py +3 -3
- pulumi_azure_native/eventhub/get_application_group.py +2 -2
- pulumi_azure_native/eventhub/get_cluster.py +2 -2
- pulumi_azure_native/eventhub/get_consumer_group.py +2 -2
- pulumi_azure_native/eventhub/get_disaster_recovery_config.py +2 -2
- pulumi_azure_native/eventhub/get_event_hub.py +2 -2
- pulumi_azure_native/eventhub/get_event_hub_authorization_rule.py +2 -2
- pulumi_azure_native/eventhub/get_namespace.py +2 -2
- pulumi_azure_native/eventhub/get_namespace_authorization_rule.py +2 -2
- pulumi_azure_native/eventhub/get_namespace_network_rule_set.py +2 -2
- pulumi_azure_native/eventhub/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/eventhub/get_schema_registry.py +2 -2
- pulumi_azure_native/eventhub/list_disaster_recovery_config_keys.py +2 -2
- pulumi_azure_native/eventhub/list_event_hub_keys.py +2 -2
- pulumi_azure_native/eventhub/list_namespace_keys.py +2 -2
- pulumi_azure_native/eventhub/namespace.py +3 -3
- pulumi_azure_native/eventhub/namespace_authorization_rule.py +3 -3
- pulumi_azure_native/eventhub/namespace_network_rule_set.py +3 -3
- pulumi_azure_native/eventhub/private_endpoint_connection.py +3 -3
- pulumi_azure_native/eventhub/schema_registry.py +3 -3
- pulumi_azure_native/eventhub/v20221001preview/application_group.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/cluster.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/consumer_group.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/disaster_recovery_config.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/event_hub.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/event_hub_authorization_rule.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/namespace.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/namespace_network_rule_set.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/schema_registry.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/application_group.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/cluster.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/consumer_group.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/disaster_recovery_config.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/event_hub.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/event_hub_authorization_rule.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/namespace.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/namespace_network_rule_set.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/schema_registry.py +1 -1
- pulumi_azure_native/eventhub/v20240101/__init__.py +35 -0
- pulumi_azure_native/eventhub/v20240101/_enums.py +223 -0
- pulumi_azure_native/eventhub/v20240101/_inputs.py +986 -0
- pulumi_azure_native/eventhub/v20240101/application_group.py +285 -0
- pulumi_azure_native/eventhub/v20240101/cluster.py +361 -0
- pulumi_azure_native/eventhub/v20240101/consumer_group.py +265 -0
- pulumi_azure_native/eventhub/v20240101/disaster_recovery_config.py +283 -0
- pulumi_azure_native/eventhub/v20240101/event_hub.py +372 -0
- pulumi_azure_native/eventhub/v20240101/event_hub_authorization_rule.py +247 -0
- pulumi_azure_native/eventhub/v20240101/get_application_group.py +175 -0
- pulumi_azure_native/eventhub/v20240101/get_cluster.py +248 -0
- pulumi_azure_native/eventhub/v20240101/get_consumer_group.py +180 -0
- pulumi_azure_native/eventhub/v20240101/get_disaster_recovery_config.py +201 -0
- pulumi_azure_native/eventhub/v20240101/get_event_hub.py +240 -0
- pulumi_azure_native/eventhub/v20240101/get_event_hub_authorization_rule.py +154 -0
- pulumi_azure_native/eventhub/v20240101/get_namespace.py +391 -0
- pulumi_azure_native/eventhub/v20240101/get_namespace_authorization_rule.py +149 -0
- pulumi_azure_native/eventhub/v20240101/get_namespace_network_rule_set.py +196 -0
- pulumi_azure_native/eventhub/v20240101/get_private_endpoint_connection.py +175 -0
- pulumi_azure_native/eventhub/v20240101/get_schema_registry.py +208 -0
- pulumi_azure_native/eventhub/v20240101/list_disaster_recovery_config_keys.py +166 -0
- pulumi_azure_native/eventhub/v20240101/list_event_hub_keys.py +166 -0
- pulumi_azure_native/eventhub/v20240101/list_namespace_keys.py +161 -0
- pulumi_azure_native/eventhub/v20240101/namespace.py +668 -0
- pulumi_azure_native/eventhub/v20240101/namespace_authorization_rule.py +226 -0
- pulumi_azure_native/eventhub/v20240101/namespace_network_rule_set.py +326 -0
- pulumi_azure_native/eventhub/v20240101/outputs.py +1336 -0
- pulumi_azure_native/eventhub/v20240101/private_endpoint_connection.py +284 -0
- pulumi_azure_native/eventhub/v20240101/schema_registry.py +297 -0
- pulumi_azure_native/healthcareapis/__init__.py +3 -0
- pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
- pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
- pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
- pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
- pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/healthcareapis/get_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
- pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
- pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
- pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
- pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
- pulumi_azure_native/healthcareapis/service.py +3 -3
- pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/__init__.py +26 -0
- pulumi_azure_native/healthcareapis/v20231101/_enums.py +85 -0
- pulumi_azure_native/healthcareapis/v20231101/_inputs.py +1277 -0
- pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +402 -0
- pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +585 -0
- pulumi_azure_native/healthcareapis/v20231101/get_dicom_service.py +279 -0
- pulumi_azure_native/healthcareapis/v20231101/get_fhir_service.py +344 -0
- pulumi_azure_native/healthcareapis/v20231101/get_iot_connector.py +214 -0
- pulumi_azure_native/healthcareapis/v20231101/get_iot_connector_fhir_destination.py +193 -0
- pulumi_azure_native/healthcareapis/v20231101/get_private_endpoint_connection.py +162 -0
- pulumi_azure_native/healthcareapis/v20231101/get_service.py +196 -0
- pulumi_azure_native/healthcareapis/v20231101/get_workspace.py +170 -0
- pulumi_azure_native/healthcareapis/v20231101/get_workspace_private_endpoint_connection.py +162 -0
- pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +352 -0
- pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +337 -0
- pulumi_azure_native/healthcareapis/v20231101/outputs.py +1951 -0
- pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +237 -0
- pulumi_azure_native/healthcareapis/v20231101/service.py +322 -0
- pulumi_azure_native/healthcareapis/v20231101/workspace.py +242 -0
- pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +237 -0
- pulumi_azure_native/healthcareapis/workspace.py +3 -3
- pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
- pulumi_azure_native/offazurespringboot/__init__.py +22 -0
- pulumi_azure_native/offazurespringboot/_enums.py +22 -0
- pulumi_azure_native/offazurespringboot/_inputs.py +402 -0
- pulumi_azure_native/offazurespringboot/get_springbootserver.py +151 -0
- pulumi_azure_native/offazurespringboot/get_springbootsite.py +172 -0
- pulumi_azure_native/offazurespringboot/outputs.py +509 -0
- pulumi_azure_native/offazurespringboot/springbootserver.py +247 -0
- pulumi_azure_native/offazurespringboot/springbootsite.py +284 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/__init__.py +14 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/_enums.py +22 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/_inputs.py +402 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootserver.py +149 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootsite.py +170 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/outputs.py +509 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/springbootserver.py +245 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/springbootsite.py +282 -0
- pulumi_azure_native/security/alerts_suppression_rule.py +4 -4
- pulumi_azure_native/security/get_alerts_suppression_rule.py +1 -1
- pulumi_azure_native/security/v20190101preview/alerts_suppression_rule.py +4 -4
- pulumi_azure_native/security/v20190101preview/get_alerts_suppression_rule.py +1 -1
- {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/RECORD +156 -90
- {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
from ._enums import *
|
|
13
|
+
from ._inputs import *
|
|
14
|
+
|
|
15
|
+
__all__ = ['IotConnectorFhirDestinationArgs', 'IotConnectorFhirDestination']
|
|
16
|
+
|
|
17
|
+
@pulumi.input_type
|
|
18
|
+
class IotConnectorFhirDestinationArgs:
|
|
19
|
+
def __init__(__self__, *,
|
|
20
|
+
fhir_mapping: pulumi.Input['IotMappingPropertiesArgs'],
|
|
21
|
+
fhir_service_resource_id: pulumi.Input[str],
|
|
22
|
+
iot_connector_name: pulumi.Input[str],
|
|
23
|
+
resource_group_name: pulumi.Input[str],
|
|
24
|
+
resource_identity_resolution_type: pulumi.Input[Union[str, 'IotIdentityResolutionType']],
|
|
25
|
+
workspace_name: pulumi.Input[str],
|
|
26
|
+
fhir_destination_name: Optional[pulumi.Input[str]] = None,
|
|
27
|
+
location: Optional[pulumi.Input[str]] = None):
|
|
28
|
+
"""
|
|
29
|
+
The set of arguments for constructing a IotConnectorFhirDestination resource.
|
|
30
|
+
:param pulumi.Input['IotMappingPropertiesArgs'] fhir_mapping: FHIR Mappings
|
|
31
|
+
:param pulumi.Input[str] fhir_service_resource_id: Fully qualified resource id of the FHIR service to connect to.
|
|
32
|
+
:param pulumi.Input[str] iot_connector_name: The name of IoT Connector resource.
|
|
33
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group that contains the service instance.
|
|
34
|
+
:param pulumi.Input[Union[str, 'IotIdentityResolutionType']] resource_identity_resolution_type: Determines how resource identity is resolved on the destination.
|
|
35
|
+
:param pulumi.Input[str] workspace_name: The name of workspace resource.
|
|
36
|
+
:param pulumi.Input[str] fhir_destination_name: The name of IoT Connector FHIR destination resource.
|
|
37
|
+
:param pulumi.Input[str] location: The resource location.
|
|
38
|
+
"""
|
|
39
|
+
pulumi.set(__self__, "fhir_mapping", fhir_mapping)
|
|
40
|
+
pulumi.set(__self__, "fhir_service_resource_id", fhir_service_resource_id)
|
|
41
|
+
pulumi.set(__self__, "iot_connector_name", iot_connector_name)
|
|
42
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
43
|
+
pulumi.set(__self__, "resource_identity_resolution_type", resource_identity_resolution_type)
|
|
44
|
+
pulumi.set(__self__, "workspace_name", workspace_name)
|
|
45
|
+
if fhir_destination_name is not None:
|
|
46
|
+
pulumi.set(__self__, "fhir_destination_name", fhir_destination_name)
|
|
47
|
+
if location is not None:
|
|
48
|
+
pulumi.set(__self__, "location", location)
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
@pulumi.getter(name="fhirMapping")
|
|
52
|
+
def fhir_mapping(self) -> pulumi.Input['IotMappingPropertiesArgs']:
|
|
53
|
+
"""
|
|
54
|
+
FHIR Mappings
|
|
55
|
+
"""
|
|
56
|
+
return pulumi.get(self, "fhir_mapping")
|
|
57
|
+
|
|
58
|
+
@fhir_mapping.setter
|
|
59
|
+
def fhir_mapping(self, value: pulumi.Input['IotMappingPropertiesArgs']):
|
|
60
|
+
pulumi.set(self, "fhir_mapping", value)
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter(name="fhirServiceResourceId")
|
|
64
|
+
def fhir_service_resource_id(self) -> pulumi.Input[str]:
|
|
65
|
+
"""
|
|
66
|
+
Fully qualified resource id of the FHIR service to connect to.
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "fhir_service_resource_id")
|
|
69
|
+
|
|
70
|
+
@fhir_service_resource_id.setter
|
|
71
|
+
def fhir_service_resource_id(self, value: pulumi.Input[str]):
|
|
72
|
+
pulumi.set(self, "fhir_service_resource_id", value)
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter(name="iotConnectorName")
|
|
76
|
+
def iot_connector_name(self) -> pulumi.Input[str]:
|
|
77
|
+
"""
|
|
78
|
+
The name of IoT Connector resource.
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "iot_connector_name")
|
|
81
|
+
|
|
82
|
+
@iot_connector_name.setter
|
|
83
|
+
def iot_connector_name(self, value: pulumi.Input[str]):
|
|
84
|
+
pulumi.set(self, "iot_connector_name", value)
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter(name="resourceGroupName")
|
|
88
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
89
|
+
"""
|
|
90
|
+
The name of the resource group that contains the service instance.
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "resource_group_name")
|
|
93
|
+
|
|
94
|
+
@resource_group_name.setter
|
|
95
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
96
|
+
pulumi.set(self, "resource_group_name", value)
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
@pulumi.getter(name="resourceIdentityResolutionType")
|
|
100
|
+
def resource_identity_resolution_type(self) -> pulumi.Input[Union[str, 'IotIdentityResolutionType']]:
|
|
101
|
+
"""
|
|
102
|
+
Determines how resource identity is resolved on the destination.
|
|
103
|
+
"""
|
|
104
|
+
return pulumi.get(self, "resource_identity_resolution_type")
|
|
105
|
+
|
|
106
|
+
@resource_identity_resolution_type.setter
|
|
107
|
+
def resource_identity_resolution_type(self, value: pulumi.Input[Union[str, 'IotIdentityResolutionType']]):
|
|
108
|
+
pulumi.set(self, "resource_identity_resolution_type", value)
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter(name="workspaceName")
|
|
112
|
+
def workspace_name(self) -> pulumi.Input[str]:
|
|
113
|
+
"""
|
|
114
|
+
The name of workspace resource.
|
|
115
|
+
"""
|
|
116
|
+
return pulumi.get(self, "workspace_name")
|
|
117
|
+
|
|
118
|
+
@workspace_name.setter
|
|
119
|
+
def workspace_name(self, value: pulumi.Input[str]):
|
|
120
|
+
pulumi.set(self, "workspace_name", value)
|
|
121
|
+
|
|
122
|
+
@property
|
|
123
|
+
@pulumi.getter(name="fhirDestinationName")
|
|
124
|
+
def fhir_destination_name(self) -> Optional[pulumi.Input[str]]:
|
|
125
|
+
"""
|
|
126
|
+
The name of IoT Connector FHIR destination resource.
|
|
127
|
+
"""
|
|
128
|
+
return pulumi.get(self, "fhir_destination_name")
|
|
129
|
+
|
|
130
|
+
@fhir_destination_name.setter
|
|
131
|
+
def fhir_destination_name(self, value: Optional[pulumi.Input[str]]):
|
|
132
|
+
pulumi.set(self, "fhir_destination_name", value)
|
|
133
|
+
|
|
134
|
+
@property
|
|
135
|
+
@pulumi.getter
|
|
136
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
137
|
+
"""
|
|
138
|
+
The resource location.
|
|
139
|
+
"""
|
|
140
|
+
return pulumi.get(self, "location")
|
|
141
|
+
|
|
142
|
+
@location.setter
|
|
143
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
144
|
+
pulumi.set(self, "location", value)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
class IotConnectorFhirDestination(pulumi.CustomResource):
|
|
148
|
+
@overload
|
|
149
|
+
def __init__(__self__,
|
|
150
|
+
resource_name: str,
|
|
151
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
152
|
+
fhir_destination_name: Optional[pulumi.Input[str]] = None,
|
|
153
|
+
fhir_mapping: Optional[pulumi.Input[pulumi.InputType['IotMappingPropertiesArgs']]] = None,
|
|
154
|
+
fhir_service_resource_id: Optional[pulumi.Input[str]] = None,
|
|
155
|
+
iot_connector_name: Optional[pulumi.Input[str]] = None,
|
|
156
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
157
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
158
|
+
resource_identity_resolution_type: Optional[pulumi.Input[Union[str, 'IotIdentityResolutionType']]] = None,
|
|
159
|
+
workspace_name: Optional[pulumi.Input[str]] = None,
|
|
160
|
+
__props__=None):
|
|
161
|
+
"""
|
|
162
|
+
IoT Connector FHIR destination definition.
|
|
163
|
+
|
|
164
|
+
:param str resource_name: The name of the resource.
|
|
165
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
166
|
+
:param pulumi.Input[str] fhir_destination_name: The name of IoT Connector FHIR destination resource.
|
|
167
|
+
:param pulumi.Input[pulumi.InputType['IotMappingPropertiesArgs']] fhir_mapping: FHIR Mappings
|
|
168
|
+
:param pulumi.Input[str] fhir_service_resource_id: Fully qualified resource id of the FHIR service to connect to.
|
|
169
|
+
:param pulumi.Input[str] iot_connector_name: The name of IoT Connector resource.
|
|
170
|
+
:param pulumi.Input[str] location: The resource location.
|
|
171
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group that contains the service instance.
|
|
172
|
+
:param pulumi.Input[Union[str, 'IotIdentityResolutionType']] resource_identity_resolution_type: Determines how resource identity is resolved on the destination.
|
|
173
|
+
:param pulumi.Input[str] workspace_name: The name of workspace resource.
|
|
174
|
+
"""
|
|
175
|
+
...
|
|
176
|
+
@overload
|
|
177
|
+
def __init__(__self__,
|
|
178
|
+
resource_name: str,
|
|
179
|
+
args: IotConnectorFhirDestinationArgs,
|
|
180
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
181
|
+
"""
|
|
182
|
+
IoT Connector FHIR destination definition.
|
|
183
|
+
|
|
184
|
+
:param str resource_name: The name of the resource.
|
|
185
|
+
:param IotConnectorFhirDestinationArgs args: The arguments to use to populate this resource's properties.
|
|
186
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
187
|
+
"""
|
|
188
|
+
...
|
|
189
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
190
|
+
resource_args, opts = _utilities.get_resource_args_opts(IotConnectorFhirDestinationArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
191
|
+
if resource_args is not None:
|
|
192
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
193
|
+
else:
|
|
194
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
195
|
+
|
|
196
|
+
def _internal_init(__self__,
|
|
197
|
+
resource_name: str,
|
|
198
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
199
|
+
fhir_destination_name: Optional[pulumi.Input[str]] = None,
|
|
200
|
+
fhir_mapping: Optional[pulumi.Input[pulumi.InputType['IotMappingPropertiesArgs']]] = None,
|
|
201
|
+
fhir_service_resource_id: Optional[pulumi.Input[str]] = None,
|
|
202
|
+
iot_connector_name: Optional[pulumi.Input[str]] = None,
|
|
203
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
204
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
205
|
+
resource_identity_resolution_type: Optional[pulumi.Input[Union[str, 'IotIdentityResolutionType']]] = None,
|
|
206
|
+
workspace_name: Optional[pulumi.Input[str]] = None,
|
|
207
|
+
__props__=None):
|
|
208
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
209
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
210
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
211
|
+
if opts.id is None:
|
|
212
|
+
if __props__ is not None:
|
|
213
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
214
|
+
__props__ = IotConnectorFhirDestinationArgs.__new__(IotConnectorFhirDestinationArgs)
|
|
215
|
+
|
|
216
|
+
__props__.__dict__["fhir_destination_name"] = fhir_destination_name
|
|
217
|
+
if fhir_mapping is None and not opts.urn:
|
|
218
|
+
raise TypeError("Missing required property 'fhir_mapping'")
|
|
219
|
+
__props__.__dict__["fhir_mapping"] = fhir_mapping
|
|
220
|
+
if fhir_service_resource_id is None and not opts.urn:
|
|
221
|
+
raise TypeError("Missing required property 'fhir_service_resource_id'")
|
|
222
|
+
__props__.__dict__["fhir_service_resource_id"] = fhir_service_resource_id
|
|
223
|
+
if iot_connector_name is None and not opts.urn:
|
|
224
|
+
raise TypeError("Missing required property 'iot_connector_name'")
|
|
225
|
+
__props__.__dict__["iot_connector_name"] = iot_connector_name
|
|
226
|
+
__props__.__dict__["location"] = location
|
|
227
|
+
if resource_group_name is None and not opts.urn:
|
|
228
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
229
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
230
|
+
if resource_identity_resolution_type is None and not opts.urn:
|
|
231
|
+
raise TypeError("Missing required property 'resource_identity_resolution_type'")
|
|
232
|
+
__props__.__dict__["resource_identity_resolution_type"] = resource_identity_resolution_type
|
|
233
|
+
if workspace_name is None and not opts.urn:
|
|
234
|
+
raise TypeError("Missing required property 'workspace_name'")
|
|
235
|
+
__props__.__dict__["workspace_name"] = workspace_name
|
|
236
|
+
__props__.__dict__["etag"] = None
|
|
237
|
+
__props__.__dict__["name"] = None
|
|
238
|
+
__props__.__dict__["system_data"] = None
|
|
239
|
+
__props__.__dict__["type"] = None
|
|
240
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:healthcareapis:IotConnectorFhirDestination"), pulumi.Alias(type_="azure-native:healthcareapis/v20210601preview:IotConnectorFhirDestination"), pulumi.Alias(type_="azure-native:healthcareapis/v20211101:IotConnectorFhirDestination"), pulumi.Alias(type_="azure-native:healthcareapis/v20220131preview:IotConnectorFhirDestination"), pulumi.Alias(type_="azure-native:healthcareapis/v20220515:IotConnectorFhirDestination"), pulumi.Alias(type_="azure-native:healthcareapis/v20220601:IotConnectorFhirDestination"), pulumi.Alias(type_="azure-native:healthcareapis/v20221001preview:IotConnectorFhirDestination"), pulumi.Alias(type_="azure-native:healthcareapis/v20221201:IotConnectorFhirDestination"), pulumi.Alias(type_="azure-native:healthcareapis/v20230228:IotConnectorFhirDestination"), pulumi.Alias(type_="azure-native:healthcareapis/v20230906:IotConnectorFhirDestination")])
|
|
241
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
242
|
+
super(IotConnectorFhirDestination, __self__).__init__(
|
|
243
|
+
'azure-native:healthcareapis/v20231101:IotConnectorFhirDestination',
|
|
244
|
+
resource_name,
|
|
245
|
+
__props__,
|
|
246
|
+
opts)
|
|
247
|
+
|
|
248
|
+
@staticmethod
|
|
249
|
+
def get(resource_name: str,
|
|
250
|
+
id: pulumi.Input[str],
|
|
251
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'IotConnectorFhirDestination':
|
|
252
|
+
"""
|
|
253
|
+
Get an existing IotConnectorFhirDestination resource's state with the given name, id, and optional extra
|
|
254
|
+
properties used to qualify the lookup.
|
|
255
|
+
|
|
256
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
257
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
258
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
259
|
+
"""
|
|
260
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
261
|
+
|
|
262
|
+
__props__ = IotConnectorFhirDestinationArgs.__new__(IotConnectorFhirDestinationArgs)
|
|
263
|
+
|
|
264
|
+
__props__.__dict__["etag"] = None
|
|
265
|
+
__props__.__dict__["fhir_mapping"] = None
|
|
266
|
+
__props__.__dict__["fhir_service_resource_id"] = None
|
|
267
|
+
__props__.__dict__["location"] = None
|
|
268
|
+
__props__.__dict__["name"] = None
|
|
269
|
+
__props__.__dict__["resource_identity_resolution_type"] = None
|
|
270
|
+
__props__.__dict__["system_data"] = None
|
|
271
|
+
__props__.__dict__["type"] = None
|
|
272
|
+
return IotConnectorFhirDestination(resource_name, opts=opts, __props__=__props__)
|
|
273
|
+
|
|
274
|
+
@property
|
|
275
|
+
@pulumi.getter
|
|
276
|
+
def etag(self) -> pulumi.Output[Optional[str]]:
|
|
277
|
+
"""
|
|
278
|
+
An etag associated with the resource, used for optimistic concurrency when editing it.
|
|
279
|
+
"""
|
|
280
|
+
return pulumi.get(self, "etag")
|
|
281
|
+
|
|
282
|
+
@property
|
|
283
|
+
@pulumi.getter(name="fhirMapping")
|
|
284
|
+
def fhir_mapping(self) -> pulumi.Output['outputs.IotMappingPropertiesResponse']:
|
|
285
|
+
"""
|
|
286
|
+
FHIR Mappings
|
|
287
|
+
"""
|
|
288
|
+
return pulumi.get(self, "fhir_mapping")
|
|
289
|
+
|
|
290
|
+
@property
|
|
291
|
+
@pulumi.getter(name="fhirServiceResourceId")
|
|
292
|
+
def fhir_service_resource_id(self) -> pulumi.Output[str]:
|
|
293
|
+
"""
|
|
294
|
+
Fully qualified resource id of the FHIR service to connect to.
|
|
295
|
+
"""
|
|
296
|
+
return pulumi.get(self, "fhir_service_resource_id")
|
|
297
|
+
|
|
298
|
+
@property
|
|
299
|
+
@pulumi.getter
|
|
300
|
+
def location(self) -> pulumi.Output[Optional[str]]:
|
|
301
|
+
"""
|
|
302
|
+
The resource location.
|
|
303
|
+
"""
|
|
304
|
+
return pulumi.get(self, "location")
|
|
305
|
+
|
|
306
|
+
@property
|
|
307
|
+
@pulumi.getter
|
|
308
|
+
def name(self) -> pulumi.Output[str]:
|
|
309
|
+
"""
|
|
310
|
+
The resource name.
|
|
311
|
+
"""
|
|
312
|
+
return pulumi.get(self, "name")
|
|
313
|
+
|
|
314
|
+
@property
|
|
315
|
+
@pulumi.getter(name="resourceIdentityResolutionType")
|
|
316
|
+
def resource_identity_resolution_type(self) -> pulumi.Output[str]:
|
|
317
|
+
"""
|
|
318
|
+
Determines how resource identity is resolved on the destination.
|
|
319
|
+
"""
|
|
320
|
+
return pulumi.get(self, "resource_identity_resolution_type")
|
|
321
|
+
|
|
322
|
+
@property
|
|
323
|
+
@pulumi.getter(name="systemData")
|
|
324
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
325
|
+
"""
|
|
326
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
327
|
+
"""
|
|
328
|
+
return pulumi.get(self, "system_data")
|
|
329
|
+
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter
|
|
332
|
+
def type(self) -> pulumi.Output[str]:
|
|
333
|
+
"""
|
|
334
|
+
The resource type.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "type")
|
|
337
|
+
|