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.

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.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/METADATA +1 -1
  154. {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/RECORD +156 -90
  155. {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/WHEEL +0 -0
  156. {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1336 @@
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
+ 'CaptureDescriptionResponse',
16
+ 'CaptureIdentityResponse',
17
+ 'ClusterSkuResponse',
18
+ 'ConnectionStateResponse',
19
+ 'DestinationResponse',
20
+ 'EncryptionResponse',
21
+ 'IdentityResponse',
22
+ 'KeyVaultPropertiesResponse',
23
+ 'NWRuleSetIpRulesResponse',
24
+ 'NWRuleSetVirtualNetworkRulesResponse',
25
+ 'PrivateEndpointConnectionResponse',
26
+ 'PrivateEndpointResponse',
27
+ 'RetentionDescriptionResponse',
28
+ 'SkuResponse',
29
+ 'SubnetResponse',
30
+ 'SystemDataResponse',
31
+ 'ThrottlingPolicyResponse',
32
+ 'UpgradePreferencesResponse',
33
+ 'UserAssignedIdentityPropertiesResponse',
34
+ 'UserAssignedIdentityResponse',
35
+ ]
36
+
37
+ @pulumi.output_type
38
+ class CaptureDescriptionResponse(dict):
39
+ """
40
+ Properties to configure capture description for eventhub
41
+ """
42
+ @staticmethod
43
+ def __key_warning(key: str):
44
+ suggest = None
45
+ if key == "intervalInSeconds":
46
+ suggest = "interval_in_seconds"
47
+ elif key == "sizeLimitInBytes":
48
+ suggest = "size_limit_in_bytes"
49
+ elif key == "skipEmptyArchives":
50
+ suggest = "skip_empty_archives"
51
+
52
+ if suggest:
53
+ pulumi.log.warn(f"Key '{key}' not found in CaptureDescriptionResponse. Access the value via the '{suggest}' property getter instead.")
54
+
55
+ def __getitem__(self, key: str) -> Any:
56
+ CaptureDescriptionResponse.__key_warning(key)
57
+ return super().__getitem__(key)
58
+
59
+ def get(self, key: str, default = None) -> Any:
60
+ CaptureDescriptionResponse.__key_warning(key)
61
+ return super().get(key, default)
62
+
63
+ def __init__(__self__, *,
64
+ destination: Optional['outputs.DestinationResponse'] = None,
65
+ enabled: Optional[bool] = None,
66
+ encoding: Optional[str] = None,
67
+ interval_in_seconds: Optional[int] = None,
68
+ size_limit_in_bytes: Optional[int] = None,
69
+ skip_empty_archives: Optional[bool] = None):
70
+ """
71
+ Properties to configure capture description for eventhub
72
+ :param 'DestinationResponse' destination: Properties of Destination where capture will be stored. (Storage Account, Blob Names)
73
+ :param bool enabled: A value that indicates whether capture description is enabled.
74
+ :param str encoding: Enumerates the possible values for the encoding format of capture description. Note: 'AvroDeflate' will be deprecated in New API Version
75
+ :param int interval_in_seconds: The time window allows you to set the frequency with which the capture to Azure Blobs will happen, value should between 60 to 900 seconds
76
+ :param int size_limit_in_bytes: The size window defines the amount of data built up in your Event Hub before an capture operation, value should be between 10485760 to 524288000 bytes
77
+ :param bool skip_empty_archives: A value that indicates whether to Skip Empty Archives
78
+ """
79
+ if destination is not None:
80
+ pulumi.set(__self__, "destination", destination)
81
+ if enabled is not None:
82
+ pulumi.set(__self__, "enabled", enabled)
83
+ if encoding is not None:
84
+ pulumi.set(__self__, "encoding", encoding)
85
+ if interval_in_seconds is not None:
86
+ pulumi.set(__self__, "interval_in_seconds", interval_in_seconds)
87
+ if size_limit_in_bytes is not None:
88
+ pulumi.set(__self__, "size_limit_in_bytes", size_limit_in_bytes)
89
+ if skip_empty_archives is not None:
90
+ pulumi.set(__self__, "skip_empty_archives", skip_empty_archives)
91
+
92
+ @property
93
+ @pulumi.getter
94
+ def destination(self) -> Optional['outputs.DestinationResponse']:
95
+ """
96
+ Properties of Destination where capture will be stored. (Storage Account, Blob Names)
97
+ """
98
+ return pulumi.get(self, "destination")
99
+
100
+ @property
101
+ @pulumi.getter
102
+ def enabled(self) -> Optional[bool]:
103
+ """
104
+ A value that indicates whether capture description is enabled.
105
+ """
106
+ return pulumi.get(self, "enabled")
107
+
108
+ @property
109
+ @pulumi.getter
110
+ def encoding(self) -> Optional[str]:
111
+ """
112
+ Enumerates the possible values for the encoding format of capture description. Note: 'AvroDeflate' will be deprecated in New API Version
113
+ """
114
+ return pulumi.get(self, "encoding")
115
+
116
+ @property
117
+ @pulumi.getter(name="intervalInSeconds")
118
+ def interval_in_seconds(self) -> Optional[int]:
119
+ """
120
+ The time window allows you to set the frequency with which the capture to Azure Blobs will happen, value should between 60 to 900 seconds
121
+ """
122
+ return pulumi.get(self, "interval_in_seconds")
123
+
124
+ @property
125
+ @pulumi.getter(name="sizeLimitInBytes")
126
+ def size_limit_in_bytes(self) -> Optional[int]:
127
+ """
128
+ The size window defines the amount of data built up in your Event Hub before an capture operation, value should be between 10485760 to 524288000 bytes
129
+ """
130
+ return pulumi.get(self, "size_limit_in_bytes")
131
+
132
+ @property
133
+ @pulumi.getter(name="skipEmptyArchives")
134
+ def skip_empty_archives(self) -> Optional[bool]:
135
+ """
136
+ A value that indicates whether to Skip Empty Archives
137
+ """
138
+ return pulumi.get(self, "skip_empty_archives")
139
+
140
+
141
+ @pulumi.output_type
142
+ class CaptureIdentityResponse(dict):
143
+ """
144
+ A value that indicates whether capture description is enabled.
145
+ """
146
+ @staticmethod
147
+ def __key_warning(key: str):
148
+ suggest = None
149
+ if key == "userAssignedIdentity":
150
+ suggest = "user_assigned_identity"
151
+
152
+ if suggest:
153
+ pulumi.log.warn(f"Key '{key}' not found in CaptureIdentityResponse. Access the value via the '{suggest}' property getter instead.")
154
+
155
+ def __getitem__(self, key: str) -> Any:
156
+ CaptureIdentityResponse.__key_warning(key)
157
+ return super().__getitem__(key)
158
+
159
+ def get(self, key: str, default = None) -> Any:
160
+ CaptureIdentityResponse.__key_warning(key)
161
+ return super().get(key, default)
162
+
163
+ def __init__(__self__, *,
164
+ type: Optional[str] = None,
165
+ user_assigned_identity: Optional[str] = None):
166
+ """
167
+ A value that indicates whether capture description is enabled.
168
+ :param str type: Type of Azure Active Directory Managed Identity.
169
+ :param str user_assigned_identity: ARM ID of Managed User Identity. This property is required is the type is UserAssignedIdentity. If type is SystemAssigned, then the System Assigned Identity Associated with the namespace will be used.
170
+ """
171
+ if type is not None:
172
+ pulumi.set(__self__, "type", type)
173
+ if user_assigned_identity is not None:
174
+ pulumi.set(__self__, "user_assigned_identity", user_assigned_identity)
175
+
176
+ @property
177
+ @pulumi.getter
178
+ def type(self) -> Optional[str]:
179
+ """
180
+ Type of Azure Active Directory Managed Identity.
181
+ """
182
+ return pulumi.get(self, "type")
183
+
184
+ @property
185
+ @pulumi.getter(name="userAssignedIdentity")
186
+ def user_assigned_identity(self) -> Optional[str]:
187
+ """
188
+ ARM ID of Managed User Identity. This property is required is the type is UserAssignedIdentity. If type is SystemAssigned, then the System Assigned Identity Associated with the namespace will be used.
189
+ """
190
+ return pulumi.get(self, "user_assigned_identity")
191
+
192
+
193
+ @pulumi.output_type
194
+ class ClusterSkuResponse(dict):
195
+ """
196
+ SKU parameters particular to a cluster instance.
197
+ """
198
+ def __init__(__self__, *,
199
+ name: str,
200
+ capacity: Optional[int] = None):
201
+ """
202
+ SKU parameters particular to a cluster instance.
203
+ :param str name: Name of this SKU.
204
+ :param int capacity: The quantity of Event Hubs Cluster Capacity Units contained in this cluster.
205
+ """
206
+ pulumi.set(__self__, "name", name)
207
+ if capacity is not None:
208
+ pulumi.set(__self__, "capacity", capacity)
209
+
210
+ @property
211
+ @pulumi.getter
212
+ def name(self) -> str:
213
+ """
214
+ Name of this SKU.
215
+ """
216
+ return pulumi.get(self, "name")
217
+
218
+ @property
219
+ @pulumi.getter
220
+ def capacity(self) -> Optional[int]:
221
+ """
222
+ The quantity of Event Hubs Cluster Capacity Units contained in this cluster.
223
+ """
224
+ return pulumi.get(self, "capacity")
225
+
226
+
227
+ @pulumi.output_type
228
+ class ConnectionStateResponse(dict):
229
+ """
230
+ ConnectionState information.
231
+ """
232
+ def __init__(__self__, *,
233
+ description: Optional[str] = None,
234
+ status: Optional[str] = None):
235
+ """
236
+ ConnectionState information.
237
+ :param str description: Description of the connection state.
238
+ :param str status: Status of the connection.
239
+ """
240
+ if description is not None:
241
+ pulumi.set(__self__, "description", description)
242
+ if status is not None:
243
+ pulumi.set(__self__, "status", status)
244
+
245
+ @property
246
+ @pulumi.getter
247
+ def description(self) -> Optional[str]:
248
+ """
249
+ Description of the connection state.
250
+ """
251
+ return pulumi.get(self, "description")
252
+
253
+ @property
254
+ @pulumi.getter
255
+ def status(self) -> Optional[str]:
256
+ """
257
+ Status of the connection.
258
+ """
259
+ return pulumi.get(self, "status")
260
+
261
+
262
+ @pulumi.output_type
263
+ class DestinationResponse(dict):
264
+ """
265
+ Capture storage details for capture description
266
+ """
267
+ @staticmethod
268
+ def __key_warning(key: str):
269
+ suggest = None
270
+ if key == "archiveNameFormat":
271
+ suggest = "archive_name_format"
272
+ elif key == "blobContainer":
273
+ suggest = "blob_container"
274
+ elif key == "dataLakeAccountName":
275
+ suggest = "data_lake_account_name"
276
+ elif key == "dataLakeFolderPath":
277
+ suggest = "data_lake_folder_path"
278
+ elif key == "dataLakeSubscriptionId":
279
+ suggest = "data_lake_subscription_id"
280
+ elif key == "storageAccountResourceId":
281
+ suggest = "storage_account_resource_id"
282
+
283
+ if suggest:
284
+ pulumi.log.warn(f"Key '{key}' not found in DestinationResponse. Access the value via the '{suggest}' property getter instead.")
285
+
286
+ def __getitem__(self, key: str) -> Any:
287
+ DestinationResponse.__key_warning(key)
288
+ return super().__getitem__(key)
289
+
290
+ def get(self, key: str, default = None) -> Any:
291
+ DestinationResponse.__key_warning(key)
292
+ return super().get(key, default)
293
+
294
+ def __init__(__self__, *,
295
+ archive_name_format: Optional[str] = None,
296
+ blob_container: Optional[str] = None,
297
+ data_lake_account_name: Optional[str] = None,
298
+ data_lake_folder_path: Optional[str] = None,
299
+ data_lake_subscription_id: Optional[str] = None,
300
+ identity: Optional['outputs.CaptureIdentityResponse'] = None,
301
+ name: Optional[str] = None,
302
+ storage_account_resource_id: Optional[str] = None):
303
+ """
304
+ Capture storage details for capture description
305
+ :param str archive_name_format: Blob naming convention for archive, e.g. {Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}. Here all the parameters (Namespace,EventHub .. etc) are mandatory irrespective of order
306
+ :param str blob_container: Blob container Name
307
+ :param str data_lake_account_name: The Azure Data Lake Store name for the captured events
308
+ :param str data_lake_folder_path: The destination folder path for the captured events
309
+ :param str data_lake_subscription_id: Subscription Id of Azure Data Lake Store
310
+ :param 'CaptureIdentityResponse' identity: A value that indicates whether capture description is enabled.
311
+ :param str name: Name for capture destination
312
+ :param str storage_account_resource_id: Resource id of the storage account to be used to create the blobs
313
+ """
314
+ if archive_name_format is not None:
315
+ pulumi.set(__self__, "archive_name_format", archive_name_format)
316
+ if blob_container is not None:
317
+ pulumi.set(__self__, "blob_container", blob_container)
318
+ if data_lake_account_name is not None:
319
+ pulumi.set(__self__, "data_lake_account_name", data_lake_account_name)
320
+ if data_lake_folder_path is not None:
321
+ pulumi.set(__self__, "data_lake_folder_path", data_lake_folder_path)
322
+ if data_lake_subscription_id is not None:
323
+ pulumi.set(__self__, "data_lake_subscription_id", data_lake_subscription_id)
324
+ if identity is not None:
325
+ pulumi.set(__self__, "identity", identity)
326
+ if name is not None:
327
+ pulumi.set(__self__, "name", name)
328
+ if storage_account_resource_id is not None:
329
+ pulumi.set(__self__, "storage_account_resource_id", storage_account_resource_id)
330
+
331
+ @property
332
+ @pulumi.getter(name="archiveNameFormat")
333
+ def archive_name_format(self) -> Optional[str]:
334
+ """
335
+ Blob naming convention for archive, e.g. {Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}. Here all the parameters (Namespace,EventHub .. etc) are mandatory irrespective of order
336
+ """
337
+ return pulumi.get(self, "archive_name_format")
338
+
339
+ @property
340
+ @pulumi.getter(name="blobContainer")
341
+ def blob_container(self) -> Optional[str]:
342
+ """
343
+ Blob container Name
344
+ """
345
+ return pulumi.get(self, "blob_container")
346
+
347
+ @property
348
+ @pulumi.getter(name="dataLakeAccountName")
349
+ def data_lake_account_name(self) -> Optional[str]:
350
+ """
351
+ The Azure Data Lake Store name for the captured events
352
+ """
353
+ return pulumi.get(self, "data_lake_account_name")
354
+
355
+ @property
356
+ @pulumi.getter(name="dataLakeFolderPath")
357
+ def data_lake_folder_path(self) -> Optional[str]:
358
+ """
359
+ The destination folder path for the captured events
360
+ """
361
+ return pulumi.get(self, "data_lake_folder_path")
362
+
363
+ @property
364
+ @pulumi.getter(name="dataLakeSubscriptionId")
365
+ def data_lake_subscription_id(self) -> Optional[str]:
366
+ """
367
+ Subscription Id of Azure Data Lake Store
368
+ """
369
+ return pulumi.get(self, "data_lake_subscription_id")
370
+
371
+ @property
372
+ @pulumi.getter
373
+ def identity(self) -> Optional['outputs.CaptureIdentityResponse']:
374
+ """
375
+ A value that indicates whether capture description is enabled.
376
+ """
377
+ return pulumi.get(self, "identity")
378
+
379
+ @property
380
+ @pulumi.getter
381
+ def name(self) -> Optional[str]:
382
+ """
383
+ Name for capture destination
384
+ """
385
+ return pulumi.get(self, "name")
386
+
387
+ @property
388
+ @pulumi.getter(name="storageAccountResourceId")
389
+ def storage_account_resource_id(self) -> Optional[str]:
390
+ """
391
+ Resource id of the storage account to be used to create the blobs
392
+ """
393
+ return pulumi.get(self, "storage_account_resource_id")
394
+
395
+
396
+ @pulumi.output_type
397
+ class EncryptionResponse(dict):
398
+ """
399
+ Properties to configure Encryption
400
+ """
401
+ @staticmethod
402
+ def __key_warning(key: str):
403
+ suggest = None
404
+ if key == "keySource":
405
+ suggest = "key_source"
406
+ elif key == "keyVaultProperties":
407
+ suggest = "key_vault_properties"
408
+ elif key == "requireInfrastructureEncryption":
409
+ suggest = "require_infrastructure_encryption"
410
+
411
+ if suggest:
412
+ pulumi.log.warn(f"Key '{key}' not found in EncryptionResponse. Access the value via the '{suggest}' property getter instead.")
413
+
414
+ def __getitem__(self, key: str) -> Any:
415
+ EncryptionResponse.__key_warning(key)
416
+ return super().__getitem__(key)
417
+
418
+ def get(self, key: str, default = None) -> Any:
419
+ EncryptionResponse.__key_warning(key)
420
+ return super().get(key, default)
421
+
422
+ def __init__(__self__, *,
423
+ key_source: Optional[str] = None,
424
+ key_vault_properties: Optional[Sequence['outputs.KeyVaultPropertiesResponse']] = None,
425
+ require_infrastructure_encryption: Optional[bool] = None):
426
+ """
427
+ Properties to configure Encryption
428
+ :param str key_source: Enumerates the possible value of keySource for Encryption
429
+ :param Sequence['KeyVaultPropertiesResponse'] key_vault_properties: Properties of KeyVault
430
+ :param bool require_infrastructure_encryption: Enable Infrastructure Encryption (Double Encryption)
431
+ """
432
+ if key_source is None:
433
+ key_source = 'Microsoft.KeyVault'
434
+ if key_source is not None:
435
+ pulumi.set(__self__, "key_source", key_source)
436
+ if key_vault_properties is not None:
437
+ pulumi.set(__self__, "key_vault_properties", key_vault_properties)
438
+ if require_infrastructure_encryption is not None:
439
+ pulumi.set(__self__, "require_infrastructure_encryption", require_infrastructure_encryption)
440
+
441
+ @property
442
+ @pulumi.getter(name="keySource")
443
+ def key_source(self) -> Optional[str]:
444
+ """
445
+ Enumerates the possible value of keySource for Encryption
446
+ """
447
+ return pulumi.get(self, "key_source")
448
+
449
+ @property
450
+ @pulumi.getter(name="keyVaultProperties")
451
+ def key_vault_properties(self) -> Optional[Sequence['outputs.KeyVaultPropertiesResponse']]:
452
+ """
453
+ Properties of KeyVault
454
+ """
455
+ return pulumi.get(self, "key_vault_properties")
456
+
457
+ @property
458
+ @pulumi.getter(name="requireInfrastructureEncryption")
459
+ def require_infrastructure_encryption(self) -> Optional[bool]:
460
+ """
461
+ Enable Infrastructure Encryption (Double Encryption)
462
+ """
463
+ return pulumi.get(self, "require_infrastructure_encryption")
464
+
465
+
466
+ @pulumi.output_type
467
+ class IdentityResponse(dict):
468
+ """
469
+ Properties to configure Identity for Bring your Own Keys
470
+ """
471
+ @staticmethod
472
+ def __key_warning(key: str):
473
+ suggest = None
474
+ if key == "principalId":
475
+ suggest = "principal_id"
476
+ elif key == "tenantId":
477
+ suggest = "tenant_id"
478
+ elif key == "userAssignedIdentities":
479
+ suggest = "user_assigned_identities"
480
+
481
+ if suggest:
482
+ pulumi.log.warn(f"Key '{key}' not found in IdentityResponse. Access the value via the '{suggest}' property getter instead.")
483
+
484
+ def __getitem__(self, key: str) -> Any:
485
+ IdentityResponse.__key_warning(key)
486
+ return super().__getitem__(key)
487
+
488
+ def get(self, key: str, default = None) -> Any:
489
+ IdentityResponse.__key_warning(key)
490
+ return super().get(key, default)
491
+
492
+ def __init__(__self__, *,
493
+ principal_id: str,
494
+ tenant_id: str,
495
+ type: Optional[str] = None,
496
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
497
+ """
498
+ Properties to configure Identity for Bring your Own Keys
499
+ :param str principal_id: ObjectId from the KeyVault
500
+ :param str tenant_id: TenantId from the KeyVault
501
+ :param str type: Type of managed service identity.
502
+ :param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: Properties for User Assigned Identities
503
+ """
504
+ pulumi.set(__self__, "principal_id", principal_id)
505
+ pulumi.set(__self__, "tenant_id", tenant_id)
506
+ if type is not None:
507
+ pulumi.set(__self__, "type", type)
508
+ if user_assigned_identities is not None:
509
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
510
+
511
+ @property
512
+ @pulumi.getter(name="principalId")
513
+ def principal_id(self) -> str:
514
+ """
515
+ ObjectId from the KeyVault
516
+ """
517
+ return pulumi.get(self, "principal_id")
518
+
519
+ @property
520
+ @pulumi.getter(name="tenantId")
521
+ def tenant_id(self) -> str:
522
+ """
523
+ TenantId from the KeyVault
524
+ """
525
+ return pulumi.get(self, "tenant_id")
526
+
527
+ @property
528
+ @pulumi.getter
529
+ def type(self) -> Optional[str]:
530
+ """
531
+ Type of managed service identity.
532
+ """
533
+ return pulumi.get(self, "type")
534
+
535
+ @property
536
+ @pulumi.getter(name="userAssignedIdentities")
537
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
538
+ """
539
+ Properties for User Assigned Identities
540
+ """
541
+ return pulumi.get(self, "user_assigned_identities")
542
+
543
+
544
+ @pulumi.output_type
545
+ class KeyVaultPropertiesResponse(dict):
546
+ """
547
+ Properties to configure keyVault Properties
548
+ """
549
+ @staticmethod
550
+ def __key_warning(key: str):
551
+ suggest = None
552
+ if key == "keyName":
553
+ suggest = "key_name"
554
+ elif key == "keyVaultUri":
555
+ suggest = "key_vault_uri"
556
+ elif key == "keyVersion":
557
+ suggest = "key_version"
558
+
559
+ if suggest:
560
+ pulumi.log.warn(f"Key '{key}' not found in KeyVaultPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
561
+
562
+ def __getitem__(self, key: str) -> Any:
563
+ KeyVaultPropertiesResponse.__key_warning(key)
564
+ return super().__getitem__(key)
565
+
566
+ def get(self, key: str, default = None) -> Any:
567
+ KeyVaultPropertiesResponse.__key_warning(key)
568
+ return super().get(key, default)
569
+
570
+ def __init__(__self__, *,
571
+ identity: Optional['outputs.UserAssignedIdentityPropertiesResponse'] = None,
572
+ key_name: Optional[str] = None,
573
+ key_vault_uri: Optional[str] = None,
574
+ key_version: Optional[str] = None):
575
+ """
576
+ Properties to configure keyVault Properties
577
+ :param str key_name: Name of the Key from KeyVault
578
+ :param str key_vault_uri: Uri of KeyVault
579
+ :param str key_version: Key Version
580
+ """
581
+ if identity is not None:
582
+ pulumi.set(__self__, "identity", identity)
583
+ if key_name is not None:
584
+ pulumi.set(__self__, "key_name", key_name)
585
+ if key_vault_uri is not None:
586
+ pulumi.set(__self__, "key_vault_uri", key_vault_uri)
587
+ if key_version is not None:
588
+ pulumi.set(__self__, "key_version", key_version)
589
+
590
+ @property
591
+ @pulumi.getter
592
+ def identity(self) -> Optional['outputs.UserAssignedIdentityPropertiesResponse']:
593
+ return pulumi.get(self, "identity")
594
+
595
+ @property
596
+ @pulumi.getter(name="keyName")
597
+ def key_name(self) -> Optional[str]:
598
+ """
599
+ Name of the Key from KeyVault
600
+ """
601
+ return pulumi.get(self, "key_name")
602
+
603
+ @property
604
+ @pulumi.getter(name="keyVaultUri")
605
+ def key_vault_uri(self) -> Optional[str]:
606
+ """
607
+ Uri of KeyVault
608
+ """
609
+ return pulumi.get(self, "key_vault_uri")
610
+
611
+ @property
612
+ @pulumi.getter(name="keyVersion")
613
+ def key_version(self) -> Optional[str]:
614
+ """
615
+ Key Version
616
+ """
617
+ return pulumi.get(self, "key_version")
618
+
619
+
620
+ @pulumi.output_type
621
+ class NWRuleSetIpRulesResponse(dict):
622
+ """
623
+ The response from the List namespace operation.
624
+ """
625
+ @staticmethod
626
+ def __key_warning(key: str):
627
+ suggest = None
628
+ if key == "ipMask":
629
+ suggest = "ip_mask"
630
+
631
+ if suggest:
632
+ pulumi.log.warn(f"Key '{key}' not found in NWRuleSetIpRulesResponse. Access the value via the '{suggest}' property getter instead.")
633
+
634
+ def __getitem__(self, key: str) -> Any:
635
+ NWRuleSetIpRulesResponse.__key_warning(key)
636
+ return super().__getitem__(key)
637
+
638
+ def get(self, key: str, default = None) -> Any:
639
+ NWRuleSetIpRulesResponse.__key_warning(key)
640
+ return super().get(key, default)
641
+
642
+ def __init__(__self__, *,
643
+ action: Optional[str] = None,
644
+ ip_mask: Optional[str] = None):
645
+ """
646
+ The response from the List namespace operation.
647
+ :param str action: The IP Filter Action
648
+ :param str ip_mask: IP Mask
649
+ """
650
+ if action is not None:
651
+ pulumi.set(__self__, "action", action)
652
+ if ip_mask is not None:
653
+ pulumi.set(__self__, "ip_mask", ip_mask)
654
+
655
+ @property
656
+ @pulumi.getter
657
+ def action(self) -> Optional[str]:
658
+ """
659
+ The IP Filter Action
660
+ """
661
+ return pulumi.get(self, "action")
662
+
663
+ @property
664
+ @pulumi.getter(name="ipMask")
665
+ def ip_mask(self) -> Optional[str]:
666
+ """
667
+ IP Mask
668
+ """
669
+ return pulumi.get(self, "ip_mask")
670
+
671
+
672
+ @pulumi.output_type
673
+ class NWRuleSetVirtualNetworkRulesResponse(dict):
674
+ """
675
+ The response from the List namespace operation.
676
+ """
677
+ @staticmethod
678
+ def __key_warning(key: str):
679
+ suggest = None
680
+ if key == "ignoreMissingVnetServiceEndpoint":
681
+ suggest = "ignore_missing_vnet_service_endpoint"
682
+
683
+ if suggest:
684
+ pulumi.log.warn(f"Key '{key}' not found in NWRuleSetVirtualNetworkRulesResponse. Access the value via the '{suggest}' property getter instead.")
685
+
686
+ def __getitem__(self, key: str) -> Any:
687
+ NWRuleSetVirtualNetworkRulesResponse.__key_warning(key)
688
+ return super().__getitem__(key)
689
+
690
+ def get(self, key: str, default = None) -> Any:
691
+ NWRuleSetVirtualNetworkRulesResponse.__key_warning(key)
692
+ return super().get(key, default)
693
+
694
+ def __init__(__self__, *,
695
+ ignore_missing_vnet_service_endpoint: Optional[bool] = None,
696
+ subnet: Optional['outputs.SubnetResponse'] = None):
697
+ """
698
+ The response from the List namespace operation.
699
+ :param bool ignore_missing_vnet_service_endpoint: Value that indicates whether to ignore missing Vnet Service Endpoint
700
+ :param 'SubnetResponse' subnet: Subnet properties
701
+ """
702
+ if ignore_missing_vnet_service_endpoint is not None:
703
+ pulumi.set(__self__, "ignore_missing_vnet_service_endpoint", ignore_missing_vnet_service_endpoint)
704
+ if subnet is not None:
705
+ pulumi.set(__self__, "subnet", subnet)
706
+
707
+ @property
708
+ @pulumi.getter(name="ignoreMissingVnetServiceEndpoint")
709
+ def ignore_missing_vnet_service_endpoint(self) -> Optional[bool]:
710
+ """
711
+ Value that indicates whether to ignore missing Vnet Service Endpoint
712
+ """
713
+ return pulumi.get(self, "ignore_missing_vnet_service_endpoint")
714
+
715
+ @property
716
+ @pulumi.getter
717
+ def subnet(self) -> Optional['outputs.SubnetResponse']:
718
+ """
719
+ Subnet properties
720
+ """
721
+ return pulumi.get(self, "subnet")
722
+
723
+
724
+ @pulumi.output_type
725
+ class PrivateEndpointConnectionResponse(dict):
726
+ """
727
+ Properties of the PrivateEndpointConnection.
728
+ """
729
+ @staticmethod
730
+ def __key_warning(key: str):
731
+ suggest = None
732
+ if key == "systemData":
733
+ suggest = "system_data"
734
+ elif key == "privateEndpoint":
735
+ suggest = "private_endpoint"
736
+ elif key == "privateLinkServiceConnectionState":
737
+ suggest = "private_link_service_connection_state"
738
+ elif key == "provisioningState":
739
+ suggest = "provisioning_state"
740
+
741
+ if suggest:
742
+ pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionResponse. Access the value via the '{suggest}' property getter instead.")
743
+
744
+ def __getitem__(self, key: str) -> Any:
745
+ PrivateEndpointConnectionResponse.__key_warning(key)
746
+ return super().__getitem__(key)
747
+
748
+ def get(self, key: str, default = None) -> Any:
749
+ PrivateEndpointConnectionResponse.__key_warning(key)
750
+ return super().get(key, default)
751
+
752
+ def __init__(__self__, *,
753
+ id: str,
754
+ location: str,
755
+ name: str,
756
+ system_data: 'outputs.SystemDataResponse',
757
+ type: str,
758
+ private_endpoint: Optional['outputs.PrivateEndpointResponse'] = None,
759
+ private_link_service_connection_state: Optional['outputs.ConnectionStateResponse'] = None,
760
+ provisioning_state: Optional[str] = None):
761
+ """
762
+ Properties of the PrivateEndpointConnection.
763
+ :param str id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
764
+ :param str location: The geo-location where the resource lives
765
+ :param str name: The name of the resource
766
+ :param 'SystemDataResponse' system_data: The system meta data relating to this resource.
767
+ :param str type: The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
768
+ :param 'PrivateEndpointResponse' private_endpoint: The Private Endpoint resource for this Connection.
769
+ :param 'ConnectionStateResponse' private_link_service_connection_state: Details about the state of the connection.
770
+ :param str provisioning_state: Provisioning state of the Private Endpoint Connection.
771
+ """
772
+ pulumi.set(__self__, "id", id)
773
+ pulumi.set(__self__, "location", location)
774
+ pulumi.set(__self__, "name", name)
775
+ pulumi.set(__self__, "system_data", system_data)
776
+ pulumi.set(__self__, "type", type)
777
+ if private_endpoint is not None:
778
+ pulumi.set(__self__, "private_endpoint", private_endpoint)
779
+ if private_link_service_connection_state is not None:
780
+ pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
781
+ if provisioning_state is not None:
782
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
783
+
784
+ @property
785
+ @pulumi.getter
786
+ def id(self) -> str:
787
+ """
788
+ Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
789
+ """
790
+ return pulumi.get(self, "id")
791
+
792
+ @property
793
+ @pulumi.getter
794
+ def location(self) -> str:
795
+ """
796
+ The geo-location where the resource lives
797
+ """
798
+ return pulumi.get(self, "location")
799
+
800
+ @property
801
+ @pulumi.getter
802
+ def name(self) -> str:
803
+ """
804
+ The name of the resource
805
+ """
806
+ return pulumi.get(self, "name")
807
+
808
+ @property
809
+ @pulumi.getter(name="systemData")
810
+ def system_data(self) -> 'outputs.SystemDataResponse':
811
+ """
812
+ The system meta data relating to this resource.
813
+ """
814
+ return pulumi.get(self, "system_data")
815
+
816
+ @property
817
+ @pulumi.getter
818
+ def type(self) -> str:
819
+ """
820
+ The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
821
+ """
822
+ return pulumi.get(self, "type")
823
+
824
+ @property
825
+ @pulumi.getter(name="privateEndpoint")
826
+ def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
827
+ """
828
+ The Private Endpoint resource for this Connection.
829
+ """
830
+ return pulumi.get(self, "private_endpoint")
831
+
832
+ @property
833
+ @pulumi.getter(name="privateLinkServiceConnectionState")
834
+ def private_link_service_connection_state(self) -> Optional['outputs.ConnectionStateResponse']:
835
+ """
836
+ Details about the state of the connection.
837
+ """
838
+ return pulumi.get(self, "private_link_service_connection_state")
839
+
840
+ @property
841
+ @pulumi.getter(name="provisioningState")
842
+ def provisioning_state(self) -> Optional[str]:
843
+ """
844
+ Provisioning state of the Private Endpoint Connection.
845
+ """
846
+ return pulumi.get(self, "provisioning_state")
847
+
848
+
849
+ @pulumi.output_type
850
+ class PrivateEndpointResponse(dict):
851
+ """
852
+ PrivateEndpoint information.
853
+ """
854
+ def __init__(__self__, *,
855
+ id: Optional[str] = None):
856
+ """
857
+ PrivateEndpoint information.
858
+ :param str id: The ARM identifier for Private Endpoint.
859
+ """
860
+ if id is not None:
861
+ pulumi.set(__self__, "id", id)
862
+
863
+ @property
864
+ @pulumi.getter
865
+ def id(self) -> Optional[str]:
866
+ """
867
+ The ARM identifier for Private Endpoint.
868
+ """
869
+ return pulumi.get(self, "id")
870
+
871
+
872
+ @pulumi.output_type
873
+ class RetentionDescriptionResponse(dict):
874
+ """
875
+ Properties to configure retention settings for the eventhub
876
+ """
877
+ @staticmethod
878
+ def __key_warning(key: str):
879
+ suggest = None
880
+ if key == "cleanupPolicy":
881
+ suggest = "cleanup_policy"
882
+ elif key == "retentionTimeInHours":
883
+ suggest = "retention_time_in_hours"
884
+ elif key == "tombstoneRetentionTimeInHours":
885
+ suggest = "tombstone_retention_time_in_hours"
886
+
887
+ if suggest:
888
+ pulumi.log.warn(f"Key '{key}' not found in RetentionDescriptionResponse. Access the value via the '{suggest}' property getter instead.")
889
+
890
+ def __getitem__(self, key: str) -> Any:
891
+ RetentionDescriptionResponse.__key_warning(key)
892
+ return super().__getitem__(key)
893
+
894
+ def get(self, key: str, default = None) -> Any:
895
+ RetentionDescriptionResponse.__key_warning(key)
896
+ return super().get(key, default)
897
+
898
+ def __init__(__self__, *,
899
+ cleanup_policy: Optional[str] = None,
900
+ retention_time_in_hours: Optional[float] = None,
901
+ tombstone_retention_time_in_hours: Optional[int] = None):
902
+ """
903
+ Properties to configure retention settings for the eventhub
904
+ :param str cleanup_policy: Enumerates the possible values for cleanup policy
905
+ :param float retention_time_in_hours: Number of hours to retain the events for this Event Hub. This value is only used when cleanupPolicy is Delete. If cleanupPolicy is Compact the returned value of this property is Long.MaxValue
906
+ :param int tombstone_retention_time_in_hours: Number of hours to retain the tombstone markers of a compacted Event Hub. This value is only used when cleanupPolicy is Compact. Consumer must complete reading the tombstone marker within this specified amount of time if consumer begins from starting offset to ensure they get a valid snapshot for the specific key described by the tombstone marker within the compacted Event Hub
907
+ """
908
+ if cleanup_policy is not None:
909
+ pulumi.set(__self__, "cleanup_policy", cleanup_policy)
910
+ if retention_time_in_hours is not None:
911
+ pulumi.set(__self__, "retention_time_in_hours", retention_time_in_hours)
912
+ if tombstone_retention_time_in_hours is not None:
913
+ pulumi.set(__self__, "tombstone_retention_time_in_hours", tombstone_retention_time_in_hours)
914
+
915
+ @property
916
+ @pulumi.getter(name="cleanupPolicy")
917
+ def cleanup_policy(self) -> Optional[str]:
918
+ """
919
+ Enumerates the possible values for cleanup policy
920
+ """
921
+ return pulumi.get(self, "cleanup_policy")
922
+
923
+ @property
924
+ @pulumi.getter(name="retentionTimeInHours")
925
+ def retention_time_in_hours(self) -> Optional[float]:
926
+ """
927
+ Number of hours to retain the events for this Event Hub. This value is only used when cleanupPolicy is Delete. If cleanupPolicy is Compact the returned value of this property is Long.MaxValue
928
+ """
929
+ return pulumi.get(self, "retention_time_in_hours")
930
+
931
+ @property
932
+ @pulumi.getter(name="tombstoneRetentionTimeInHours")
933
+ def tombstone_retention_time_in_hours(self) -> Optional[int]:
934
+ """
935
+ Number of hours to retain the tombstone markers of a compacted Event Hub. This value is only used when cleanupPolicy is Compact. Consumer must complete reading the tombstone marker within this specified amount of time if consumer begins from starting offset to ensure they get a valid snapshot for the specific key described by the tombstone marker within the compacted Event Hub
936
+ """
937
+ return pulumi.get(self, "tombstone_retention_time_in_hours")
938
+
939
+
940
+ @pulumi.output_type
941
+ class SkuResponse(dict):
942
+ """
943
+ SKU parameters supplied to the create namespace operation
944
+ """
945
+ def __init__(__self__, *,
946
+ name: str,
947
+ capacity: Optional[int] = None,
948
+ tier: Optional[str] = None):
949
+ """
950
+ SKU parameters supplied to the create namespace operation
951
+ :param str name: Name of this SKU.
952
+ :param int capacity: The Event Hubs throughput units for Basic or Standard tiers, where value should be 0 to 20 throughput units. The Event Hubs premium units for Premium tier, where value should be 0 to 10 premium units.
953
+ :param str tier: The billing tier of this particular SKU.
954
+ """
955
+ pulumi.set(__self__, "name", name)
956
+ if capacity is not None:
957
+ pulumi.set(__self__, "capacity", capacity)
958
+ if tier is not None:
959
+ pulumi.set(__self__, "tier", tier)
960
+
961
+ @property
962
+ @pulumi.getter
963
+ def name(self) -> str:
964
+ """
965
+ Name of this SKU.
966
+ """
967
+ return pulumi.get(self, "name")
968
+
969
+ @property
970
+ @pulumi.getter
971
+ def capacity(self) -> Optional[int]:
972
+ """
973
+ The Event Hubs throughput units for Basic or Standard tiers, where value should be 0 to 20 throughput units. The Event Hubs premium units for Premium tier, where value should be 0 to 10 premium units.
974
+ """
975
+ return pulumi.get(self, "capacity")
976
+
977
+ @property
978
+ @pulumi.getter
979
+ def tier(self) -> Optional[str]:
980
+ """
981
+ The billing tier of this particular SKU.
982
+ """
983
+ return pulumi.get(self, "tier")
984
+
985
+
986
+ @pulumi.output_type
987
+ class SubnetResponse(dict):
988
+ """
989
+ Properties supplied for Subnet
990
+ """
991
+ def __init__(__self__, *,
992
+ id: Optional[str] = None):
993
+ """
994
+ Properties supplied for Subnet
995
+ :param str id: Resource ID of Virtual Network Subnet
996
+ """
997
+ if id is not None:
998
+ pulumi.set(__self__, "id", id)
999
+
1000
+ @property
1001
+ @pulumi.getter
1002
+ def id(self) -> Optional[str]:
1003
+ """
1004
+ Resource ID of Virtual Network Subnet
1005
+ """
1006
+ return pulumi.get(self, "id")
1007
+
1008
+
1009
+ @pulumi.output_type
1010
+ class SystemDataResponse(dict):
1011
+ """
1012
+ Metadata pertaining to creation and last modification of the resource.
1013
+ """
1014
+ @staticmethod
1015
+ def __key_warning(key: str):
1016
+ suggest = None
1017
+ if key == "createdAt":
1018
+ suggest = "created_at"
1019
+ elif key == "createdBy":
1020
+ suggest = "created_by"
1021
+ elif key == "createdByType":
1022
+ suggest = "created_by_type"
1023
+ elif key == "lastModifiedAt":
1024
+ suggest = "last_modified_at"
1025
+ elif key == "lastModifiedBy":
1026
+ suggest = "last_modified_by"
1027
+ elif key == "lastModifiedByType":
1028
+ suggest = "last_modified_by_type"
1029
+
1030
+ if suggest:
1031
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
1032
+
1033
+ def __getitem__(self, key: str) -> Any:
1034
+ SystemDataResponse.__key_warning(key)
1035
+ return super().__getitem__(key)
1036
+
1037
+ def get(self, key: str, default = None) -> Any:
1038
+ SystemDataResponse.__key_warning(key)
1039
+ return super().get(key, default)
1040
+
1041
+ def __init__(__self__, *,
1042
+ created_at: Optional[str] = None,
1043
+ created_by: Optional[str] = None,
1044
+ created_by_type: Optional[str] = None,
1045
+ last_modified_at: Optional[str] = None,
1046
+ last_modified_by: Optional[str] = None,
1047
+ last_modified_by_type: Optional[str] = None):
1048
+ """
1049
+ Metadata pertaining to creation and last modification of the resource.
1050
+ :param str created_at: The timestamp of resource creation (UTC).
1051
+ :param str created_by: The identity that created the resource.
1052
+ :param str created_by_type: The type of identity that created the resource.
1053
+ :param str last_modified_at: The type of identity that last modified the resource.
1054
+ :param str last_modified_by: The identity that last modified the resource.
1055
+ :param str last_modified_by_type: The type of identity that last modified the resource.
1056
+ """
1057
+ if created_at is not None:
1058
+ pulumi.set(__self__, "created_at", created_at)
1059
+ if created_by is not None:
1060
+ pulumi.set(__self__, "created_by", created_by)
1061
+ if created_by_type is not None:
1062
+ pulumi.set(__self__, "created_by_type", created_by_type)
1063
+ if last_modified_at is not None:
1064
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
1065
+ if last_modified_by is not None:
1066
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
1067
+ if last_modified_by_type is not None:
1068
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
1069
+
1070
+ @property
1071
+ @pulumi.getter(name="createdAt")
1072
+ def created_at(self) -> Optional[str]:
1073
+ """
1074
+ The timestamp of resource creation (UTC).
1075
+ """
1076
+ return pulumi.get(self, "created_at")
1077
+
1078
+ @property
1079
+ @pulumi.getter(name="createdBy")
1080
+ def created_by(self) -> Optional[str]:
1081
+ """
1082
+ The identity that created the resource.
1083
+ """
1084
+ return pulumi.get(self, "created_by")
1085
+
1086
+ @property
1087
+ @pulumi.getter(name="createdByType")
1088
+ def created_by_type(self) -> Optional[str]:
1089
+ """
1090
+ The type of identity that created the resource.
1091
+ """
1092
+ return pulumi.get(self, "created_by_type")
1093
+
1094
+ @property
1095
+ @pulumi.getter(name="lastModifiedAt")
1096
+ def last_modified_at(self) -> Optional[str]:
1097
+ """
1098
+ The type of identity that last modified the resource.
1099
+ """
1100
+ return pulumi.get(self, "last_modified_at")
1101
+
1102
+ @property
1103
+ @pulumi.getter(name="lastModifiedBy")
1104
+ def last_modified_by(self) -> Optional[str]:
1105
+ """
1106
+ The identity that last modified the resource.
1107
+ """
1108
+ return pulumi.get(self, "last_modified_by")
1109
+
1110
+ @property
1111
+ @pulumi.getter(name="lastModifiedByType")
1112
+ def last_modified_by_type(self) -> Optional[str]:
1113
+ """
1114
+ The type of identity that last modified the resource.
1115
+ """
1116
+ return pulumi.get(self, "last_modified_by_type")
1117
+
1118
+
1119
+ @pulumi.output_type
1120
+ class ThrottlingPolicyResponse(dict):
1121
+ """
1122
+ Properties of the throttling policy
1123
+ """
1124
+ @staticmethod
1125
+ def __key_warning(key: str):
1126
+ suggest = None
1127
+ if key == "metricId":
1128
+ suggest = "metric_id"
1129
+ elif key == "rateLimitThreshold":
1130
+ suggest = "rate_limit_threshold"
1131
+
1132
+ if suggest:
1133
+ pulumi.log.warn(f"Key '{key}' not found in ThrottlingPolicyResponse. Access the value via the '{suggest}' property getter instead.")
1134
+
1135
+ def __getitem__(self, key: str) -> Any:
1136
+ ThrottlingPolicyResponse.__key_warning(key)
1137
+ return super().__getitem__(key)
1138
+
1139
+ def get(self, key: str, default = None) -> Any:
1140
+ ThrottlingPolicyResponse.__key_warning(key)
1141
+ return super().get(key, default)
1142
+
1143
+ def __init__(__self__, *,
1144
+ metric_id: str,
1145
+ name: str,
1146
+ rate_limit_threshold: float,
1147
+ type: str):
1148
+ """
1149
+ Properties of the throttling policy
1150
+ :param str metric_id: Metric Id on which the throttle limit should be set, MetricId can be discovered by hovering over Metric in the Metrics section of Event Hub Namespace inside Azure Portal
1151
+ :param str name: The Name of this policy
1152
+ :param float rate_limit_threshold: The Threshold limit above which the application group will be throttled.Rate limit is always per second.
1153
+ :param str type: Application Group Policy types
1154
+ Expected value is 'ThrottlingPolicy'.
1155
+ """
1156
+ pulumi.set(__self__, "metric_id", metric_id)
1157
+ pulumi.set(__self__, "name", name)
1158
+ pulumi.set(__self__, "rate_limit_threshold", rate_limit_threshold)
1159
+ pulumi.set(__self__, "type", 'ThrottlingPolicy')
1160
+
1161
+ @property
1162
+ @pulumi.getter(name="metricId")
1163
+ def metric_id(self) -> str:
1164
+ """
1165
+ Metric Id on which the throttle limit should be set, MetricId can be discovered by hovering over Metric in the Metrics section of Event Hub Namespace inside Azure Portal
1166
+ """
1167
+ return pulumi.get(self, "metric_id")
1168
+
1169
+ @property
1170
+ @pulumi.getter
1171
+ def name(self) -> str:
1172
+ """
1173
+ The Name of this policy
1174
+ """
1175
+ return pulumi.get(self, "name")
1176
+
1177
+ @property
1178
+ @pulumi.getter(name="rateLimitThreshold")
1179
+ def rate_limit_threshold(self) -> float:
1180
+ """
1181
+ The Threshold limit above which the application group will be throttled.Rate limit is always per second.
1182
+ """
1183
+ return pulumi.get(self, "rate_limit_threshold")
1184
+
1185
+ @property
1186
+ @pulumi.getter
1187
+ def type(self) -> str:
1188
+ """
1189
+ Application Group Policy types
1190
+ Expected value is 'ThrottlingPolicy'.
1191
+ """
1192
+ return pulumi.get(self, "type")
1193
+
1194
+
1195
+ @pulumi.output_type
1196
+ class UpgradePreferencesResponse(dict):
1197
+ """
1198
+ Contains all settings for the cluster upgrade window.
1199
+ """
1200
+ @staticmethod
1201
+ def __key_warning(key: str):
1202
+ suggest = None
1203
+ if key == "startDayOfWeek":
1204
+ suggest = "start_day_of_week"
1205
+ elif key == "startHourOfDay":
1206
+ suggest = "start_hour_of_day"
1207
+
1208
+ if suggest:
1209
+ pulumi.log.warn(f"Key '{key}' not found in UpgradePreferencesResponse. Access the value via the '{suggest}' property getter instead.")
1210
+
1211
+ def __getitem__(self, key: str) -> Any:
1212
+ UpgradePreferencesResponse.__key_warning(key)
1213
+ return super().__getitem__(key)
1214
+
1215
+ def get(self, key: str, default = None) -> Any:
1216
+ UpgradePreferencesResponse.__key_warning(key)
1217
+ return super().get(key, default)
1218
+
1219
+ def __init__(__self__, *,
1220
+ start_day_of_week: Optional[str] = None,
1221
+ start_hour_of_day: Optional[int] = None):
1222
+ """
1223
+ Contains all settings for the cluster upgrade window.
1224
+ :param str start_day_of_week: Preferred day of the week in UTC time to begin an upgrade. If 'Any' is selected, upgrade will proceed at any given weekday
1225
+ :param int start_hour_of_day: Preferred hour of the day in UTC time to begin an upgrade
1226
+ """
1227
+ if start_day_of_week is not None:
1228
+ pulumi.set(__self__, "start_day_of_week", start_day_of_week)
1229
+ if start_hour_of_day is not None:
1230
+ pulumi.set(__self__, "start_hour_of_day", start_hour_of_day)
1231
+
1232
+ @property
1233
+ @pulumi.getter(name="startDayOfWeek")
1234
+ def start_day_of_week(self) -> Optional[str]:
1235
+ """
1236
+ Preferred day of the week in UTC time to begin an upgrade. If 'Any' is selected, upgrade will proceed at any given weekday
1237
+ """
1238
+ return pulumi.get(self, "start_day_of_week")
1239
+
1240
+ @property
1241
+ @pulumi.getter(name="startHourOfDay")
1242
+ def start_hour_of_day(self) -> Optional[int]:
1243
+ """
1244
+ Preferred hour of the day in UTC time to begin an upgrade
1245
+ """
1246
+ return pulumi.get(self, "start_hour_of_day")
1247
+
1248
+
1249
+ @pulumi.output_type
1250
+ class UserAssignedIdentityPropertiesResponse(dict):
1251
+ @staticmethod
1252
+ def __key_warning(key: str):
1253
+ suggest = None
1254
+ if key == "userAssignedIdentity":
1255
+ suggest = "user_assigned_identity"
1256
+
1257
+ if suggest:
1258
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1259
+
1260
+ def __getitem__(self, key: str) -> Any:
1261
+ UserAssignedIdentityPropertiesResponse.__key_warning(key)
1262
+ return super().__getitem__(key)
1263
+
1264
+ def get(self, key: str, default = None) -> Any:
1265
+ UserAssignedIdentityPropertiesResponse.__key_warning(key)
1266
+ return super().get(key, default)
1267
+
1268
+ def __init__(__self__, *,
1269
+ user_assigned_identity: Optional[str] = None):
1270
+ """
1271
+ :param str user_assigned_identity: ARM ID of user Identity selected for encryption
1272
+ """
1273
+ if user_assigned_identity is not None:
1274
+ pulumi.set(__self__, "user_assigned_identity", user_assigned_identity)
1275
+
1276
+ @property
1277
+ @pulumi.getter(name="userAssignedIdentity")
1278
+ def user_assigned_identity(self) -> Optional[str]:
1279
+ """
1280
+ ARM ID of user Identity selected for encryption
1281
+ """
1282
+ return pulumi.get(self, "user_assigned_identity")
1283
+
1284
+
1285
+ @pulumi.output_type
1286
+ class UserAssignedIdentityResponse(dict):
1287
+ """
1288
+ Recognized Dictionary value.
1289
+ """
1290
+ @staticmethod
1291
+ def __key_warning(key: str):
1292
+ suggest = None
1293
+ if key == "clientId":
1294
+ suggest = "client_id"
1295
+ elif key == "principalId":
1296
+ suggest = "principal_id"
1297
+
1298
+ if suggest:
1299
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
1300
+
1301
+ def __getitem__(self, key: str) -> Any:
1302
+ UserAssignedIdentityResponse.__key_warning(key)
1303
+ return super().__getitem__(key)
1304
+
1305
+ def get(self, key: str, default = None) -> Any:
1306
+ UserAssignedIdentityResponse.__key_warning(key)
1307
+ return super().get(key, default)
1308
+
1309
+ def __init__(__self__, *,
1310
+ client_id: str,
1311
+ principal_id: str):
1312
+ """
1313
+ Recognized Dictionary value.
1314
+ :param str client_id: Client Id of user assigned identity
1315
+ :param str principal_id: Principal Id of user assigned identity
1316
+ """
1317
+ pulumi.set(__self__, "client_id", client_id)
1318
+ pulumi.set(__self__, "principal_id", principal_id)
1319
+
1320
+ @property
1321
+ @pulumi.getter(name="clientId")
1322
+ def client_id(self) -> str:
1323
+ """
1324
+ Client Id of user assigned identity
1325
+ """
1326
+ return pulumi.get(self, "client_id")
1327
+
1328
+ @property
1329
+ @pulumi.getter(name="principalId")
1330
+ def principal_id(self) -> str:
1331
+ """
1332
+ Principal Id of user assigned identity
1333
+ """
1334
+ return pulumi.get(self, "principal_id")
1335
+
1336
+