pulumi-azure-native 2.18.0__py3-none-any.whl → 2.19.0__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.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/RECORD +156 -90
- {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,402 @@
|
|
|
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__ = ['DicomServiceArgs', 'DicomService']
|
|
16
|
+
|
|
17
|
+
@pulumi.input_type
|
|
18
|
+
class DicomServiceArgs:
|
|
19
|
+
def __init__(__self__, *,
|
|
20
|
+
resource_group_name: pulumi.Input[str],
|
|
21
|
+
workspace_name: pulumi.Input[str],
|
|
22
|
+
cors_configuration: Optional[pulumi.Input['CorsConfigurationArgs']] = None,
|
|
23
|
+
dicom_service_name: Optional[pulumi.Input[str]] = None,
|
|
24
|
+
encryption: Optional[pulumi.Input['EncryptionArgs']] = None,
|
|
25
|
+
identity: Optional[pulumi.Input['ServiceManagedIdentityIdentityArgs']] = None,
|
|
26
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
27
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
28
|
+
"""
|
|
29
|
+
The set of arguments for constructing a DicomService resource.
|
|
30
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group that contains the service instance.
|
|
31
|
+
:param pulumi.Input[str] workspace_name: The name of workspace resource.
|
|
32
|
+
:param pulumi.Input['CorsConfigurationArgs'] cors_configuration: Dicom Service Cors configuration.
|
|
33
|
+
:param pulumi.Input[str] dicom_service_name: The name of DICOM Service resource.
|
|
34
|
+
:param pulumi.Input['EncryptionArgs'] encryption: The encryption settings of the DICOM service
|
|
35
|
+
:param pulumi.Input['ServiceManagedIdentityIdentityArgs'] identity: Setting indicating whether the service has a managed identity associated with it.
|
|
36
|
+
:param pulumi.Input[str] location: The resource location.
|
|
37
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
38
|
+
"""
|
|
39
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
40
|
+
pulumi.set(__self__, "workspace_name", workspace_name)
|
|
41
|
+
if cors_configuration is not None:
|
|
42
|
+
pulumi.set(__self__, "cors_configuration", cors_configuration)
|
|
43
|
+
if dicom_service_name is not None:
|
|
44
|
+
pulumi.set(__self__, "dicom_service_name", dicom_service_name)
|
|
45
|
+
if encryption is not None:
|
|
46
|
+
pulumi.set(__self__, "encryption", encryption)
|
|
47
|
+
if identity is not None:
|
|
48
|
+
pulumi.set(__self__, "identity", identity)
|
|
49
|
+
if location is not None:
|
|
50
|
+
pulumi.set(__self__, "location", location)
|
|
51
|
+
if tags is not None:
|
|
52
|
+
pulumi.set(__self__, "tags", tags)
|
|
53
|
+
|
|
54
|
+
@property
|
|
55
|
+
@pulumi.getter(name="resourceGroupName")
|
|
56
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
57
|
+
"""
|
|
58
|
+
The name of the resource group that contains the service instance.
|
|
59
|
+
"""
|
|
60
|
+
return pulumi.get(self, "resource_group_name")
|
|
61
|
+
|
|
62
|
+
@resource_group_name.setter
|
|
63
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
64
|
+
pulumi.set(self, "resource_group_name", value)
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter(name="workspaceName")
|
|
68
|
+
def workspace_name(self) -> pulumi.Input[str]:
|
|
69
|
+
"""
|
|
70
|
+
The name of workspace resource.
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "workspace_name")
|
|
73
|
+
|
|
74
|
+
@workspace_name.setter
|
|
75
|
+
def workspace_name(self, value: pulumi.Input[str]):
|
|
76
|
+
pulumi.set(self, "workspace_name", value)
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="corsConfiguration")
|
|
80
|
+
def cors_configuration(self) -> Optional[pulumi.Input['CorsConfigurationArgs']]:
|
|
81
|
+
"""
|
|
82
|
+
Dicom Service Cors configuration.
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "cors_configuration")
|
|
85
|
+
|
|
86
|
+
@cors_configuration.setter
|
|
87
|
+
def cors_configuration(self, value: Optional[pulumi.Input['CorsConfigurationArgs']]):
|
|
88
|
+
pulumi.set(self, "cors_configuration", value)
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter(name="dicomServiceName")
|
|
92
|
+
def dicom_service_name(self) -> Optional[pulumi.Input[str]]:
|
|
93
|
+
"""
|
|
94
|
+
The name of DICOM Service resource.
|
|
95
|
+
"""
|
|
96
|
+
return pulumi.get(self, "dicom_service_name")
|
|
97
|
+
|
|
98
|
+
@dicom_service_name.setter
|
|
99
|
+
def dicom_service_name(self, value: Optional[pulumi.Input[str]]):
|
|
100
|
+
pulumi.set(self, "dicom_service_name", value)
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter
|
|
104
|
+
def encryption(self) -> Optional[pulumi.Input['EncryptionArgs']]:
|
|
105
|
+
"""
|
|
106
|
+
The encryption settings of the DICOM service
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "encryption")
|
|
109
|
+
|
|
110
|
+
@encryption.setter
|
|
111
|
+
def encryption(self, value: Optional[pulumi.Input['EncryptionArgs']]):
|
|
112
|
+
pulumi.set(self, "encryption", value)
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
@pulumi.getter
|
|
116
|
+
def identity(self) -> Optional[pulumi.Input['ServiceManagedIdentityIdentityArgs']]:
|
|
117
|
+
"""
|
|
118
|
+
Setting indicating whether the service has a managed identity associated with it.
|
|
119
|
+
"""
|
|
120
|
+
return pulumi.get(self, "identity")
|
|
121
|
+
|
|
122
|
+
@identity.setter
|
|
123
|
+
def identity(self, value: Optional[pulumi.Input['ServiceManagedIdentityIdentityArgs']]):
|
|
124
|
+
pulumi.set(self, "identity", value)
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter
|
|
128
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
129
|
+
"""
|
|
130
|
+
The resource location.
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "location")
|
|
133
|
+
|
|
134
|
+
@location.setter
|
|
135
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
136
|
+
pulumi.set(self, "location", value)
|
|
137
|
+
|
|
138
|
+
@property
|
|
139
|
+
@pulumi.getter
|
|
140
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
141
|
+
"""
|
|
142
|
+
Resource tags.
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "tags")
|
|
145
|
+
|
|
146
|
+
@tags.setter
|
|
147
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
148
|
+
pulumi.set(self, "tags", value)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
class DicomService(pulumi.CustomResource):
|
|
152
|
+
@overload
|
|
153
|
+
def __init__(__self__,
|
|
154
|
+
resource_name: str,
|
|
155
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
156
|
+
cors_configuration: Optional[pulumi.Input[pulumi.InputType['CorsConfigurationArgs']]] = None,
|
|
157
|
+
dicom_service_name: Optional[pulumi.Input[str]] = None,
|
|
158
|
+
encryption: Optional[pulumi.Input[pulumi.InputType['EncryptionArgs']]] = None,
|
|
159
|
+
identity: Optional[pulumi.Input[pulumi.InputType['ServiceManagedIdentityIdentityArgs']]] = None,
|
|
160
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
161
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
162
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
163
|
+
workspace_name: Optional[pulumi.Input[str]] = None,
|
|
164
|
+
__props__=None):
|
|
165
|
+
"""
|
|
166
|
+
The description of Dicom Service
|
|
167
|
+
|
|
168
|
+
:param str resource_name: The name of the resource.
|
|
169
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
170
|
+
:param pulumi.Input[pulumi.InputType['CorsConfigurationArgs']] cors_configuration: Dicom Service Cors configuration.
|
|
171
|
+
:param pulumi.Input[str] dicom_service_name: The name of DICOM Service resource.
|
|
172
|
+
:param pulumi.Input[pulumi.InputType['EncryptionArgs']] encryption: The encryption settings of the DICOM service
|
|
173
|
+
:param pulumi.Input[pulumi.InputType['ServiceManagedIdentityIdentityArgs']] identity: Setting indicating whether the service has a managed identity associated with it.
|
|
174
|
+
:param pulumi.Input[str] location: The resource location.
|
|
175
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group that contains the service instance.
|
|
176
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
177
|
+
:param pulumi.Input[str] workspace_name: The name of workspace resource.
|
|
178
|
+
"""
|
|
179
|
+
...
|
|
180
|
+
@overload
|
|
181
|
+
def __init__(__self__,
|
|
182
|
+
resource_name: str,
|
|
183
|
+
args: DicomServiceArgs,
|
|
184
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
185
|
+
"""
|
|
186
|
+
The description of Dicom Service
|
|
187
|
+
|
|
188
|
+
:param str resource_name: The name of the resource.
|
|
189
|
+
:param DicomServiceArgs args: The arguments to use to populate this resource's properties.
|
|
190
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
191
|
+
"""
|
|
192
|
+
...
|
|
193
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
194
|
+
resource_args, opts = _utilities.get_resource_args_opts(DicomServiceArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
195
|
+
if resource_args is not None:
|
|
196
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
197
|
+
else:
|
|
198
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
199
|
+
|
|
200
|
+
def _internal_init(__self__,
|
|
201
|
+
resource_name: str,
|
|
202
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
203
|
+
cors_configuration: Optional[pulumi.Input[pulumi.InputType['CorsConfigurationArgs']]] = None,
|
|
204
|
+
dicom_service_name: Optional[pulumi.Input[str]] = None,
|
|
205
|
+
encryption: Optional[pulumi.Input[pulumi.InputType['EncryptionArgs']]] = None,
|
|
206
|
+
identity: Optional[pulumi.Input[pulumi.InputType['ServiceManagedIdentityIdentityArgs']]] = None,
|
|
207
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
208
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
209
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
210
|
+
workspace_name: Optional[pulumi.Input[str]] = None,
|
|
211
|
+
__props__=None):
|
|
212
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
213
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
214
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
215
|
+
if opts.id is None:
|
|
216
|
+
if __props__ is not None:
|
|
217
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
218
|
+
__props__ = DicomServiceArgs.__new__(DicomServiceArgs)
|
|
219
|
+
|
|
220
|
+
__props__.__dict__["cors_configuration"] = cors_configuration
|
|
221
|
+
__props__.__dict__["dicom_service_name"] = dicom_service_name
|
|
222
|
+
__props__.__dict__["encryption"] = encryption
|
|
223
|
+
__props__.__dict__["identity"] = identity
|
|
224
|
+
__props__.__dict__["location"] = location
|
|
225
|
+
if resource_group_name is None and not opts.urn:
|
|
226
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
227
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
228
|
+
__props__.__dict__["tags"] = tags
|
|
229
|
+
if workspace_name is None and not opts.urn:
|
|
230
|
+
raise TypeError("Missing required property 'workspace_name'")
|
|
231
|
+
__props__.__dict__["workspace_name"] = workspace_name
|
|
232
|
+
__props__.__dict__["authentication_configuration"] = None
|
|
233
|
+
__props__.__dict__["etag"] = None
|
|
234
|
+
__props__.__dict__["event_state"] = None
|
|
235
|
+
__props__.__dict__["name"] = None
|
|
236
|
+
__props__.__dict__["private_endpoint_connections"] = None
|
|
237
|
+
__props__.__dict__["provisioning_state"] = None
|
|
238
|
+
__props__.__dict__["public_network_access"] = None
|
|
239
|
+
__props__.__dict__["service_url"] = None
|
|
240
|
+
__props__.__dict__["system_data"] = None
|
|
241
|
+
__props__.__dict__["type"] = None
|
|
242
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:healthcareapis:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20210601preview:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20211101:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220131preview:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220515:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220601:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20221001preview:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20221201:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20230228:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20230906:DicomService")])
|
|
243
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
244
|
+
super(DicomService, __self__).__init__(
|
|
245
|
+
'azure-native:healthcareapis/v20231101:DicomService',
|
|
246
|
+
resource_name,
|
|
247
|
+
__props__,
|
|
248
|
+
opts)
|
|
249
|
+
|
|
250
|
+
@staticmethod
|
|
251
|
+
def get(resource_name: str,
|
|
252
|
+
id: pulumi.Input[str],
|
|
253
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'DicomService':
|
|
254
|
+
"""
|
|
255
|
+
Get an existing DicomService resource's state with the given name, id, and optional extra
|
|
256
|
+
properties used to qualify the lookup.
|
|
257
|
+
|
|
258
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
259
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
260
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
261
|
+
"""
|
|
262
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
263
|
+
|
|
264
|
+
__props__ = DicomServiceArgs.__new__(DicomServiceArgs)
|
|
265
|
+
|
|
266
|
+
__props__.__dict__["authentication_configuration"] = None
|
|
267
|
+
__props__.__dict__["cors_configuration"] = None
|
|
268
|
+
__props__.__dict__["encryption"] = None
|
|
269
|
+
__props__.__dict__["etag"] = None
|
|
270
|
+
__props__.__dict__["event_state"] = None
|
|
271
|
+
__props__.__dict__["identity"] = None
|
|
272
|
+
__props__.__dict__["location"] = None
|
|
273
|
+
__props__.__dict__["name"] = None
|
|
274
|
+
__props__.__dict__["private_endpoint_connections"] = None
|
|
275
|
+
__props__.__dict__["provisioning_state"] = None
|
|
276
|
+
__props__.__dict__["public_network_access"] = None
|
|
277
|
+
__props__.__dict__["service_url"] = None
|
|
278
|
+
__props__.__dict__["system_data"] = None
|
|
279
|
+
__props__.__dict__["tags"] = None
|
|
280
|
+
__props__.__dict__["type"] = None
|
|
281
|
+
return DicomService(resource_name, opts=opts, __props__=__props__)
|
|
282
|
+
|
|
283
|
+
@property
|
|
284
|
+
@pulumi.getter(name="authenticationConfiguration")
|
|
285
|
+
def authentication_configuration(self) -> pulumi.Output[Optional['outputs.DicomServiceAuthenticationConfigurationResponse']]:
|
|
286
|
+
"""
|
|
287
|
+
Dicom Service authentication configuration.
|
|
288
|
+
"""
|
|
289
|
+
return pulumi.get(self, "authentication_configuration")
|
|
290
|
+
|
|
291
|
+
@property
|
|
292
|
+
@pulumi.getter(name="corsConfiguration")
|
|
293
|
+
def cors_configuration(self) -> pulumi.Output[Optional['outputs.CorsConfigurationResponse']]:
|
|
294
|
+
"""
|
|
295
|
+
Dicom Service Cors configuration.
|
|
296
|
+
"""
|
|
297
|
+
return pulumi.get(self, "cors_configuration")
|
|
298
|
+
|
|
299
|
+
@property
|
|
300
|
+
@pulumi.getter
|
|
301
|
+
def encryption(self) -> pulumi.Output[Optional['outputs.EncryptionResponse']]:
|
|
302
|
+
"""
|
|
303
|
+
The encryption settings of the DICOM service
|
|
304
|
+
"""
|
|
305
|
+
return pulumi.get(self, "encryption")
|
|
306
|
+
|
|
307
|
+
@property
|
|
308
|
+
@pulumi.getter
|
|
309
|
+
def etag(self) -> pulumi.Output[Optional[str]]:
|
|
310
|
+
"""
|
|
311
|
+
An etag associated with the resource, used for optimistic concurrency when editing it.
|
|
312
|
+
"""
|
|
313
|
+
return pulumi.get(self, "etag")
|
|
314
|
+
|
|
315
|
+
@property
|
|
316
|
+
@pulumi.getter(name="eventState")
|
|
317
|
+
def event_state(self) -> pulumi.Output[str]:
|
|
318
|
+
"""
|
|
319
|
+
DICOM Service event support status.
|
|
320
|
+
"""
|
|
321
|
+
return pulumi.get(self, "event_state")
|
|
322
|
+
|
|
323
|
+
@property
|
|
324
|
+
@pulumi.getter
|
|
325
|
+
def identity(self) -> pulumi.Output[Optional['outputs.ServiceManagedIdentityResponseIdentity']]:
|
|
326
|
+
"""
|
|
327
|
+
Setting indicating whether the service has a managed identity associated with it.
|
|
328
|
+
"""
|
|
329
|
+
return pulumi.get(self, "identity")
|
|
330
|
+
|
|
331
|
+
@property
|
|
332
|
+
@pulumi.getter
|
|
333
|
+
def location(self) -> pulumi.Output[Optional[str]]:
|
|
334
|
+
"""
|
|
335
|
+
The resource location.
|
|
336
|
+
"""
|
|
337
|
+
return pulumi.get(self, "location")
|
|
338
|
+
|
|
339
|
+
@property
|
|
340
|
+
@pulumi.getter
|
|
341
|
+
def name(self) -> pulumi.Output[str]:
|
|
342
|
+
"""
|
|
343
|
+
The resource name.
|
|
344
|
+
"""
|
|
345
|
+
return pulumi.get(self, "name")
|
|
346
|
+
|
|
347
|
+
@property
|
|
348
|
+
@pulumi.getter(name="privateEndpointConnections")
|
|
349
|
+
def private_endpoint_connections(self) -> pulumi.Output[Sequence['outputs.PrivateEndpointConnectionResponse']]:
|
|
350
|
+
"""
|
|
351
|
+
The list of private endpoint connections that are set up for this resource.
|
|
352
|
+
"""
|
|
353
|
+
return pulumi.get(self, "private_endpoint_connections")
|
|
354
|
+
|
|
355
|
+
@property
|
|
356
|
+
@pulumi.getter(name="provisioningState")
|
|
357
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
358
|
+
"""
|
|
359
|
+
The provisioning state.
|
|
360
|
+
"""
|
|
361
|
+
return pulumi.get(self, "provisioning_state")
|
|
362
|
+
|
|
363
|
+
@property
|
|
364
|
+
@pulumi.getter(name="publicNetworkAccess")
|
|
365
|
+
def public_network_access(self) -> pulumi.Output[str]:
|
|
366
|
+
"""
|
|
367
|
+
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
|
|
368
|
+
"""
|
|
369
|
+
return pulumi.get(self, "public_network_access")
|
|
370
|
+
|
|
371
|
+
@property
|
|
372
|
+
@pulumi.getter(name="serviceUrl")
|
|
373
|
+
def service_url(self) -> pulumi.Output[str]:
|
|
374
|
+
"""
|
|
375
|
+
The url of the Dicom Services.
|
|
376
|
+
"""
|
|
377
|
+
return pulumi.get(self, "service_url")
|
|
378
|
+
|
|
379
|
+
@property
|
|
380
|
+
@pulumi.getter(name="systemData")
|
|
381
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
382
|
+
"""
|
|
383
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
384
|
+
"""
|
|
385
|
+
return pulumi.get(self, "system_data")
|
|
386
|
+
|
|
387
|
+
@property
|
|
388
|
+
@pulumi.getter
|
|
389
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
390
|
+
"""
|
|
391
|
+
Resource tags.
|
|
392
|
+
"""
|
|
393
|
+
return pulumi.get(self, "tags")
|
|
394
|
+
|
|
395
|
+
@property
|
|
396
|
+
@pulumi.getter
|
|
397
|
+
def type(self) -> pulumi.Output[str]:
|
|
398
|
+
"""
|
|
399
|
+
The resource type.
|
|
400
|
+
"""
|
|
401
|
+
return pulumi.get(self, "type")
|
|
402
|
+
|