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.

Files changed (156) hide show
  1. pulumi_azure_native/__init__.py +54 -0
  2. pulumi_azure_native/config/__init__.pyi +83 -0
  3. pulumi_azure_native/eventhub/__init__.py +3 -0
  4. pulumi_azure_native/eventhub/application_group.py +3 -3
  5. pulumi_azure_native/eventhub/cluster.py +3 -3
  6. pulumi_azure_native/eventhub/consumer_group.py +3 -3
  7. pulumi_azure_native/eventhub/disaster_recovery_config.py +3 -3
  8. pulumi_azure_native/eventhub/event_hub.py +3 -3
  9. pulumi_azure_native/eventhub/event_hub_authorization_rule.py +3 -3
  10. pulumi_azure_native/eventhub/get_application_group.py +2 -2
  11. pulumi_azure_native/eventhub/get_cluster.py +2 -2
  12. pulumi_azure_native/eventhub/get_consumer_group.py +2 -2
  13. pulumi_azure_native/eventhub/get_disaster_recovery_config.py +2 -2
  14. pulumi_azure_native/eventhub/get_event_hub.py +2 -2
  15. pulumi_azure_native/eventhub/get_event_hub_authorization_rule.py +2 -2
  16. pulumi_azure_native/eventhub/get_namespace.py +2 -2
  17. pulumi_azure_native/eventhub/get_namespace_authorization_rule.py +2 -2
  18. pulumi_azure_native/eventhub/get_namespace_network_rule_set.py +2 -2
  19. pulumi_azure_native/eventhub/get_private_endpoint_connection.py +2 -2
  20. pulumi_azure_native/eventhub/get_schema_registry.py +2 -2
  21. pulumi_azure_native/eventhub/list_disaster_recovery_config_keys.py +2 -2
  22. pulumi_azure_native/eventhub/list_event_hub_keys.py +2 -2
  23. pulumi_azure_native/eventhub/list_namespace_keys.py +2 -2
  24. pulumi_azure_native/eventhub/namespace.py +3 -3
  25. pulumi_azure_native/eventhub/namespace_authorization_rule.py +3 -3
  26. pulumi_azure_native/eventhub/namespace_network_rule_set.py +3 -3
  27. pulumi_azure_native/eventhub/private_endpoint_connection.py +3 -3
  28. pulumi_azure_native/eventhub/schema_registry.py +3 -3
  29. pulumi_azure_native/eventhub/v20221001preview/application_group.py +1 -1
  30. pulumi_azure_native/eventhub/v20221001preview/cluster.py +1 -1
  31. pulumi_azure_native/eventhub/v20221001preview/consumer_group.py +1 -1
  32. pulumi_azure_native/eventhub/v20221001preview/disaster_recovery_config.py +1 -1
  33. pulumi_azure_native/eventhub/v20221001preview/event_hub.py +1 -1
  34. pulumi_azure_native/eventhub/v20221001preview/event_hub_authorization_rule.py +1 -1
  35. pulumi_azure_native/eventhub/v20221001preview/namespace.py +1 -1
  36. pulumi_azure_native/eventhub/v20221001preview/namespace_authorization_rule.py +1 -1
  37. pulumi_azure_native/eventhub/v20221001preview/namespace_network_rule_set.py +1 -1
  38. pulumi_azure_native/eventhub/v20221001preview/private_endpoint_connection.py +1 -1
  39. pulumi_azure_native/eventhub/v20221001preview/schema_registry.py +1 -1
  40. pulumi_azure_native/eventhub/v20230101preview/application_group.py +1 -1
  41. pulumi_azure_native/eventhub/v20230101preview/cluster.py +1 -1
  42. pulumi_azure_native/eventhub/v20230101preview/consumer_group.py +1 -1
  43. pulumi_azure_native/eventhub/v20230101preview/disaster_recovery_config.py +1 -1
  44. pulumi_azure_native/eventhub/v20230101preview/event_hub.py +1 -1
  45. pulumi_azure_native/eventhub/v20230101preview/event_hub_authorization_rule.py +1 -1
  46. pulumi_azure_native/eventhub/v20230101preview/namespace.py +1 -1
  47. pulumi_azure_native/eventhub/v20230101preview/namespace_authorization_rule.py +1 -1
  48. pulumi_azure_native/eventhub/v20230101preview/namespace_network_rule_set.py +1 -1
  49. pulumi_azure_native/eventhub/v20230101preview/private_endpoint_connection.py +1 -1
  50. pulumi_azure_native/eventhub/v20230101preview/schema_registry.py +1 -1
  51. pulumi_azure_native/eventhub/v20240101/__init__.py +35 -0
  52. pulumi_azure_native/eventhub/v20240101/_enums.py +223 -0
  53. pulumi_azure_native/eventhub/v20240101/_inputs.py +986 -0
  54. pulumi_azure_native/eventhub/v20240101/application_group.py +285 -0
  55. pulumi_azure_native/eventhub/v20240101/cluster.py +361 -0
  56. pulumi_azure_native/eventhub/v20240101/consumer_group.py +265 -0
  57. pulumi_azure_native/eventhub/v20240101/disaster_recovery_config.py +283 -0
  58. pulumi_azure_native/eventhub/v20240101/event_hub.py +372 -0
  59. pulumi_azure_native/eventhub/v20240101/event_hub_authorization_rule.py +247 -0
  60. pulumi_azure_native/eventhub/v20240101/get_application_group.py +175 -0
  61. pulumi_azure_native/eventhub/v20240101/get_cluster.py +248 -0
  62. pulumi_azure_native/eventhub/v20240101/get_consumer_group.py +180 -0
  63. pulumi_azure_native/eventhub/v20240101/get_disaster_recovery_config.py +201 -0
  64. pulumi_azure_native/eventhub/v20240101/get_event_hub.py +240 -0
  65. pulumi_azure_native/eventhub/v20240101/get_event_hub_authorization_rule.py +154 -0
  66. pulumi_azure_native/eventhub/v20240101/get_namespace.py +391 -0
  67. pulumi_azure_native/eventhub/v20240101/get_namespace_authorization_rule.py +149 -0
  68. pulumi_azure_native/eventhub/v20240101/get_namespace_network_rule_set.py +196 -0
  69. pulumi_azure_native/eventhub/v20240101/get_private_endpoint_connection.py +175 -0
  70. pulumi_azure_native/eventhub/v20240101/get_schema_registry.py +208 -0
  71. pulumi_azure_native/eventhub/v20240101/list_disaster_recovery_config_keys.py +166 -0
  72. pulumi_azure_native/eventhub/v20240101/list_event_hub_keys.py +166 -0
  73. pulumi_azure_native/eventhub/v20240101/list_namespace_keys.py +161 -0
  74. pulumi_azure_native/eventhub/v20240101/namespace.py +668 -0
  75. pulumi_azure_native/eventhub/v20240101/namespace_authorization_rule.py +226 -0
  76. pulumi_azure_native/eventhub/v20240101/namespace_network_rule_set.py +326 -0
  77. pulumi_azure_native/eventhub/v20240101/outputs.py +1336 -0
  78. pulumi_azure_native/eventhub/v20240101/private_endpoint_connection.py +284 -0
  79. pulumi_azure_native/eventhub/v20240101/schema_registry.py +297 -0
  80. pulumi_azure_native/healthcareapis/__init__.py +3 -0
  81. pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
  82. pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
  83. pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
  84. pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
  85. pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
  86. pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
  87. pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
  88. pulumi_azure_native/healthcareapis/get_service.py +2 -2
  89. pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
  90. pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
  91. pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
  92. pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
  93. pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
  94. pulumi_azure_native/healthcareapis/service.py +3 -3
  95. pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
  96. pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
  97. pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
  98. pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
  99. pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
  100. pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
  101. pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
  102. pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
  103. pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
  104. pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
  105. pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
  106. pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
  107. pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
  108. pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
  109. pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
  110. pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
  111. pulumi_azure_native/healthcareapis/v20231101/__init__.py +26 -0
  112. pulumi_azure_native/healthcareapis/v20231101/_enums.py +85 -0
  113. pulumi_azure_native/healthcareapis/v20231101/_inputs.py +1277 -0
  114. pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +402 -0
  115. pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +585 -0
  116. pulumi_azure_native/healthcareapis/v20231101/get_dicom_service.py +279 -0
  117. pulumi_azure_native/healthcareapis/v20231101/get_fhir_service.py +344 -0
  118. pulumi_azure_native/healthcareapis/v20231101/get_iot_connector.py +214 -0
  119. pulumi_azure_native/healthcareapis/v20231101/get_iot_connector_fhir_destination.py +193 -0
  120. pulumi_azure_native/healthcareapis/v20231101/get_private_endpoint_connection.py +162 -0
  121. pulumi_azure_native/healthcareapis/v20231101/get_service.py +196 -0
  122. pulumi_azure_native/healthcareapis/v20231101/get_workspace.py +170 -0
  123. pulumi_azure_native/healthcareapis/v20231101/get_workspace_private_endpoint_connection.py +162 -0
  124. pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +352 -0
  125. pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +337 -0
  126. pulumi_azure_native/healthcareapis/v20231101/outputs.py +1951 -0
  127. pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +237 -0
  128. pulumi_azure_native/healthcareapis/v20231101/service.py +322 -0
  129. pulumi_azure_native/healthcareapis/v20231101/workspace.py +242 -0
  130. pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +237 -0
  131. pulumi_azure_native/healthcareapis/workspace.py +3 -3
  132. pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
  133. pulumi_azure_native/offazurespringboot/__init__.py +22 -0
  134. pulumi_azure_native/offazurespringboot/_enums.py +22 -0
  135. pulumi_azure_native/offazurespringboot/_inputs.py +402 -0
  136. pulumi_azure_native/offazurespringboot/get_springbootserver.py +151 -0
  137. pulumi_azure_native/offazurespringboot/get_springbootsite.py +172 -0
  138. pulumi_azure_native/offazurespringboot/outputs.py +509 -0
  139. pulumi_azure_native/offazurespringboot/springbootserver.py +247 -0
  140. pulumi_azure_native/offazurespringboot/springbootsite.py +284 -0
  141. pulumi_azure_native/offazurespringboot/v20230101preview/__init__.py +14 -0
  142. pulumi_azure_native/offazurespringboot/v20230101preview/_enums.py +22 -0
  143. pulumi_azure_native/offazurespringboot/v20230101preview/_inputs.py +402 -0
  144. pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootserver.py +149 -0
  145. pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootsite.py +170 -0
  146. pulumi_azure_native/offazurespringboot/v20230101preview/outputs.py +509 -0
  147. pulumi_azure_native/offazurespringboot/v20230101preview/springbootserver.py +245 -0
  148. pulumi_azure_native/offazurespringboot/v20230101preview/springbootsite.py +282 -0
  149. pulumi_azure_native/security/alerts_suppression_rule.py +4 -4
  150. pulumi_azure_native/security/get_alerts_suppression_rule.py +1 -1
  151. pulumi_azure_native/security/v20190101preview/alerts_suppression_rule.py +4 -4
  152. pulumi_azure_native/security/v20190101preview/get_alerts_suppression_rule.py +1 -1
  153. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/METADATA +1 -1
  154. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/RECORD +156 -90
  155. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/WHEEL +0 -0
  156. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1951 @@
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
+
14
+ __all__ = [
15
+ 'CorsConfigurationResponse',
16
+ 'DicomServiceAuthenticationConfigurationResponse',
17
+ 'EncryptionResponse',
18
+ 'EncryptionResponseCustomerManagedKeyEncryption',
19
+ 'FhirServiceAcrConfigurationResponse',
20
+ 'FhirServiceAuthenticationConfigurationResponse',
21
+ 'FhirServiceCorsConfigurationResponse',
22
+ 'FhirServiceExportConfigurationResponse',
23
+ 'FhirServiceImportConfigurationResponse',
24
+ 'ImplementationGuidesConfigurationResponse',
25
+ 'IotEventHubIngestionEndpointConfigurationResponse',
26
+ 'IotMappingPropertiesResponse',
27
+ 'PrivateEndpointConnectionResponse',
28
+ 'PrivateEndpointResponse',
29
+ 'PrivateLinkServiceConnectionStateResponse',
30
+ 'ResourceVersionPolicyConfigurationResponse',
31
+ 'ServiceAccessPolicyEntryResponse',
32
+ 'ServiceAcrConfigurationInfoResponse',
33
+ 'ServiceAuthenticationConfigurationInfoResponse',
34
+ 'ServiceCorsConfigurationInfoResponse',
35
+ 'ServiceCosmosDbConfigurationInfoResponse',
36
+ 'ServiceExportConfigurationInfoResponse',
37
+ 'ServiceImportConfigurationInfoResponse',
38
+ 'ServiceManagedIdentityResponseIdentity',
39
+ 'ServiceOciArtifactEntryResponse',
40
+ 'ServicesPropertiesResponse',
41
+ 'ServicesResourceResponseIdentity',
42
+ 'SystemDataResponse',
43
+ 'UserAssignedIdentityResponse',
44
+ 'WorkspaceResponseProperties',
45
+ ]
46
+
47
+ @pulumi.output_type
48
+ class CorsConfigurationResponse(dict):
49
+ """
50
+ The settings for the CORS configuration of the service instance.
51
+ """
52
+ @staticmethod
53
+ def __key_warning(key: str):
54
+ suggest = None
55
+ if key == "allowCredentials":
56
+ suggest = "allow_credentials"
57
+ elif key == "maxAge":
58
+ suggest = "max_age"
59
+
60
+ if suggest:
61
+ pulumi.log.warn(f"Key '{key}' not found in CorsConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
62
+
63
+ def __getitem__(self, key: str) -> Any:
64
+ CorsConfigurationResponse.__key_warning(key)
65
+ return super().__getitem__(key)
66
+
67
+ def get(self, key: str, default = None) -> Any:
68
+ CorsConfigurationResponse.__key_warning(key)
69
+ return super().get(key, default)
70
+
71
+ def __init__(__self__, *,
72
+ allow_credentials: Optional[bool] = None,
73
+ headers: Optional[Sequence[str]] = None,
74
+ max_age: Optional[int] = None,
75
+ methods: Optional[Sequence[str]] = None,
76
+ origins: Optional[Sequence[str]] = None):
77
+ """
78
+ The settings for the CORS configuration of the service instance.
79
+ :param bool allow_credentials: If credentials are allowed via CORS.
80
+ :param Sequence[str] headers: The headers to be allowed via CORS.
81
+ :param int max_age: The max age to be allowed via CORS.
82
+ :param Sequence[str] methods: The methods to be allowed via CORS.
83
+ :param Sequence[str] origins: The origins to be allowed via CORS.
84
+ """
85
+ if allow_credentials is not None:
86
+ pulumi.set(__self__, "allow_credentials", allow_credentials)
87
+ if headers is not None:
88
+ pulumi.set(__self__, "headers", headers)
89
+ if max_age is not None:
90
+ pulumi.set(__self__, "max_age", max_age)
91
+ if methods is not None:
92
+ pulumi.set(__self__, "methods", methods)
93
+ if origins is not None:
94
+ pulumi.set(__self__, "origins", origins)
95
+
96
+ @property
97
+ @pulumi.getter(name="allowCredentials")
98
+ def allow_credentials(self) -> Optional[bool]:
99
+ """
100
+ If credentials are allowed via CORS.
101
+ """
102
+ return pulumi.get(self, "allow_credentials")
103
+
104
+ @property
105
+ @pulumi.getter
106
+ def headers(self) -> Optional[Sequence[str]]:
107
+ """
108
+ The headers to be allowed via CORS.
109
+ """
110
+ return pulumi.get(self, "headers")
111
+
112
+ @property
113
+ @pulumi.getter(name="maxAge")
114
+ def max_age(self) -> Optional[int]:
115
+ """
116
+ The max age to be allowed via CORS.
117
+ """
118
+ return pulumi.get(self, "max_age")
119
+
120
+ @property
121
+ @pulumi.getter
122
+ def methods(self) -> Optional[Sequence[str]]:
123
+ """
124
+ The methods to be allowed via CORS.
125
+ """
126
+ return pulumi.get(self, "methods")
127
+
128
+ @property
129
+ @pulumi.getter
130
+ def origins(self) -> Optional[Sequence[str]]:
131
+ """
132
+ The origins to be allowed via CORS.
133
+ """
134
+ return pulumi.get(self, "origins")
135
+
136
+
137
+ @pulumi.output_type
138
+ class DicomServiceAuthenticationConfigurationResponse(dict):
139
+ """
140
+ Authentication configuration information
141
+ """
142
+ def __init__(__self__, *,
143
+ audiences: Sequence[str],
144
+ authority: str):
145
+ """
146
+ Authentication configuration information
147
+ :param Sequence[str] audiences: The audiences for the service
148
+ :param str authority: The authority url for the service
149
+ """
150
+ pulumi.set(__self__, "audiences", audiences)
151
+ pulumi.set(__self__, "authority", authority)
152
+
153
+ @property
154
+ @pulumi.getter
155
+ def audiences(self) -> Sequence[str]:
156
+ """
157
+ The audiences for the service
158
+ """
159
+ return pulumi.get(self, "audiences")
160
+
161
+ @property
162
+ @pulumi.getter
163
+ def authority(self) -> str:
164
+ """
165
+ The authority url for the service
166
+ """
167
+ return pulumi.get(self, "authority")
168
+
169
+
170
+ @pulumi.output_type
171
+ class EncryptionResponse(dict):
172
+ """
173
+ Settings to encrypt a service
174
+ """
175
+ @staticmethod
176
+ def __key_warning(key: str):
177
+ suggest = None
178
+ if key == "customerManagedKeyEncryption":
179
+ suggest = "customer_managed_key_encryption"
180
+
181
+ if suggest:
182
+ pulumi.log.warn(f"Key '{key}' not found in EncryptionResponse. Access the value via the '{suggest}' property getter instead.")
183
+
184
+ def __getitem__(self, key: str) -> Any:
185
+ EncryptionResponse.__key_warning(key)
186
+ return super().__getitem__(key)
187
+
188
+ def get(self, key: str, default = None) -> Any:
189
+ EncryptionResponse.__key_warning(key)
190
+ return super().get(key, default)
191
+
192
+ def __init__(__self__, *,
193
+ customer_managed_key_encryption: Optional['outputs.EncryptionResponseCustomerManagedKeyEncryption'] = None):
194
+ """
195
+ Settings to encrypt a service
196
+ :param 'EncryptionResponseCustomerManagedKeyEncryption' customer_managed_key_encryption: The encryption settings for the customer-managed key
197
+ """
198
+ if customer_managed_key_encryption is not None:
199
+ pulumi.set(__self__, "customer_managed_key_encryption", customer_managed_key_encryption)
200
+
201
+ @property
202
+ @pulumi.getter(name="customerManagedKeyEncryption")
203
+ def customer_managed_key_encryption(self) -> Optional['outputs.EncryptionResponseCustomerManagedKeyEncryption']:
204
+ """
205
+ The encryption settings for the customer-managed key
206
+ """
207
+ return pulumi.get(self, "customer_managed_key_encryption")
208
+
209
+
210
+ @pulumi.output_type
211
+ class EncryptionResponseCustomerManagedKeyEncryption(dict):
212
+ """
213
+ The encryption settings for the customer-managed key
214
+ """
215
+ @staticmethod
216
+ def __key_warning(key: str):
217
+ suggest = None
218
+ if key == "keyEncryptionKeyUrl":
219
+ suggest = "key_encryption_key_url"
220
+
221
+ if suggest:
222
+ pulumi.log.warn(f"Key '{key}' not found in EncryptionResponseCustomerManagedKeyEncryption. Access the value via the '{suggest}' property getter instead.")
223
+
224
+ def __getitem__(self, key: str) -> Any:
225
+ EncryptionResponseCustomerManagedKeyEncryption.__key_warning(key)
226
+ return super().__getitem__(key)
227
+
228
+ def get(self, key: str, default = None) -> Any:
229
+ EncryptionResponseCustomerManagedKeyEncryption.__key_warning(key)
230
+ return super().get(key, default)
231
+
232
+ def __init__(__self__, *,
233
+ key_encryption_key_url: Optional[str] = None):
234
+ """
235
+ The encryption settings for the customer-managed key
236
+ :param str key_encryption_key_url: The URL of the key to use for encryption
237
+ """
238
+ if key_encryption_key_url is not None:
239
+ pulumi.set(__self__, "key_encryption_key_url", key_encryption_key_url)
240
+
241
+ @property
242
+ @pulumi.getter(name="keyEncryptionKeyUrl")
243
+ def key_encryption_key_url(self) -> Optional[str]:
244
+ """
245
+ The URL of the key to use for encryption
246
+ """
247
+ return pulumi.get(self, "key_encryption_key_url")
248
+
249
+
250
+ @pulumi.output_type
251
+ class FhirServiceAcrConfigurationResponse(dict):
252
+ """
253
+ Azure container registry configuration information
254
+ """
255
+ @staticmethod
256
+ def __key_warning(key: str):
257
+ suggest = None
258
+ if key == "loginServers":
259
+ suggest = "login_servers"
260
+ elif key == "ociArtifacts":
261
+ suggest = "oci_artifacts"
262
+
263
+ if suggest:
264
+ pulumi.log.warn(f"Key '{key}' not found in FhirServiceAcrConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
265
+
266
+ def __getitem__(self, key: str) -> Any:
267
+ FhirServiceAcrConfigurationResponse.__key_warning(key)
268
+ return super().__getitem__(key)
269
+
270
+ def get(self, key: str, default = None) -> Any:
271
+ FhirServiceAcrConfigurationResponse.__key_warning(key)
272
+ return super().get(key, default)
273
+
274
+ def __init__(__self__, *,
275
+ login_servers: Optional[Sequence[str]] = None,
276
+ oci_artifacts: Optional[Sequence['outputs.ServiceOciArtifactEntryResponse']] = None):
277
+ """
278
+ Azure container registry configuration information
279
+ :param Sequence[str] login_servers: The list of the Azure container registry login servers.
280
+ :param Sequence['ServiceOciArtifactEntryResponse'] oci_artifacts: The list of Open Container Initiative (OCI) artifacts.
281
+ """
282
+ if login_servers is not None:
283
+ pulumi.set(__self__, "login_servers", login_servers)
284
+ if oci_artifacts is not None:
285
+ pulumi.set(__self__, "oci_artifacts", oci_artifacts)
286
+
287
+ @property
288
+ @pulumi.getter(name="loginServers")
289
+ def login_servers(self) -> Optional[Sequence[str]]:
290
+ """
291
+ The list of the Azure container registry login servers.
292
+ """
293
+ return pulumi.get(self, "login_servers")
294
+
295
+ @property
296
+ @pulumi.getter(name="ociArtifacts")
297
+ def oci_artifacts(self) -> Optional[Sequence['outputs.ServiceOciArtifactEntryResponse']]:
298
+ """
299
+ The list of Open Container Initiative (OCI) artifacts.
300
+ """
301
+ return pulumi.get(self, "oci_artifacts")
302
+
303
+
304
+ @pulumi.output_type
305
+ class FhirServiceAuthenticationConfigurationResponse(dict):
306
+ """
307
+ Authentication configuration information
308
+ """
309
+ @staticmethod
310
+ def __key_warning(key: str):
311
+ suggest = None
312
+ if key == "smartProxyEnabled":
313
+ suggest = "smart_proxy_enabled"
314
+
315
+ if suggest:
316
+ pulumi.log.warn(f"Key '{key}' not found in FhirServiceAuthenticationConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
317
+
318
+ def __getitem__(self, key: str) -> Any:
319
+ FhirServiceAuthenticationConfigurationResponse.__key_warning(key)
320
+ return super().__getitem__(key)
321
+
322
+ def get(self, key: str, default = None) -> Any:
323
+ FhirServiceAuthenticationConfigurationResponse.__key_warning(key)
324
+ return super().get(key, default)
325
+
326
+ def __init__(__self__, *,
327
+ audience: Optional[str] = None,
328
+ authority: Optional[str] = None,
329
+ smart_proxy_enabled: Optional[bool] = None):
330
+ """
331
+ Authentication configuration information
332
+ :param str audience: The audience url for the service
333
+ :param str authority: The authority url for the service
334
+ :param bool smart_proxy_enabled: If the SMART on FHIR proxy is enabled
335
+ """
336
+ if audience is not None:
337
+ pulumi.set(__self__, "audience", audience)
338
+ if authority is not None:
339
+ pulumi.set(__self__, "authority", authority)
340
+ if smart_proxy_enabled is not None:
341
+ pulumi.set(__self__, "smart_proxy_enabled", smart_proxy_enabled)
342
+
343
+ @property
344
+ @pulumi.getter
345
+ def audience(self) -> Optional[str]:
346
+ """
347
+ The audience url for the service
348
+ """
349
+ return pulumi.get(self, "audience")
350
+
351
+ @property
352
+ @pulumi.getter
353
+ def authority(self) -> Optional[str]:
354
+ """
355
+ The authority url for the service
356
+ """
357
+ return pulumi.get(self, "authority")
358
+
359
+ @property
360
+ @pulumi.getter(name="smartProxyEnabled")
361
+ def smart_proxy_enabled(self) -> Optional[bool]:
362
+ """
363
+ If the SMART on FHIR proxy is enabled
364
+ """
365
+ return pulumi.get(self, "smart_proxy_enabled")
366
+
367
+
368
+ @pulumi.output_type
369
+ class FhirServiceCorsConfigurationResponse(dict):
370
+ """
371
+ The settings for the CORS configuration of the service instance.
372
+ """
373
+ @staticmethod
374
+ def __key_warning(key: str):
375
+ suggest = None
376
+ if key == "allowCredentials":
377
+ suggest = "allow_credentials"
378
+ elif key == "maxAge":
379
+ suggest = "max_age"
380
+
381
+ if suggest:
382
+ pulumi.log.warn(f"Key '{key}' not found in FhirServiceCorsConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
383
+
384
+ def __getitem__(self, key: str) -> Any:
385
+ FhirServiceCorsConfigurationResponse.__key_warning(key)
386
+ return super().__getitem__(key)
387
+
388
+ def get(self, key: str, default = None) -> Any:
389
+ FhirServiceCorsConfigurationResponse.__key_warning(key)
390
+ return super().get(key, default)
391
+
392
+ def __init__(__self__, *,
393
+ allow_credentials: Optional[bool] = None,
394
+ headers: Optional[Sequence[str]] = None,
395
+ max_age: Optional[int] = None,
396
+ methods: Optional[Sequence[str]] = None,
397
+ origins: Optional[Sequence[str]] = None):
398
+ """
399
+ The settings for the CORS configuration of the service instance.
400
+ :param bool allow_credentials: If credentials are allowed via CORS.
401
+ :param Sequence[str] headers: The headers to be allowed via CORS.
402
+ :param int max_age: The max age to be allowed via CORS.
403
+ :param Sequence[str] methods: The methods to be allowed via CORS.
404
+ :param Sequence[str] origins: The origins to be allowed via CORS.
405
+ """
406
+ if allow_credentials is not None:
407
+ pulumi.set(__self__, "allow_credentials", allow_credentials)
408
+ if headers is not None:
409
+ pulumi.set(__self__, "headers", headers)
410
+ if max_age is not None:
411
+ pulumi.set(__self__, "max_age", max_age)
412
+ if methods is not None:
413
+ pulumi.set(__self__, "methods", methods)
414
+ if origins is not None:
415
+ pulumi.set(__self__, "origins", origins)
416
+
417
+ @property
418
+ @pulumi.getter(name="allowCredentials")
419
+ def allow_credentials(self) -> Optional[bool]:
420
+ """
421
+ If credentials are allowed via CORS.
422
+ """
423
+ return pulumi.get(self, "allow_credentials")
424
+
425
+ @property
426
+ @pulumi.getter
427
+ def headers(self) -> Optional[Sequence[str]]:
428
+ """
429
+ The headers to be allowed via CORS.
430
+ """
431
+ return pulumi.get(self, "headers")
432
+
433
+ @property
434
+ @pulumi.getter(name="maxAge")
435
+ def max_age(self) -> Optional[int]:
436
+ """
437
+ The max age to be allowed via CORS.
438
+ """
439
+ return pulumi.get(self, "max_age")
440
+
441
+ @property
442
+ @pulumi.getter
443
+ def methods(self) -> Optional[Sequence[str]]:
444
+ """
445
+ The methods to be allowed via CORS.
446
+ """
447
+ return pulumi.get(self, "methods")
448
+
449
+ @property
450
+ @pulumi.getter
451
+ def origins(self) -> Optional[Sequence[str]]:
452
+ """
453
+ The origins to be allowed via CORS.
454
+ """
455
+ return pulumi.get(self, "origins")
456
+
457
+
458
+ @pulumi.output_type
459
+ class FhirServiceExportConfigurationResponse(dict):
460
+ """
461
+ Export operation configuration information
462
+ """
463
+ @staticmethod
464
+ def __key_warning(key: str):
465
+ suggest = None
466
+ if key == "storageAccountName":
467
+ suggest = "storage_account_name"
468
+
469
+ if suggest:
470
+ pulumi.log.warn(f"Key '{key}' not found in FhirServiceExportConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
471
+
472
+ def __getitem__(self, key: str) -> Any:
473
+ FhirServiceExportConfigurationResponse.__key_warning(key)
474
+ return super().__getitem__(key)
475
+
476
+ def get(self, key: str, default = None) -> Any:
477
+ FhirServiceExportConfigurationResponse.__key_warning(key)
478
+ return super().get(key, default)
479
+
480
+ def __init__(__self__, *,
481
+ storage_account_name: Optional[str] = None):
482
+ """
483
+ Export operation configuration information
484
+ :param str storage_account_name: The name of the default export storage account.
485
+ """
486
+ if storage_account_name is not None:
487
+ pulumi.set(__self__, "storage_account_name", storage_account_name)
488
+
489
+ @property
490
+ @pulumi.getter(name="storageAccountName")
491
+ def storage_account_name(self) -> Optional[str]:
492
+ """
493
+ The name of the default export storage account.
494
+ """
495
+ return pulumi.get(self, "storage_account_name")
496
+
497
+
498
+ @pulumi.output_type
499
+ class FhirServiceImportConfigurationResponse(dict):
500
+ """
501
+ Import operation configuration information
502
+ """
503
+ @staticmethod
504
+ def __key_warning(key: str):
505
+ suggest = None
506
+ if key == "initialImportMode":
507
+ suggest = "initial_import_mode"
508
+ elif key == "integrationDataStore":
509
+ suggest = "integration_data_store"
510
+
511
+ if suggest:
512
+ pulumi.log.warn(f"Key '{key}' not found in FhirServiceImportConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
513
+
514
+ def __getitem__(self, key: str) -> Any:
515
+ FhirServiceImportConfigurationResponse.__key_warning(key)
516
+ return super().__getitem__(key)
517
+
518
+ def get(self, key: str, default = None) -> Any:
519
+ FhirServiceImportConfigurationResponse.__key_warning(key)
520
+ return super().get(key, default)
521
+
522
+ def __init__(__self__, *,
523
+ enabled: Optional[bool] = None,
524
+ initial_import_mode: Optional[bool] = None,
525
+ integration_data_store: Optional[str] = None):
526
+ """
527
+ Import operation configuration information
528
+ :param bool enabled: If the import operation is enabled.
529
+ :param bool initial_import_mode: If the FHIR service is in InitialImportMode.
530
+ :param str integration_data_store: The name of the default integration storage account.
531
+ """
532
+ if enabled is not None:
533
+ pulumi.set(__self__, "enabled", enabled)
534
+ if initial_import_mode is not None:
535
+ pulumi.set(__self__, "initial_import_mode", initial_import_mode)
536
+ if integration_data_store is not None:
537
+ pulumi.set(__self__, "integration_data_store", integration_data_store)
538
+
539
+ @property
540
+ @pulumi.getter
541
+ def enabled(self) -> Optional[bool]:
542
+ """
543
+ If the import operation is enabled.
544
+ """
545
+ return pulumi.get(self, "enabled")
546
+
547
+ @property
548
+ @pulumi.getter(name="initialImportMode")
549
+ def initial_import_mode(self) -> Optional[bool]:
550
+ """
551
+ If the FHIR service is in InitialImportMode.
552
+ """
553
+ return pulumi.get(self, "initial_import_mode")
554
+
555
+ @property
556
+ @pulumi.getter(name="integrationDataStore")
557
+ def integration_data_store(self) -> Optional[str]:
558
+ """
559
+ The name of the default integration storage account.
560
+ """
561
+ return pulumi.get(self, "integration_data_store")
562
+
563
+
564
+ @pulumi.output_type
565
+ class ImplementationGuidesConfigurationResponse(dict):
566
+ """
567
+ The settings for Implementation Guides - defining capabilities for national standards, vendor consortiums, clinical societies, etc.
568
+ """
569
+ @staticmethod
570
+ def __key_warning(key: str):
571
+ suggest = None
572
+ if key == "usCoreMissingData":
573
+ suggest = "us_core_missing_data"
574
+
575
+ if suggest:
576
+ pulumi.log.warn(f"Key '{key}' not found in ImplementationGuidesConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
577
+
578
+ def __getitem__(self, key: str) -> Any:
579
+ ImplementationGuidesConfigurationResponse.__key_warning(key)
580
+ return super().__getitem__(key)
581
+
582
+ def get(self, key: str, default = None) -> Any:
583
+ ImplementationGuidesConfigurationResponse.__key_warning(key)
584
+ return super().get(key, default)
585
+
586
+ def __init__(__self__, *,
587
+ us_core_missing_data: Optional[bool] = None):
588
+ """
589
+ The settings for Implementation Guides - defining capabilities for national standards, vendor consortiums, clinical societies, etc.
590
+ :param bool us_core_missing_data: If US Core Missing Data requirement is enabled.
591
+ """
592
+ if us_core_missing_data is not None:
593
+ pulumi.set(__self__, "us_core_missing_data", us_core_missing_data)
594
+
595
+ @property
596
+ @pulumi.getter(name="usCoreMissingData")
597
+ def us_core_missing_data(self) -> Optional[bool]:
598
+ """
599
+ If US Core Missing Data requirement is enabled.
600
+ """
601
+ return pulumi.get(self, "us_core_missing_data")
602
+
603
+
604
+ @pulumi.output_type
605
+ class IotEventHubIngestionEndpointConfigurationResponse(dict):
606
+ """
607
+ Event Hub ingestion endpoint configuration
608
+ """
609
+ @staticmethod
610
+ def __key_warning(key: str):
611
+ suggest = None
612
+ if key == "consumerGroup":
613
+ suggest = "consumer_group"
614
+ elif key == "eventHubName":
615
+ suggest = "event_hub_name"
616
+ elif key == "fullyQualifiedEventHubNamespace":
617
+ suggest = "fully_qualified_event_hub_namespace"
618
+
619
+ if suggest:
620
+ pulumi.log.warn(f"Key '{key}' not found in IotEventHubIngestionEndpointConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
621
+
622
+ def __getitem__(self, key: str) -> Any:
623
+ IotEventHubIngestionEndpointConfigurationResponse.__key_warning(key)
624
+ return super().__getitem__(key)
625
+
626
+ def get(self, key: str, default = None) -> Any:
627
+ IotEventHubIngestionEndpointConfigurationResponse.__key_warning(key)
628
+ return super().get(key, default)
629
+
630
+ def __init__(__self__, *,
631
+ consumer_group: Optional[str] = None,
632
+ event_hub_name: Optional[str] = None,
633
+ fully_qualified_event_hub_namespace: Optional[str] = None):
634
+ """
635
+ Event Hub ingestion endpoint configuration
636
+ :param str consumer_group: Consumer group of the event hub to connected to.
637
+ :param str event_hub_name: Event Hub name to connect to.
638
+ :param str fully_qualified_event_hub_namespace: Fully qualified namespace of the Event Hub to connect to.
639
+ """
640
+ if consumer_group is not None:
641
+ pulumi.set(__self__, "consumer_group", consumer_group)
642
+ if event_hub_name is not None:
643
+ pulumi.set(__self__, "event_hub_name", event_hub_name)
644
+ if fully_qualified_event_hub_namespace is not None:
645
+ pulumi.set(__self__, "fully_qualified_event_hub_namespace", fully_qualified_event_hub_namespace)
646
+
647
+ @property
648
+ @pulumi.getter(name="consumerGroup")
649
+ def consumer_group(self) -> Optional[str]:
650
+ """
651
+ Consumer group of the event hub to connected to.
652
+ """
653
+ return pulumi.get(self, "consumer_group")
654
+
655
+ @property
656
+ @pulumi.getter(name="eventHubName")
657
+ def event_hub_name(self) -> Optional[str]:
658
+ """
659
+ Event Hub name to connect to.
660
+ """
661
+ return pulumi.get(self, "event_hub_name")
662
+
663
+ @property
664
+ @pulumi.getter(name="fullyQualifiedEventHubNamespace")
665
+ def fully_qualified_event_hub_namespace(self) -> Optional[str]:
666
+ """
667
+ Fully qualified namespace of the Event Hub to connect to.
668
+ """
669
+ return pulumi.get(self, "fully_qualified_event_hub_namespace")
670
+
671
+
672
+ @pulumi.output_type
673
+ class IotMappingPropertiesResponse(dict):
674
+ """
675
+ The mapping content.
676
+ """
677
+ def __init__(__self__, *,
678
+ content: Optional[Any] = None):
679
+ """
680
+ The mapping content.
681
+ :param Any content: The mapping.
682
+ """
683
+ if content is not None:
684
+ pulumi.set(__self__, "content", content)
685
+
686
+ @property
687
+ @pulumi.getter
688
+ def content(self) -> Optional[Any]:
689
+ """
690
+ The mapping.
691
+ """
692
+ return pulumi.get(self, "content")
693
+
694
+
695
+ @pulumi.output_type
696
+ class PrivateEndpointConnectionResponse(dict):
697
+ """
698
+ The Private Endpoint Connection resource.
699
+ """
700
+ @staticmethod
701
+ def __key_warning(key: str):
702
+ suggest = None
703
+ if key == "privateLinkServiceConnectionState":
704
+ suggest = "private_link_service_connection_state"
705
+ elif key == "provisioningState":
706
+ suggest = "provisioning_state"
707
+ elif key == "privateEndpoint":
708
+ suggest = "private_endpoint"
709
+
710
+ if suggest:
711
+ pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionResponse. Access the value via the '{suggest}' property getter instead.")
712
+
713
+ def __getitem__(self, key: str) -> Any:
714
+ PrivateEndpointConnectionResponse.__key_warning(key)
715
+ return super().__getitem__(key)
716
+
717
+ def get(self, key: str, default = None) -> Any:
718
+ PrivateEndpointConnectionResponse.__key_warning(key)
719
+ return super().get(key, default)
720
+
721
+ def __init__(__self__, *,
722
+ id: str,
723
+ name: str,
724
+ private_link_service_connection_state: 'outputs.PrivateLinkServiceConnectionStateResponse',
725
+ provisioning_state: str,
726
+ type: str,
727
+ private_endpoint: Optional['outputs.PrivateEndpointResponse'] = None):
728
+ """
729
+ The Private Endpoint Connection resource.
730
+ :param str id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
731
+ :param str name: The name of the resource
732
+ :param 'PrivateLinkServiceConnectionStateResponse' private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
733
+ :param str provisioning_state: The provisioning state of the private endpoint connection resource.
734
+ :param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
735
+ :param 'PrivateEndpointResponse' private_endpoint: The resource of private end point.
736
+ """
737
+ pulumi.set(__self__, "id", id)
738
+ pulumi.set(__self__, "name", name)
739
+ pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
740
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
741
+ pulumi.set(__self__, "type", type)
742
+ if private_endpoint is not None:
743
+ pulumi.set(__self__, "private_endpoint", private_endpoint)
744
+
745
+ @property
746
+ @pulumi.getter
747
+ def id(self) -> str:
748
+ """
749
+ Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
750
+ """
751
+ return pulumi.get(self, "id")
752
+
753
+ @property
754
+ @pulumi.getter
755
+ def name(self) -> str:
756
+ """
757
+ The name of the resource
758
+ """
759
+ return pulumi.get(self, "name")
760
+
761
+ @property
762
+ @pulumi.getter(name="privateLinkServiceConnectionState")
763
+ def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
764
+ """
765
+ A collection of information about the state of the connection between service consumer and provider.
766
+ """
767
+ return pulumi.get(self, "private_link_service_connection_state")
768
+
769
+ @property
770
+ @pulumi.getter(name="provisioningState")
771
+ def provisioning_state(self) -> str:
772
+ """
773
+ The provisioning state of the private endpoint connection resource.
774
+ """
775
+ return pulumi.get(self, "provisioning_state")
776
+
777
+ @property
778
+ @pulumi.getter
779
+ def type(self) -> str:
780
+ """
781
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
782
+ """
783
+ return pulumi.get(self, "type")
784
+
785
+ @property
786
+ @pulumi.getter(name="privateEndpoint")
787
+ def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
788
+ """
789
+ The resource of private end point.
790
+ """
791
+ return pulumi.get(self, "private_endpoint")
792
+
793
+
794
+ @pulumi.output_type
795
+ class PrivateEndpointResponse(dict):
796
+ """
797
+ The Private Endpoint resource.
798
+ """
799
+ def __init__(__self__, *,
800
+ id: str):
801
+ """
802
+ The Private Endpoint resource.
803
+ :param str id: The ARM identifier for Private Endpoint
804
+ """
805
+ pulumi.set(__self__, "id", id)
806
+
807
+ @property
808
+ @pulumi.getter
809
+ def id(self) -> str:
810
+ """
811
+ The ARM identifier for Private Endpoint
812
+ """
813
+ return pulumi.get(self, "id")
814
+
815
+
816
+ @pulumi.output_type
817
+ class PrivateLinkServiceConnectionStateResponse(dict):
818
+ """
819
+ A collection of information about the state of the connection between service consumer and provider.
820
+ """
821
+ @staticmethod
822
+ def __key_warning(key: str):
823
+ suggest = None
824
+ if key == "actionsRequired":
825
+ suggest = "actions_required"
826
+
827
+ if suggest:
828
+ pulumi.log.warn(f"Key '{key}' not found in PrivateLinkServiceConnectionStateResponse. Access the value via the '{suggest}' property getter instead.")
829
+
830
+ def __getitem__(self, key: str) -> Any:
831
+ PrivateLinkServiceConnectionStateResponse.__key_warning(key)
832
+ return super().__getitem__(key)
833
+
834
+ def get(self, key: str, default = None) -> Any:
835
+ PrivateLinkServiceConnectionStateResponse.__key_warning(key)
836
+ return super().get(key, default)
837
+
838
+ def __init__(__self__, *,
839
+ actions_required: Optional[str] = None,
840
+ description: Optional[str] = None,
841
+ status: Optional[str] = None):
842
+ """
843
+ A collection of information about the state of the connection between service consumer and provider.
844
+ :param str actions_required: A message indicating if changes on the service provider require any updates on the consumer.
845
+ :param str description: The reason for approval/rejection of the connection.
846
+ :param str status: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
847
+ """
848
+ if actions_required is not None:
849
+ pulumi.set(__self__, "actions_required", actions_required)
850
+ if description is not None:
851
+ pulumi.set(__self__, "description", description)
852
+ if status is not None:
853
+ pulumi.set(__self__, "status", status)
854
+
855
+ @property
856
+ @pulumi.getter(name="actionsRequired")
857
+ def actions_required(self) -> Optional[str]:
858
+ """
859
+ A message indicating if changes on the service provider require any updates on the consumer.
860
+ """
861
+ return pulumi.get(self, "actions_required")
862
+
863
+ @property
864
+ @pulumi.getter
865
+ def description(self) -> Optional[str]:
866
+ """
867
+ The reason for approval/rejection of the connection.
868
+ """
869
+ return pulumi.get(self, "description")
870
+
871
+ @property
872
+ @pulumi.getter
873
+ def status(self) -> Optional[str]:
874
+ """
875
+ Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
876
+ """
877
+ return pulumi.get(self, "status")
878
+
879
+
880
+ @pulumi.output_type
881
+ class ResourceVersionPolicyConfigurationResponse(dict):
882
+ """
883
+ The settings for history tracking for FHIR resources.
884
+ """
885
+ @staticmethod
886
+ def __key_warning(key: str):
887
+ suggest = None
888
+ if key == "resourceTypeOverrides":
889
+ suggest = "resource_type_overrides"
890
+
891
+ if suggest:
892
+ pulumi.log.warn(f"Key '{key}' not found in ResourceVersionPolicyConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
893
+
894
+ def __getitem__(self, key: str) -> Any:
895
+ ResourceVersionPolicyConfigurationResponse.__key_warning(key)
896
+ return super().__getitem__(key)
897
+
898
+ def get(self, key: str, default = None) -> Any:
899
+ ResourceVersionPolicyConfigurationResponse.__key_warning(key)
900
+ return super().get(key, default)
901
+
902
+ def __init__(__self__, *,
903
+ default: Optional[str] = None,
904
+ resource_type_overrides: Optional[Mapping[str, str]] = None):
905
+ """
906
+ The settings for history tracking for FHIR resources.
907
+ :param str default: The default value for tracking history across all resources.
908
+ :param Mapping[str, str] resource_type_overrides: A list of FHIR Resources and their version policy overrides.
909
+ """
910
+ if default is not None:
911
+ pulumi.set(__self__, "default", default)
912
+ if resource_type_overrides is not None:
913
+ pulumi.set(__self__, "resource_type_overrides", resource_type_overrides)
914
+
915
+ @property
916
+ @pulumi.getter
917
+ def default(self) -> Optional[str]:
918
+ """
919
+ The default value for tracking history across all resources.
920
+ """
921
+ return pulumi.get(self, "default")
922
+
923
+ @property
924
+ @pulumi.getter(name="resourceTypeOverrides")
925
+ def resource_type_overrides(self) -> Optional[Mapping[str, str]]:
926
+ """
927
+ A list of FHIR Resources and their version policy overrides.
928
+ """
929
+ return pulumi.get(self, "resource_type_overrides")
930
+
931
+
932
+ @pulumi.output_type
933
+ class ServiceAccessPolicyEntryResponse(dict):
934
+ """
935
+ An access policy entry.
936
+ """
937
+ @staticmethod
938
+ def __key_warning(key: str):
939
+ suggest = None
940
+ if key == "objectId":
941
+ suggest = "object_id"
942
+
943
+ if suggest:
944
+ pulumi.log.warn(f"Key '{key}' not found in ServiceAccessPolicyEntryResponse. Access the value via the '{suggest}' property getter instead.")
945
+
946
+ def __getitem__(self, key: str) -> Any:
947
+ ServiceAccessPolicyEntryResponse.__key_warning(key)
948
+ return super().__getitem__(key)
949
+
950
+ def get(self, key: str, default = None) -> Any:
951
+ ServiceAccessPolicyEntryResponse.__key_warning(key)
952
+ return super().get(key, default)
953
+
954
+ def __init__(__self__, *,
955
+ object_id: str):
956
+ """
957
+ An access policy entry.
958
+ :param str object_id: An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
959
+ """
960
+ pulumi.set(__self__, "object_id", object_id)
961
+
962
+ @property
963
+ @pulumi.getter(name="objectId")
964
+ def object_id(self) -> str:
965
+ """
966
+ An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
967
+ """
968
+ return pulumi.get(self, "object_id")
969
+
970
+
971
+ @pulumi.output_type
972
+ class ServiceAcrConfigurationInfoResponse(dict):
973
+ """
974
+ Azure container registry configuration information
975
+ """
976
+ @staticmethod
977
+ def __key_warning(key: str):
978
+ suggest = None
979
+ if key == "loginServers":
980
+ suggest = "login_servers"
981
+ elif key == "ociArtifacts":
982
+ suggest = "oci_artifacts"
983
+
984
+ if suggest:
985
+ pulumi.log.warn(f"Key '{key}' not found in ServiceAcrConfigurationInfoResponse. Access the value via the '{suggest}' property getter instead.")
986
+
987
+ def __getitem__(self, key: str) -> Any:
988
+ ServiceAcrConfigurationInfoResponse.__key_warning(key)
989
+ return super().__getitem__(key)
990
+
991
+ def get(self, key: str, default = None) -> Any:
992
+ ServiceAcrConfigurationInfoResponse.__key_warning(key)
993
+ return super().get(key, default)
994
+
995
+ def __init__(__self__, *,
996
+ login_servers: Optional[Sequence[str]] = None,
997
+ oci_artifacts: Optional[Sequence['outputs.ServiceOciArtifactEntryResponse']] = None):
998
+ """
999
+ Azure container registry configuration information
1000
+ :param Sequence[str] login_servers: The list of the ACR login servers.
1001
+ :param Sequence['ServiceOciArtifactEntryResponse'] oci_artifacts: The list of Open Container Initiative (OCI) artifacts.
1002
+ """
1003
+ if login_servers is not None:
1004
+ pulumi.set(__self__, "login_servers", login_servers)
1005
+ if oci_artifacts is not None:
1006
+ pulumi.set(__self__, "oci_artifacts", oci_artifacts)
1007
+
1008
+ @property
1009
+ @pulumi.getter(name="loginServers")
1010
+ def login_servers(self) -> Optional[Sequence[str]]:
1011
+ """
1012
+ The list of the ACR login servers.
1013
+ """
1014
+ return pulumi.get(self, "login_servers")
1015
+
1016
+ @property
1017
+ @pulumi.getter(name="ociArtifacts")
1018
+ def oci_artifacts(self) -> Optional[Sequence['outputs.ServiceOciArtifactEntryResponse']]:
1019
+ """
1020
+ The list of Open Container Initiative (OCI) artifacts.
1021
+ """
1022
+ return pulumi.get(self, "oci_artifacts")
1023
+
1024
+
1025
+ @pulumi.output_type
1026
+ class ServiceAuthenticationConfigurationInfoResponse(dict):
1027
+ """
1028
+ Authentication configuration information
1029
+ """
1030
+ @staticmethod
1031
+ def __key_warning(key: str):
1032
+ suggest = None
1033
+ if key == "smartProxyEnabled":
1034
+ suggest = "smart_proxy_enabled"
1035
+
1036
+ if suggest:
1037
+ pulumi.log.warn(f"Key '{key}' not found in ServiceAuthenticationConfigurationInfoResponse. Access the value via the '{suggest}' property getter instead.")
1038
+
1039
+ def __getitem__(self, key: str) -> Any:
1040
+ ServiceAuthenticationConfigurationInfoResponse.__key_warning(key)
1041
+ return super().__getitem__(key)
1042
+
1043
+ def get(self, key: str, default = None) -> Any:
1044
+ ServiceAuthenticationConfigurationInfoResponse.__key_warning(key)
1045
+ return super().get(key, default)
1046
+
1047
+ def __init__(__self__, *,
1048
+ audience: Optional[str] = None,
1049
+ authority: Optional[str] = None,
1050
+ smart_proxy_enabled: Optional[bool] = None):
1051
+ """
1052
+ Authentication configuration information
1053
+ :param str audience: The audience url for the service
1054
+ :param str authority: The authority url for the service
1055
+ :param bool smart_proxy_enabled: If the SMART on FHIR proxy is enabled
1056
+ """
1057
+ if audience is not None:
1058
+ pulumi.set(__self__, "audience", audience)
1059
+ if authority is not None:
1060
+ pulumi.set(__self__, "authority", authority)
1061
+ if smart_proxy_enabled is not None:
1062
+ pulumi.set(__self__, "smart_proxy_enabled", smart_proxy_enabled)
1063
+
1064
+ @property
1065
+ @pulumi.getter
1066
+ def audience(self) -> Optional[str]:
1067
+ """
1068
+ The audience url for the service
1069
+ """
1070
+ return pulumi.get(self, "audience")
1071
+
1072
+ @property
1073
+ @pulumi.getter
1074
+ def authority(self) -> Optional[str]:
1075
+ """
1076
+ The authority url for the service
1077
+ """
1078
+ return pulumi.get(self, "authority")
1079
+
1080
+ @property
1081
+ @pulumi.getter(name="smartProxyEnabled")
1082
+ def smart_proxy_enabled(self) -> Optional[bool]:
1083
+ """
1084
+ If the SMART on FHIR proxy is enabled
1085
+ """
1086
+ return pulumi.get(self, "smart_proxy_enabled")
1087
+
1088
+
1089
+ @pulumi.output_type
1090
+ class ServiceCorsConfigurationInfoResponse(dict):
1091
+ """
1092
+ The settings for the CORS configuration of the service instance.
1093
+ """
1094
+ @staticmethod
1095
+ def __key_warning(key: str):
1096
+ suggest = None
1097
+ if key == "allowCredentials":
1098
+ suggest = "allow_credentials"
1099
+ elif key == "maxAge":
1100
+ suggest = "max_age"
1101
+
1102
+ if suggest:
1103
+ pulumi.log.warn(f"Key '{key}' not found in ServiceCorsConfigurationInfoResponse. Access the value via the '{suggest}' property getter instead.")
1104
+
1105
+ def __getitem__(self, key: str) -> Any:
1106
+ ServiceCorsConfigurationInfoResponse.__key_warning(key)
1107
+ return super().__getitem__(key)
1108
+
1109
+ def get(self, key: str, default = None) -> Any:
1110
+ ServiceCorsConfigurationInfoResponse.__key_warning(key)
1111
+ return super().get(key, default)
1112
+
1113
+ def __init__(__self__, *,
1114
+ allow_credentials: Optional[bool] = None,
1115
+ headers: Optional[Sequence[str]] = None,
1116
+ max_age: Optional[int] = None,
1117
+ methods: Optional[Sequence[str]] = None,
1118
+ origins: Optional[Sequence[str]] = None):
1119
+ """
1120
+ The settings for the CORS configuration of the service instance.
1121
+ :param bool allow_credentials: If credentials are allowed via CORS.
1122
+ :param Sequence[str] headers: The headers to be allowed via CORS.
1123
+ :param int max_age: The max age to be allowed via CORS.
1124
+ :param Sequence[str] methods: The methods to be allowed via CORS.
1125
+ :param Sequence[str] origins: The origins to be allowed via CORS.
1126
+ """
1127
+ if allow_credentials is not None:
1128
+ pulumi.set(__self__, "allow_credentials", allow_credentials)
1129
+ if headers is not None:
1130
+ pulumi.set(__self__, "headers", headers)
1131
+ if max_age is not None:
1132
+ pulumi.set(__self__, "max_age", max_age)
1133
+ if methods is not None:
1134
+ pulumi.set(__self__, "methods", methods)
1135
+ if origins is not None:
1136
+ pulumi.set(__self__, "origins", origins)
1137
+
1138
+ @property
1139
+ @pulumi.getter(name="allowCredentials")
1140
+ def allow_credentials(self) -> Optional[bool]:
1141
+ """
1142
+ If credentials are allowed via CORS.
1143
+ """
1144
+ return pulumi.get(self, "allow_credentials")
1145
+
1146
+ @property
1147
+ @pulumi.getter
1148
+ def headers(self) -> Optional[Sequence[str]]:
1149
+ """
1150
+ The headers to be allowed via CORS.
1151
+ """
1152
+ return pulumi.get(self, "headers")
1153
+
1154
+ @property
1155
+ @pulumi.getter(name="maxAge")
1156
+ def max_age(self) -> Optional[int]:
1157
+ """
1158
+ The max age to be allowed via CORS.
1159
+ """
1160
+ return pulumi.get(self, "max_age")
1161
+
1162
+ @property
1163
+ @pulumi.getter
1164
+ def methods(self) -> Optional[Sequence[str]]:
1165
+ """
1166
+ The methods to be allowed via CORS.
1167
+ """
1168
+ return pulumi.get(self, "methods")
1169
+
1170
+ @property
1171
+ @pulumi.getter
1172
+ def origins(self) -> Optional[Sequence[str]]:
1173
+ """
1174
+ The origins to be allowed via CORS.
1175
+ """
1176
+ return pulumi.get(self, "origins")
1177
+
1178
+
1179
+ @pulumi.output_type
1180
+ class ServiceCosmosDbConfigurationInfoResponse(dict):
1181
+ """
1182
+ The settings for the Cosmos DB database backing the service.
1183
+ """
1184
+ @staticmethod
1185
+ def __key_warning(key: str):
1186
+ suggest = None
1187
+ if key == "crossTenantCmkApplicationId":
1188
+ suggest = "cross_tenant_cmk_application_id"
1189
+ elif key == "keyVaultKeyUri":
1190
+ suggest = "key_vault_key_uri"
1191
+ elif key == "offerThroughput":
1192
+ suggest = "offer_throughput"
1193
+
1194
+ if suggest:
1195
+ pulumi.log.warn(f"Key '{key}' not found in ServiceCosmosDbConfigurationInfoResponse. Access the value via the '{suggest}' property getter instead.")
1196
+
1197
+ def __getitem__(self, key: str) -> Any:
1198
+ ServiceCosmosDbConfigurationInfoResponse.__key_warning(key)
1199
+ return super().__getitem__(key)
1200
+
1201
+ def get(self, key: str, default = None) -> Any:
1202
+ ServiceCosmosDbConfigurationInfoResponse.__key_warning(key)
1203
+ return super().get(key, default)
1204
+
1205
+ def __init__(__self__, *,
1206
+ cross_tenant_cmk_application_id: Optional[str] = None,
1207
+ key_vault_key_uri: Optional[str] = None,
1208
+ offer_throughput: Optional[int] = None):
1209
+ """
1210
+ The settings for the Cosmos DB database backing the service.
1211
+ :param str cross_tenant_cmk_application_id: The multi-tenant application id used to enable CMK access for services in a data sovereign region.
1212
+ :param str key_vault_key_uri: The URI of the customer-managed key for the backing database.
1213
+ :param int offer_throughput: The provisioned throughput for the backing database.
1214
+ """
1215
+ if cross_tenant_cmk_application_id is not None:
1216
+ pulumi.set(__self__, "cross_tenant_cmk_application_id", cross_tenant_cmk_application_id)
1217
+ if key_vault_key_uri is not None:
1218
+ pulumi.set(__self__, "key_vault_key_uri", key_vault_key_uri)
1219
+ if offer_throughput is not None:
1220
+ pulumi.set(__self__, "offer_throughput", offer_throughput)
1221
+
1222
+ @property
1223
+ @pulumi.getter(name="crossTenantCmkApplicationId")
1224
+ def cross_tenant_cmk_application_id(self) -> Optional[str]:
1225
+ """
1226
+ The multi-tenant application id used to enable CMK access for services in a data sovereign region.
1227
+ """
1228
+ return pulumi.get(self, "cross_tenant_cmk_application_id")
1229
+
1230
+ @property
1231
+ @pulumi.getter(name="keyVaultKeyUri")
1232
+ def key_vault_key_uri(self) -> Optional[str]:
1233
+ """
1234
+ The URI of the customer-managed key for the backing database.
1235
+ """
1236
+ return pulumi.get(self, "key_vault_key_uri")
1237
+
1238
+ @property
1239
+ @pulumi.getter(name="offerThroughput")
1240
+ def offer_throughput(self) -> Optional[int]:
1241
+ """
1242
+ The provisioned throughput for the backing database.
1243
+ """
1244
+ return pulumi.get(self, "offer_throughput")
1245
+
1246
+
1247
+ @pulumi.output_type
1248
+ class ServiceExportConfigurationInfoResponse(dict):
1249
+ """
1250
+ Export operation configuration information
1251
+ """
1252
+ @staticmethod
1253
+ def __key_warning(key: str):
1254
+ suggest = None
1255
+ if key == "storageAccountName":
1256
+ suggest = "storage_account_name"
1257
+
1258
+ if suggest:
1259
+ pulumi.log.warn(f"Key '{key}' not found in ServiceExportConfigurationInfoResponse. Access the value via the '{suggest}' property getter instead.")
1260
+
1261
+ def __getitem__(self, key: str) -> Any:
1262
+ ServiceExportConfigurationInfoResponse.__key_warning(key)
1263
+ return super().__getitem__(key)
1264
+
1265
+ def get(self, key: str, default = None) -> Any:
1266
+ ServiceExportConfigurationInfoResponse.__key_warning(key)
1267
+ return super().get(key, default)
1268
+
1269
+ def __init__(__self__, *,
1270
+ storage_account_name: Optional[str] = None):
1271
+ """
1272
+ Export operation configuration information
1273
+ :param str storage_account_name: The name of the default export storage account.
1274
+ """
1275
+ if storage_account_name is not None:
1276
+ pulumi.set(__self__, "storage_account_name", storage_account_name)
1277
+
1278
+ @property
1279
+ @pulumi.getter(name="storageAccountName")
1280
+ def storage_account_name(self) -> Optional[str]:
1281
+ """
1282
+ The name of the default export storage account.
1283
+ """
1284
+ return pulumi.get(self, "storage_account_name")
1285
+
1286
+
1287
+ @pulumi.output_type
1288
+ class ServiceImportConfigurationInfoResponse(dict):
1289
+ """
1290
+ Import operation configuration information
1291
+ """
1292
+ @staticmethod
1293
+ def __key_warning(key: str):
1294
+ suggest = None
1295
+ if key == "initialImportMode":
1296
+ suggest = "initial_import_mode"
1297
+ elif key == "integrationDataStore":
1298
+ suggest = "integration_data_store"
1299
+
1300
+ if suggest:
1301
+ pulumi.log.warn(f"Key '{key}' not found in ServiceImportConfigurationInfoResponse. Access the value via the '{suggest}' property getter instead.")
1302
+
1303
+ def __getitem__(self, key: str) -> Any:
1304
+ ServiceImportConfigurationInfoResponse.__key_warning(key)
1305
+ return super().__getitem__(key)
1306
+
1307
+ def get(self, key: str, default = None) -> Any:
1308
+ ServiceImportConfigurationInfoResponse.__key_warning(key)
1309
+ return super().get(key, default)
1310
+
1311
+ def __init__(__self__, *,
1312
+ enabled: Optional[bool] = None,
1313
+ initial_import_mode: Optional[bool] = None,
1314
+ integration_data_store: Optional[str] = None):
1315
+ """
1316
+ Import operation configuration information
1317
+ :param bool enabled: If the import operation is enabled.
1318
+ :param bool initial_import_mode: If the FHIR service is in InitialImportMode.
1319
+ :param str integration_data_store: The name of the default integration storage account.
1320
+ """
1321
+ if enabled is not None:
1322
+ pulumi.set(__self__, "enabled", enabled)
1323
+ if initial_import_mode is not None:
1324
+ pulumi.set(__self__, "initial_import_mode", initial_import_mode)
1325
+ if integration_data_store is not None:
1326
+ pulumi.set(__self__, "integration_data_store", integration_data_store)
1327
+
1328
+ @property
1329
+ @pulumi.getter
1330
+ def enabled(self) -> Optional[bool]:
1331
+ """
1332
+ If the import operation is enabled.
1333
+ """
1334
+ return pulumi.get(self, "enabled")
1335
+
1336
+ @property
1337
+ @pulumi.getter(name="initialImportMode")
1338
+ def initial_import_mode(self) -> Optional[bool]:
1339
+ """
1340
+ If the FHIR service is in InitialImportMode.
1341
+ """
1342
+ return pulumi.get(self, "initial_import_mode")
1343
+
1344
+ @property
1345
+ @pulumi.getter(name="integrationDataStore")
1346
+ def integration_data_store(self) -> Optional[str]:
1347
+ """
1348
+ The name of the default integration storage account.
1349
+ """
1350
+ return pulumi.get(self, "integration_data_store")
1351
+
1352
+
1353
+ @pulumi.output_type
1354
+ class ServiceManagedIdentityResponseIdentity(dict):
1355
+ """
1356
+ Setting indicating whether the service has a managed identity associated with it.
1357
+ """
1358
+ @staticmethod
1359
+ def __key_warning(key: str):
1360
+ suggest = None
1361
+ if key == "principalId":
1362
+ suggest = "principal_id"
1363
+ elif key == "tenantId":
1364
+ suggest = "tenant_id"
1365
+ elif key == "userAssignedIdentities":
1366
+ suggest = "user_assigned_identities"
1367
+
1368
+ if suggest:
1369
+ pulumi.log.warn(f"Key '{key}' not found in ServiceManagedIdentityResponseIdentity. Access the value via the '{suggest}' property getter instead.")
1370
+
1371
+ def __getitem__(self, key: str) -> Any:
1372
+ ServiceManagedIdentityResponseIdentity.__key_warning(key)
1373
+ return super().__getitem__(key)
1374
+
1375
+ def get(self, key: str, default = None) -> Any:
1376
+ ServiceManagedIdentityResponseIdentity.__key_warning(key)
1377
+ return super().get(key, default)
1378
+
1379
+ def __init__(__self__, *,
1380
+ principal_id: str,
1381
+ tenant_id: str,
1382
+ type: str,
1383
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
1384
+ """
1385
+ Setting indicating whether the service has a managed identity associated with it.
1386
+ :param str principal_id: The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
1387
+ :param str tenant_id: The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
1388
+ :param str type: Type of identity being specified, currently SystemAssigned and None are allowed.
1389
+ :param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
1390
+ """
1391
+ pulumi.set(__self__, "principal_id", principal_id)
1392
+ pulumi.set(__self__, "tenant_id", tenant_id)
1393
+ pulumi.set(__self__, "type", type)
1394
+ if user_assigned_identities is not None:
1395
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
1396
+
1397
+ @property
1398
+ @pulumi.getter(name="principalId")
1399
+ def principal_id(self) -> str:
1400
+ """
1401
+ The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
1402
+ """
1403
+ return pulumi.get(self, "principal_id")
1404
+
1405
+ @property
1406
+ @pulumi.getter(name="tenantId")
1407
+ def tenant_id(self) -> str:
1408
+ """
1409
+ The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
1410
+ """
1411
+ return pulumi.get(self, "tenant_id")
1412
+
1413
+ @property
1414
+ @pulumi.getter
1415
+ def type(self) -> str:
1416
+ """
1417
+ Type of identity being specified, currently SystemAssigned and None are allowed.
1418
+ """
1419
+ return pulumi.get(self, "type")
1420
+
1421
+ @property
1422
+ @pulumi.getter(name="userAssignedIdentities")
1423
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
1424
+ """
1425
+ The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
1426
+ """
1427
+ return pulumi.get(self, "user_assigned_identities")
1428
+
1429
+
1430
+ @pulumi.output_type
1431
+ class ServiceOciArtifactEntryResponse(dict):
1432
+ """
1433
+ An Open Container Initiative (OCI) artifact.
1434
+ """
1435
+ @staticmethod
1436
+ def __key_warning(key: str):
1437
+ suggest = None
1438
+ if key == "imageName":
1439
+ suggest = "image_name"
1440
+ elif key == "loginServer":
1441
+ suggest = "login_server"
1442
+
1443
+ if suggest:
1444
+ pulumi.log.warn(f"Key '{key}' not found in ServiceOciArtifactEntryResponse. Access the value via the '{suggest}' property getter instead.")
1445
+
1446
+ def __getitem__(self, key: str) -> Any:
1447
+ ServiceOciArtifactEntryResponse.__key_warning(key)
1448
+ return super().__getitem__(key)
1449
+
1450
+ def get(self, key: str, default = None) -> Any:
1451
+ ServiceOciArtifactEntryResponse.__key_warning(key)
1452
+ return super().get(key, default)
1453
+
1454
+ def __init__(__self__, *,
1455
+ digest: Optional[str] = None,
1456
+ image_name: Optional[str] = None,
1457
+ login_server: Optional[str] = None):
1458
+ """
1459
+ An Open Container Initiative (OCI) artifact.
1460
+ :param str digest: The artifact digest.
1461
+ :param str image_name: The artifact name.
1462
+ :param str login_server: The Azure Container Registry login server.
1463
+ """
1464
+ if digest is not None:
1465
+ pulumi.set(__self__, "digest", digest)
1466
+ if image_name is not None:
1467
+ pulumi.set(__self__, "image_name", image_name)
1468
+ if login_server is not None:
1469
+ pulumi.set(__self__, "login_server", login_server)
1470
+
1471
+ @property
1472
+ @pulumi.getter
1473
+ def digest(self) -> Optional[str]:
1474
+ """
1475
+ The artifact digest.
1476
+ """
1477
+ return pulumi.get(self, "digest")
1478
+
1479
+ @property
1480
+ @pulumi.getter(name="imageName")
1481
+ def image_name(self) -> Optional[str]:
1482
+ """
1483
+ The artifact name.
1484
+ """
1485
+ return pulumi.get(self, "image_name")
1486
+
1487
+ @property
1488
+ @pulumi.getter(name="loginServer")
1489
+ def login_server(self) -> Optional[str]:
1490
+ """
1491
+ The Azure Container Registry login server.
1492
+ """
1493
+ return pulumi.get(self, "login_server")
1494
+
1495
+
1496
+ @pulumi.output_type
1497
+ class ServicesPropertiesResponse(dict):
1498
+ """
1499
+ The properties of a service instance.
1500
+ """
1501
+ @staticmethod
1502
+ def __key_warning(key: str):
1503
+ suggest = None
1504
+ if key == "provisioningState":
1505
+ suggest = "provisioning_state"
1506
+ elif key == "accessPolicies":
1507
+ suggest = "access_policies"
1508
+ elif key == "acrConfiguration":
1509
+ suggest = "acr_configuration"
1510
+ elif key == "authenticationConfiguration":
1511
+ suggest = "authentication_configuration"
1512
+ elif key == "corsConfiguration":
1513
+ suggest = "cors_configuration"
1514
+ elif key == "cosmosDbConfiguration":
1515
+ suggest = "cosmos_db_configuration"
1516
+ elif key == "exportConfiguration":
1517
+ suggest = "export_configuration"
1518
+ elif key == "importConfiguration":
1519
+ suggest = "import_configuration"
1520
+ elif key == "privateEndpointConnections":
1521
+ suggest = "private_endpoint_connections"
1522
+ elif key == "publicNetworkAccess":
1523
+ suggest = "public_network_access"
1524
+
1525
+ if suggest:
1526
+ pulumi.log.warn(f"Key '{key}' not found in ServicesPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1527
+
1528
+ def __getitem__(self, key: str) -> Any:
1529
+ ServicesPropertiesResponse.__key_warning(key)
1530
+ return super().__getitem__(key)
1531
+
1532
+ def get(self, key: str, default = None) -> Any:
1533
+ ServicesPropertiesResponse.__key_warning(key)
1534
+ return super().get(key, default)
1535
+
1536
+ def __init__(__self__, *,
1537
+ provisioning_state: str,
1538
+ access_policies: Optional[Sequence['outputs.ServiceAccessPolicyEntryResponse']] = None,
1539
+ acr_configuration: Optional['outputs.ServiceAcrConfigurationInfoResponse'] = None,
1540
+ authentication_configuration: Optional['outputs.ServiceAuthenticationConfigurationInfoResponse'] = None,
1541
+ cors_configuration: Optional['outputs.ServiceCorsConfigurationInfoResponse'] = None,
1542
+ cosmos_db_configuration: Optional['outputs.ServiceCosmosDbConfigurationInfoResponse'] = None,
1543
+ export_configuration: Optional['outputs.ServiceExportConfigurationInfoResponse'] = None,
1544
+ import_configuration: Optional['outputs.ServiceImportConfigurationInfoResponse'] = None,
1545
+ private_endpoint_connections: Optional[Sequence['outputs.PrivateEndpointConnectionResponse']] = None,
1546
+ public_network_access: Optional[str] = None):
1547
+ """
1548
+ The properties of a service instance.
1549
+ :param str provisioning_state: The provisioning state.
1550
+ :param Sequence['ServiceAccessPolicyEntryResponse'] access_policies: The access policies of the service instance.
1551
+ :param 'ServiceAcrConfigurationInfoResponse' acr_configuration: The azure container registry settings used for convert data operation of the service instance.
1552
+ :param 'ServiceAuthenticationConfigurationInfoResponse' authentication_configuration: The authentication configuration for the service instance.
1553
+ :param 'ServiceCorsConfigurationInfoResponse' cors_configuration: The settings for the CORS configuration of the service instance.
1554
+ :param 'ServiceCosmosDbConfigurationInfoResponse' cosmos_db_configuration: The settings for the Cosmos DB database backing the service.
1555
+ :param 'ServiceExportConfigurationInfoResponse' export_configuration: The settings for the export operation of the service instance.
1556
+ :param 'ServiceImportConfigurationInfoResponse' import_configuration: The settings for the import operation of the service instance.
1557
+ :param Sequence['PrivateEndpointConnectionResponse'] private_endpoint_connections: The list of private endpoint connections that are set up for this resource.
1558
+ :param str public_network_access: Control permission for data plane traffic coming from public networks while private endpoint is enabled.
1559
+ """
1560
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
1561
+ if access_policies is not None:
1562
+ pulumi.set(__self__, "access_policies", access_policies)
1563
+ if acr_configuration is not None:
1564
+ pulumi.set(__self__, "acr_configuration", acr_configuration)
1565
+ if authentication_configuration is not None:
1566
+ pulumi.set(__self__, "authentication_configuration", authentication_configuration)
1567
+ if cors_configuration is not None:
1568
+ pulumi.set(__self__, "cors_configuration", cors_configuration)
1569
+ if cosmos_db_configuration is not None:
1570
+ pulumi.set(__self__, "cosmos_db_configuration", cosmos_db_configuration)
1571
+ if export_configuration is not None:
1572
+ pulumi.set(__self__, "export_configuration", export_configuration)
1573
+ if import_configuration is not None:
1574
+ pulumi.set(__self__, "import_configuration", import_configuration)
1575
+ if private_endpoint_connections is not None:
1576
+ pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
1577
+ if public_network_access is not None:
1578
+ pulumi.set(__self__, "public_network_access", public_network_access)
1579
+
1580
+ @property
1581
+ @pulumi.getter(name="provisioningState")
1582
+ def provisioning_state(self) -> str:
1583
+ """
1584
+ The provisioning state.
1585
+ """
1586
+ return pulumi.get(self, "provisioning_state")
1587
+
1588
+ @property
1589
+ @pulumi.getter(name="accessPolicies")
1590
+ def access_policies(self) -> Optional[Sequence['outputs.ServiceAccessPolicyEntryResponse']]:
1591
+ """
1592
+ The access policies of the service instance.
1593
+ """
1594
+ return pulumi.get(self, "access_policies")
1595
+
1596
+ @property
1597
+ @pulumi.getter(name="acrConfiguration")
1598
+ def acr_configuration(self) -> Optional['outputs.ServiceAcrConfigurationInfoResponse']:
1599
+ """
1600
+ The azure container registry settings used for convert data operation of the service instance.
1601
+ """
1602
+ return pulumi.get(self, "acr_configuration")
1603
+
1604
+ @property
1605
+ @pulumi.getter(name="authenticationConfiguration")
1606
+ def authentication_configuration(self) -> Optional['outputs.ServiceAuthenticationConfigurationInfoResponse']:
1607
+ """
1608
+ The authentication configuration for the service instance.
1609
+ """
1610
+ return pulumi.get(self, "authentication_configuration")
1611
+
1612
+ @property
1613
+ @pulumi.getter(name="corsConfiguration")
1614
+ def cors_configuration(self) -> Optional['outputs.ServiceCorsConfigurationInfoResponse']:
1615
+ """
1616
+ The settings for the CORS configuration of the service instance.
1617
+ """
1618
+ return pulumi.get(self, "cors_configuration")
1619
+
1620
+ @property
1621
+ @pulumi.getter(name="cosmosDbConfiguration")
1622
+ def cosmos_db_configuration(self) -> Optional['outputs.ServiceCosmosDbConfigurationInfoResponse']:
1623
+ """
1624
+ The settings for the Cosmos DB database backing the service.
1625
+ """
1626
+ return pulumi.get(self, "cosmos_db_configuration")
1627
+
1628
+ @property
1629
+ @pulumi.getter(name="exportConfiguration")
1630
+ def export_configuration(self) -> Optional['outputs.ServiceExportConfigurationInfoResponse']:
1631
+ """
1632
+ The settings for the export operation of the service instance.
1633
+ """
1634
+ return pulumi.get(self, "export_configuration")
1635
+
1636
+ @property
1637
+ @pulumi.getter(name="importConfiguration")
1638
+ def import_configuration(self) -> Optional['outputs.ServiceImportConfigurationInfoResponse']:
1639
+ """
1640
+ The settings for the import operation of the service instance.
1641
+ """
1642
+ return pulumi.get(self, "import_configuration")
1643
+
1644
+ @property
1645
+ @pulumi.getter(name="privateEndpointConnections")
1646
+ def private_endpoint_connections(self) -> Optional[Sequence['outputs.PrivateEndpointConnectionResponse']]:
1647
+ """
1648
+ The list of private endpoint connections that are set up for this resource.
1649
+ """
1650
+ return pulumi.get(self, "private_endpoint_connections")
1651
+
1652
+ @property
1653
+ @pulumi.getter(name="publicNetworkAccess")
1654
+ def public_network_access(self) -> Optional[str]:
1655
+ """
1656
+ Control permission for data plane traffic coming from public networks while private endpoint is enabled.
1657
+ """
1658
+ return pulumi.get(self, "public_network_access")
1659
+
1660
+
1661
+ @pulumi.output_type
1662
+ class ServicesResourceResponseIdentity(dict):
1663
+ """
1664
+ Setting indicating whether the service has a managed identity associated with it.
1665
+ """
1666
+ @staticmethod
1667
+ def __key_warning(key: str):
1668
+ suggest = None
1669
+ if key == "principalId":
1670
+ suggest = "principal_id"
1671
+ elif key == "tenantId":
1672
+ suggest = "tenant_id"
1673
+
1674
+ if suggest:
1675
+ pulumi.log.warn(f"Key '{key}' not found in ServicesResourceResponseIdentity. Access the value via the '{suggest}' property getter instead.")
1676
+
1677
+ def __getitem__(self, key: str) -> Any:
1678
+ ServicesResourceResponseIdentity.__key_warning(key)
1679
+ return super().__getitem__(key)
1680
+
1681
+ def get(self, key: str, default = None) -> Any:
1682
+ ServicesResourceResponseIdentity.__key_warning(key)
1683
+ return super().get(key, default)
1684
+
1685
+ def __init__(__self__, *,
1686
+ principal_id: str,
1687
+ tenant_id: str,
1688
+ type: Optional[str] = None):
1689
+ """
1690
+ Setting indicating whether the service has a managed identity associated with it.
1691
+ :param str principal_id: The principal ID of the resource identity.
1692
+ :param str tenant_id: The tenant ID of the resource.
1693
+ :param str type: Type of identity being specified, currently SystemAssigned and None are allowed.
1694
+ """
1695
+ pulumi.set(__self__, "principal_id", principal_id)
1696
+ pulumi.set(__self__, "tenant_id", tenant_id)
1697
+ if type is not None:
1698
+ pulumi.set(__self__, "type", type)
1699
+
1700
+ @property
1701
+ @pulumi.getter(name="principalId")
1702
+ def principal_id(self) -> str:
1703
+ """
1704
+ The principal ID of the resource identity.
1705
+ """
1706
+ return pulumi.get(self, "principal_id")
1707
+
1708
+ @property
1709
+ @pulumi.getter(name="tenantId")
1710
+ def tenant_id(self) -> str:
1711
+ """
1712
+ The tenant ID of the resource.
1713
+ """
1714
+ return pulumi.get(self, "tenant_id")
1715
+
1716
+ @property
1717
+ @pulumi.getter
1718
+ def type(self) -> Optional[str]:
1719
+ """
1720
+ Type of identity being specified, currently SystemAssigned and None are allowed.
1721
+ """
1722
+ return pulumi.get(self, "type")
1723
+
1724
+
1725
+ @pulumi.output_type
1726
+ class SystemDataResponse(dict):
1727
+ """
1728
+ Metadata pertaining to creation and last modification of the resource.
1729
+ """
1730
+ @staticmethod
1731
+ def __key_warning(key: str):
1732
+ suggest = None
1733
+ if key == "createdAt":
1734
+ suggest = "created_at"
1735
+ elif key == "createdBy":
1736
+ suggest = "created_by"
1737
+ elif key == "createdByType":
1738
+ suggest = "created_by_type"
1739
+ elif key == "lastModifiedAt":
1740
+ suggest = "last_modified_at"
1741
+ elif key == "lastModifiedBy":
1742
+ suggest = "last_modified_by"
1743
+ elif key == "lastModifiedByType":
1744
+ suggest = "last_modified_by_type"
1745
+
1746
+ if suggest:
1747
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
1748
+
1749
+ def __getitem__(self, key: str) -> Any:
1750
+ SystemDataResponse.__key_warning(key)
1751
+ return super().__getitem__(key)
1752
+
1753
+ def get(self, key: str, default = None) -> Any:
1754
+ SystemDataResponse.__key_warning(key)
1755
+ return super().get(key, default)
1756
+
1757
+ def __init__(__self__, *,
1758
+ created_at: Optional[str] = None,
1759
+ created_by: Optional[str] = None,
1760
+ created_by_type: Optional[str] = None,
1761
+ last_modified_at: Optional[str] = None,
1762
+ last_modified_by: Optional[str] = None,
1763
+ last_modified_by_type: Optional[str] = None):
1764
+ """
1765
+ Metadata pertaining to creation and last modification of the resource.
1766
+ :param str created_at: The timestamp of resource creation (UTC).
1767
+ :param str created_by: The identity that created the resource.
1768
+ :param str created_by_type: The type of identity that created the resource.
1769
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
1770
+ :param str last_modified_by: The identity that last modified the resource.
1771
+ :param str last_modified_by_type: The type of identity that last modified the resource.
1772
+ """
1773
+ if created_at is not None:
1774
+ pulumi.set(__self__, "created_at", created_at)
1775
+ if created_by is not None:
1776
+ pulumi.set(__self__, "created_by", created_by)
1777
+ if created_by_type is not None:
1778
+ pulumi.set(__self__, "created_by_type", created_by_type)
1779
+ if last_modified_at is not None:
1780
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
1781
+ if last_modified_by is not None:
1782
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
1783
+ if last_modified_by_type is not None:
1784
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
1785
+
1786
+ @property
1787
+ @pulumi.getter(name="createdAt")
1788
+ def created_at(self) -> Optional[str]:
1789
+ """
1790
+ The timestamp of resource creation (UTC).
1791
+ """
1792
+ return pulumi.get(self, "created_at")
1793
+
1794
+ @property
1795
+ @pulumi.getter(name="createdBy")
1796
+ def created_by(self) -> Optional[str]:
1797
+ """
1798
+ The identity that created the resource.
1799
+ """
1800
+ return pulumi.get(self, "created_by")
1801
+
1802
+ @property
1803
+ @pulumi.getter(name="createdByType")
1804
+ def created_by_type(self) -> Optional[str]:
1805
+ """
1806
+ The type of identity that created the resource.
1807
+ """
1808
+ return pulumi.get(self, "created_by_type")
1809
+
1810
+ @property
1811
+ @pulumi.getter(name="lastModifiedAt")
1812
+ def last_modified_at(self) -> Optional[str]:
1813
+ """
1814
+ The timestamp of resource last modification (UTC)
1815
+ """
1816
+ return pulumi.get(self, "last_modified_at")
1817
+
1818
+ @property
1819
+ @pulumi.getter(name="lastModifiedBy")
1820
+ def last_modified_by(self) -> Optional[str]:
1821
+ """
1822
+ The identity that last modified the resource.
1823
+ """
1824
+ return pulumi.get(self, "last_modified_by")
1825
+
1826
+ @property
1827
+ @pulumi.getter(name="lastModifiedByType")
1828
+ def last_modified_by_type(self) -> Optional[str]:
1829
+ """
1830
+ The type of identity that last modified the resource.
1831
+ """
1832
+ return pulumi.get(self, "last_modified_by_type")
1833
+
1834
+
1835
+ @pulumi.output_type
1836
+ class UserAssignedIdentityResponse(dict):
1837
+ """
1838
+ User assigned identity properties
1839
+ """
1840
+ @staticmethod
1841
+ def __key_warning(key: str):
1842
+ suggest = None
1843
+ if key == "clientId":
1844
+ suggest = "client_id"
1845
+ elif key == "principalId":
1846
+ suggest = "principal_id"
1847
+
1848
+ if suggest:
1849
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
1850
+
1851
+ def __getitem__(self, key: str) -> Any:
1852
+ UserAssignedIdentityResponse.__key_warning(key)
1853
+ return super().__getitem__(key)
1854
+
1855
+ def get(self, key: str, default = None) -> Any:
1856
+ UserAssignedIdentityResponse.__key_warning(key)
1857
+ return super().get(key, default)
1858
+
1859
+ def __init__(__self__, *,
1860
+ client_id: str,
1861
+ principal_id: str):
1862
+ """
1863
+ User assigned identity properties
1864
+ :param str client_id: The client ID of the assigned identity.
1865
+ :param str principal_id: The principal ID of the assigned identity.
1866
+ """
1867
+ pulumi.set(__self__, "client_id", client_id)
1868
+ pulumi.set(__self__, "principal_id", principal_id)
1869
+
1870
+ @property
1871
+ @pulumi.getter(name="clientId")
1872
+ def client_id(self) -> str:
1873
+ """
1874
+ The client ID of the assigned identity.
1875
+ """
1876
+ return pulumi.get(self, "client_id")
1877
+
1878
+ @property
1879
+ @pulumi.getter(name="principalId")
1880
+ def principal_id(self) -> str:
1881
+ """
1882
+ The principal ID of the assigned identity.
1883
+ """
1884
+ return pulumi.get(self, "principal_id")
1885
+
1886
+
1887
+ @pulumi.output_type
1888
+ class WorkspaceResponseProperties(dict):
1889
+ """
1890
+ Workspaces resource specific properties.
1891
+ """
1892
+ @staticmethod
1893
+ def __key_warning(key: str):
1894
+ suggest = None
1895
+ if key == "privateEndpointConnections":
1896
+ suggest = "private_endpoint_connections"
1897
+ elif key == "provisioningState":
1898
+ suggest = "provisioning_state"
1899
+ elif key == "publicNetworkAccess":
1900
+ suggest = "public_network_access"
1901
+
1902
+ if suggest:
1903
+ pulumi.log.warn(f"Key '{key}' not found in WorkspaceResponseProperties. Access the value via the '{suggest}' property getter instead.")
1904
+
1905
+ def __getitem__(self, key: str) -> Any:
1906
+ WorkspaceResponseProperties.__key_warning(key)
1907
+ return super().__getitem__(key)
1908
+
1909
+ def get(self, key: str, default = None) -> Any:
1910
+ WorkspaceResponseProperties.__key_warning(key)
1911
+ return super().get(key, default)
1912
+
1913
+ def __init__(__self__, *,
1914
+ private_endpoint_connections: Sequence['outputs.PrivateEndpointConnectionResponse'],
1915
+ provisioning_state: str,
1916
+ public_network_access: str):
1917
+ """
1918
+ Workspaces resource specific properties.
1919
+ :param Sequence['PrivateEndpointConnectionResponse'] private_endpoint_connections: The list of private endpoint connections that are set up for this resource.
1920
+ :param str provisioning_state: The provisioning state.
1921
+ :param str public_network_access: Control permission for data plane traffic coming from public networks while private endpoint is enabled.
1922
+ """
1923
+ pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
1924
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
1925
+ pulumi.set(__self__, "public_network_access", public_network_access)
1926
+
1927
+ @property
1928
+ @pulumi.getter(name="privateEndpointConnections")
1929
+ def private_endpoint_connections(self) -> Sequence['outputs.PrivateEndpointConnectionResponse']:
1930
+ """
1931
+ The list of private endpoint connections that are set up for this resource.
1932
+ """
1933
+ return pulumi.get(self, "private_endpoint_connections")
1934
+
1935
+ @property
1936
+ @pulumi.getter(name="provisioningState")
1937
+ def provisioning_state(self) -> str:
1938
+ """
1939
+ The provisioning state.
1940
+ """
1941
+ return pulumi.get(self, "provisioning_state")
1942
+
1943
+ @property
1944
+ @pulumi.getter(name="publicNetworkAccess")
1945
+ def public_network_access(self) -> str:
1946
+ """
1947
+ Control permission for data plane traffic coming from public networks while private endpoint is enabled.
1948
+ """
1949
+ return pulumi.get(self, "public_network_access")
1950
+
1951
+