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,986 @@
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 ._enums import *
12
+
13
+ __all__ = [
14
+ 'CaptureDescriptionArgs',
15
+ 'CaptureIdentityArgs',
16
+ 'ClusterSkuArgs',
17
+ 'ConnectionStateArgs',
18
+ 'DestinationArgs',
19
+ 'EncryptionArgs',
20
+ 'IdentityArgs',
21
+ 'KeyVaultPropertiesArgs',
22
+ 'NWRuleSetIpRulesArgs',
23
+ 'NWRuleSetVirtualNetworkRulesArgs',
24
+ 'PrivateEndpointConnectionArgs',
25
+ 'PrivateEndpointArgs',
26
+ 'RetentionDescriptionArgs',
27
+ 'SkuArgs',
28
+ 'SubnetArgs',
29
+ 'ThrottlingPolicyArgs',
30
+ 'UpgradePreferencesArgs',
31
+ 'UserAssignedIdentityPropertiesArgs',
32
+ ]
33
+
34
+ @pulumi.input_type
35
+ class CaptureDescriptionArgs:
36
+ def __init__(__self__, *,
37
+ destination: Optional[pulumi.Input['DestinationArgs']] = None,
38
+ enabled: Optional[pulumi.Input[bool]] = None,
39
+ encoding: Optional[pulumi.Input['EncodingCaptureDescription']] = None,
40
+ interval_in_seconds: Optional[pulumi.Input[int]] = None,
41
+ size_limit_in_bytes: Optional[pulumi.Input[int]] = None,
42
+ skip_empty_archives: Optional[pulumi.Input[bool]] = None):
43
+ """
44
+ Properties to configure capture description for eventhub
45
+ :param pulumi.Input['DestinationArgs'] destination: Properties of Destination where capture will be stored. (Storage Account, Blob Names)
46
+ :param pulumi.Input[bool] enabled: A value that indicates whether capture description is enabled.
47
+ :param pulumi.Input['EncodingCaptureDescription'] encoding: Enumerates the possible values for the encoding format of capture description. Note: 'AvroDeflate' will be deprecated in New API Version
48
+ :param pulumi.Input[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
49
+ :param pulumi.Input[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
50
+ :param pulumi.Input[bool] skip_empty_archives: A value that indicates whether to Skip Empty Archives
51
+ """
52
+ if destination is not None:
53
+ pulumi.set(__self__, "destination", destination)
54
+ if enabled is not None:
55
+ pulumi.set(__self__, "enabled", enabled)
56
+ if encoding is not None:
57
+ pulumi.set(__self__, "encoding", encoding)
58
+ if interval_in_seconds is not None:
59
+ pulumi.set(__self__, "interval_in_seconds", interval_in_seconds)
60
+ if size_limit_in_bytes is not None:
61
+ pulumi.set(__self__, "size_limit_in_bytes", size_limit_in_bytes)
62
+ if skip_empty_archives is not None:
63
+ pulumi.set(__self__, "skip_empty_archives", skip_empty_archives)
64
+
65
+ @property
66
+ @pulumi.getter
67
+ def destination(self) -> Optional[pulumi.Input['DestinationArgs']]:
68
+ """
69
+ Properties of Destination where capture will be stored. (Storage Account, Blob Names)
70
+ """
71
+ return pulumi.get(self, "destination")
72
+
73
+ @destination.setter
74
+ def destination(self, value: Optional[pulumi.Input['DestinationArgs']]):
75
+ pulumi.set(self, "destination", value)
76
+
77
+ @property
78
+ @pulumi.getter
79
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
80
+ """
81
+ A value that indicates whether capture description is enabled.
82
+ """
83
+ return pulumi.get(self, "enabled")
84
+
85
+ @enabled.setter
86
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
87
+ pulumi.set(self, "enabled", value)
88
+
89
+ @property
90
+ @pulumi.getter
91
+ def encoding(self) -> Optional[pulumi.Input['EncodingCaptureDescription']]:
92
+ """
93
+ Enumerates the possible values for the encoding format of capture description. Note: 'AvroDeflate' will be deprecated in New API Version
94
+ """
95
+ return pulumi.get(self, "encoding")
96
+
97
+ @encoding.setter
98
+ def encoding(self, value: Optional[pulumi.Input['EncodingCaptureDescription']]):
99
+ pulumi.set(self, "encoding", value)
100
+
101
+ @property
102
+ @pulumi.getter(name="intervalInSeconds")
103
+ def interval_in_seconds(self) -> Optional[pulumi.Input[int]]:
104
+ """
105
+ 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
106
+ """
107
+ return pulumi.get(self, "interval_in_seconds")
108
+
109
+ @interval_in_seconds.setter
110
+ def interval_in_seconds(self, value: Optional[pulumi.Input[int]]):
111
+ pulumi.set(self, "interval_in_seconds", value)
112
+
113
+ @property
114
+ @pulumi.getter(name="sizeLimitInBytes")
115
+ def size_limit_in_bytes(self) -> Optional[pulumi.Input[int]]:
116
+ """
117
+ 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
118
+ """
119
+ return pulumi.get(self, "size_limit_in_bytes")
120
+
121
+ @size_limit_in_bytes.setter
122
+ def size_limit_in_bytes(self, value: Optional[pulumi.Input[int]]):
123
+ pulumi.set(self, "size_limit_in_bytes", value)
124
+
125
+ @property
126
+ @pulumi.getter(name="skipEmptyArchives")
127
+ def skip_empty_archives(self) -> Optional[pulumi.Input[bool]]:
128
+ """
129
+ A value that indicates whether to Skip Empty Archives
130
+ """
131
+ return pulumi.get(self, "skip_empty_archives")
132
+
133
+ @skip_empty_archives.setter
134
+ def skip_empty_archives(self, value: Optional[pulumi.Input[bool]]):
135
+ pulumi.set(self, "skip_empty_archives", value)
136
+
137
+
138
+ @pulumi.input_type
139
+ class CaptureIdentityArgs:
140
+ def __init__(__self__, *,
141
+ type: Optional[pulumi.Input['CaptureIdentityType']] = None,
142
+ user_assigned_identity: Optional[pulumi.Input[str]] = None):
143
+ """
144
+ A value that indicates whether capture description is enabled.
145
+ :param pulumi.Input['CaptureIdentityType'] type: Type of Azure Active Directory Managed Identity.
146
+ :param pulumi.Input[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.
147
+ """
148
+ if type is not None:
149
+ pulumi.set(__self__, "type", type)
150
+ if user_assigned_identity is not None:
151
+ pulumi.set(__self__, "user_assigned_identity", user_assigned_identity)
152
+
153
+ @property
154
+ @pulumi.getter
155
+ def type(self) -> Optional[pulumi.Input['CaptureIdentityType']]:
156
+ """
157
+ Type of Azure Active Directory Managed Identity.
158
+ """
159
+ return pulumi.get(self, "type")
160
+
161
+ @type.setter
162
+ def type(self, value: Optional[pulumi.Input['CaptureIdentityType']]):
163
+ pulumi.set(self, "type", value)
164
+
165
+ @property
166
+ @pulumi.getter(name="userAssignedIdentity")
167
+ def user_assigned_identity(self) -> Optional[pulumi.Input[str]]:
168
+ """
169
+ 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
+ return pulumi.get(self, "user_assigned_identity")
172
+
173
+ @user_assigned_identity.setter
174
+ def user_assigned_identity(self, value: Optional[pulumi.Input[str]]):
175
+ pulumi.set(self, "user_assigned_identity", value)
176
+
177
+
178
+ @pulumi.input_type
179
+ class ClusterSkuArgs:
180
+ def __init__(__self__, *,
181
+ name: pulumi.Input[Union[str, 'ClusterSkuName']],
182
+ capacity: Optional[pulumi.Input[int]] = None):
183
+ """
184
+ SKU parameters particular to a cluster instance.
185
+ :param pulumi.Input[Union[str, 'ClusterSkuName']] name: Name of this SKU.
186
+ :param pulumi.Input[int] capacity: The quantity of Event Hubs Cluster Capacity Units contained in this cluster.
187
+ """
188
+ pulumi.set(__self__, "name", name)
189
+ if capacity is not None:
190
+ pulumi.set(__self__, "capacity", capacity)
191
+
192
+ @property
193
+ @pulumi.getter
194
+ def name(self) -> pulumi.Input[Union[str, 'ClusterSkuName']]:
195
+ """
196
+ Name of this SKU.
197
+ """
198
+ return pulumi.get(self, "name")
199
+
200
+ @name.setter
201
+ def name(self, value: pulumi.Input[Union[str, 'ClusterSkuName']]):
202
+ pulumi.set(self, "name", value)
203
+
204
+ @property
205
+ @pulumi.getter
206
+ def capacity(self) -> Optional[pulumi.Input[int]]:
207
+ """
208
+ The quantity of Event Hubs Cluster Capacity Units contained in this cluster.
209
+ """
210
+ return pulumi.get(self, "capacity")
211
+
212
+ @capacity.setter
213
+ def capacity(self, value: Optional[pulumi.Input[int]]):
214
+ pulumi.set(self, "capacity", value)
215
+
216
+
217
+ @pulumi.input_type
218
+ class ConnectionStateArgs:
219
+ def __init__(__self__, *,
220
+ description: Optional[pulumi.Input[str]] = None,
221
+ status: Optional[pulumi.Input[Union[str, 'PrivateLinkConnectionStatus']]] = None):
222
+ """
223
+ ConnectionState information.
224
+ :param pulumi.Input[str] description: Description of the connection state.
225
+ :param pulumi.Input[Union[str, 'PrivateLinkConnectionStatus']] status: Status of the connection.
226
+ """
227
+ if description is not None:
228
+ pulumi.set(__self__, "description", description)
229
+ if status is not None:
230
+ pulumi.set(__self__, "status", status)
231
+
232
+ @property
233
+ @pulumi.getter
234
+ def description(self) -> Optional[pulumi.Input[str]]:
235
+ """
236
+ Description of the connection state.
237
+ """
238
+ return pulumi.get(self, "description")
239
+
240
+ @description.setter
241
+ def description(self, value: Optional[pulumi.Input[str]]):
242
+ pulumi.set(self, "description", value)
243
+
244
+ @property
245
+ @pulumi.getter
246
+ def status(self) -> Optional[pulumi.Input[Union[str, 'PrivateLinkConnectionStatus']]]:
247
+ """
248
+ Status of the connection.
249
+ """
250
+ return pulumi.get(self, "status")
251
+
252
+ @status.setter
253
+ def status(self, value: Optional[pulumi.Input[Union[str, 'PrivateLinkConnectionStatus']]]):
254
+ pulumi.set(self, "status", value)
255
+
256
+
257
+ @pulumi.input_type
258
+ class DestinationArgs:
259
+ def __init__(__self__, *,
260
+ archive_name_format: Optional[pulumi.Input[str]] = None,
261
+ blob_container: Optional[pulumi.Input[str]] = None,
262
+ data_lake_account_name: Optional[pulumi.Input[str]] = None,
263
+ data_lake_folder_path: Optional[pulumi.Input[str]] = None,
264
+ data_lake_subscription_id: Optional[pulumi.Input[str]] = None,
265
+ identity: Optional[pulumi.Input['CaptureIdentityArgs']] = None,
266
+ name: Optional[pulumi.Input[str]] = None,
267
+ storage_account_resource_id: Optional[pulumi.Input[str]] = None):
268
+ """
269
+ Capture storage details for capture description
270
+ :param pulumi.Input[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
271
+ :param pulumi.Input[str] blob_container: Blob container Name
272
+ :param pulumi.Input[str] data_lake_account_name: The Azure Data Lake Store name for the captured events
273
+ :param pulumi.Input[str] data_lake_folder_path: The destination folder path for the captured events
274
+ :param pulumi.Input[str] data_lake_subscription_id: Subscription Id of Azure Data Lake Store
275
+ :param pulumi.Input['CaptureIdentityArgs'] identity: A value that indicates whether capture description is enabled.
276
+ :param pulumi.Input[str] name: Name for capture destination
277
+ :param pulumi.Input[str] storage_account_resource_id: Resource id of the storage account to be used to create the blobs
278
+ """
279
+ if archive_name_format is not None:
280
+ pulumi.set(__self__, "archive_name_format", archive_name_format)
281
+ if blob_container is not None:
282
+ pulumi.set(__self__, "blob_container", blob_container)
283
+ if data_lake_account_name is not None:
284
+ pulumi.set(__self__, "data_lake_account_name", data_lake_account_name)
285
+ if data_lake_folder_path is not None:
286
+ pulumi.set(__self__, "data_lake_folder_path", data_lake_folder_path)
287
+ if data_lake_subscription_id is not None:
288
+ pulumi.set(__self__, "data_lake_subscription_id", data_lake_subscription_id)
289
+ if identity is not None:
290
+ pulumi.set(__self__, "identity", identity)
291
+ if name is not None:
292
+ pulumi.set(__self__, "name", name)
293
+ if storage_account_resource_id is not None:
294
+ pulumi.set(__self__, "storage_account_resource_id", storage_account_resource_id)
295
+
296
+ @property
297
+ @pulumi.getter(name="archiveNameFormat")
298
+ def archive_name_format(self) -> Optional[pulumi.Input[str]]:
299
+ """
300
+ 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
301
+ """
302
+ return pulumi.get(self, "archive_name_format")
303
+
304
+ @archive_name_format.setter
305
+ def archive_name_format(self, value: Optional[pulumi.Input[str]]):
306
+ pulumi.set(self, "archive_name_format", value)
307
+
308
+ @property
309
+ @pulumi.getter(name="blobContainer")
310
+ def blob_container(self) -> Optional[pulumi.Input[str]]:
311
+ """
312
+ Blob container Name
313
+ """
314
+ return pulumi.get(self, "blob_container")
315
+
316
+ @blob_container.setter
317
+ def blob_container(self, value: Optional[pulumi.Input[str]]):
318
+ pulumi.set(self, "blob_container", value)
319
+
320
+ @property
321
+ @pulumi.getter(name="dataLakeAccountName")
322
+ def data_lake_account_name(self) -> Optional[pulumi.Input[str]]:
323
+ """
324
+ The Azure Data Lake Store name for the captured events
325
+ """
326
+ return pulumi.get(self, "data_lake_account_name")
327
+
328
+ @data_lake_account_name.setter
329
+ def data_lake_account_name(self, value: Optional[pulumi.Input[str]]):
330
+ pulumi.set(self, "data_lake_account_name", value)
331
+
332
+ @property
333
+ @pulumi.getter(name="dataLakeFolderPath")
334
+ def data_lake_folder_path(self) -> Optional[pulumi.Input[str]]:
335
+ """
336
+ The destination folder path for the captured events
337
+ """
338
+ return pulumi.get(self, "data_lake_folder_path")
339
+
340
+ @data_lake_folder_path.setter
341
+ def data_lake_folder_path(self, value: Optional[pulumi.Input[str]]):
342
+ pulumi.set(self, "data_lake_folder_path", value)
343
+
344
+ @property
345
+ @pulumi.getter(name="dataLakeSubscriptionId")
346
+ def data_lake_subscription_id(self) -> Optional[pulumi.Input[str]]:
347
+ """
348
+ Subscription Id of Azure Data Lake Store
349
+ """
350
+ return pulumi.get(self, "data_lake_subscription_id")
351
+
352
+ @data_lake_subscription_id.setter
353
+ def data_lake_subscription_id(self, value: Optional[pulumi.Input[str]]):
354
+ pulumi.set(self, "data_lake_subscription_id", value)
355
+
356
+ @property
357
+ @pulumi.getter
358
+ def identity(self) -> Optional[pulumi.Input['CaptureIdentityArgs']]:
359
+ """
360
+ A value that indicates whether capture description is enabled.
361
+ """
362
+ return pulumi.get(self, "identity")
363
+
364
+ @identity.setter
365
+ def identity(self, value: Optional[pulumi.Input['CaptureIdentityArgs']]):
366
+ pulumi.set(self, "identity", value)
367
+
368
+ @property
369
+ @pulumi.getter
370
+ def name(self) -> Optional[pulumi.Input[str]]:
371
+ """
372
+ Name for capture destination
373
+ """
374
+ return pulumi.get(self, "name")
375
+
376
+ @name.setter
377
+ def name(self, value: Optional[pulumi.Input[str]]):
378
+ pulumi.set(self, "name", value)
379
+
380
+ @property
381
+ @pulumi.getter(name="storageAccountResourceId")
382
+ def storage_account_resource_id(self) -> Optional[pulumi.Input[str]]:
383
+ """
384
+ Resource id of the storage account to be used to create the blobs
385
+ """
386
+ return pulumi.get(self, "storage_account_resource_id")
387
+
388
+ @storage_account_resource_id.setter
389
+ def storage_account_resource_id(self, value: Optional[pulumi.Input[str]]):
390
+ pulumi.set(self, "storage_account_resource_id", value)
391
+
392
+
393
+ @pulumi.input_type
394
+ class EncryptionArgs:
395
+ def __init__(__self__, *,
396
+ key_source: Optional[pulumi.Input['KeySource']] = None,
397
+ key_vault_properties: Optional[pulumi.Input[Sequence[pulumi.Input['KeyVaultPropertiesArgs']]]] = None,
398
+ require_infrastructure_encryption: Optional[pulumi.Input[bool]] = None):
399
+ """
400
+ Properties to configure Encryption
401
+ :param pulumi.Input['KeySource'] key_source: Enumerates the possible value of keySource for Encryption
402
+ :param pulumi.Input[Sequence[pulumi.Input['KeyVaultPropertiesArgs']]] key_vault_properties: Properties of KeyVault
403
+ :param pulumi.Input[bool] require_infrastructure_encryption: Enable Infrastructure Encryption (Double Encryption)
404
+ """
405
+ if key_source is None:
406
+ key_source = 'Microsoft.KeyVault'
407
+ if key_source is not None:
408
+ pulumi.set(__self__, "key_source", key_source)
409
+ if key_vault_properties is not None:
410
+ pulumi.set(__self__, "key_vault_properties", key_vault_properties)
411
+ if require_infrastructure_encryption is not None:
412
+ pulumi.set(__self__, "require_infrastructure_encryption", require_infrastructure_encryption)
413
+
414
+ @property
415
+ @pulumi.getter(name="keySource")
416
+ def key_source(self) -> Optional[pulumi.Input['KeySource']]:
417
+ """
418
+ Enumerates the possible value of keySource for Encryption
419
+ """
420
+ return pulumi.get(self, "key_source")
421
+
422
+ @key_source.setter
423
+ def key_source(self, value: Optional[pulumi.Input['KeySource']]):
424
+ pulumi.set(self, "key_source", value)
425
+
426
+ @property
427
+ @pulumi.getter(name="keyVaultProperties")
428
+ def key_vault_properties(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KeyVaultPropertiesArgs']]]]:
429
+ """
430
+ Properties of KeyVault
431
+ """
432
+ return pulumi.get(self, "key_vault_properties")
433
+
434
+ @key_vault_properties.setter
435
+ def key_vault_properties(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KeyVaultPropertiesArgs']]]]):
436
+ pulumi.set(self, "key_vault_properties", value)
437
+
438
+ @property
439
+ @pulumi.getter(name="requireInfrastructureEncryption")
440
+ def require_infrastructure_encryption(self) -> Optional[pulumi.Input[bool]]:
441
+ """
442
+ Enable Infrastructure Encryption (Double Encryption)
443
+ """
444
+ return pulumi.get(self, "require_infrastructure_encryption")
445
+
446
+ @require_infrastructure_encryption.setter
447
+ def require_infrastructure_encryption(self, value: Optional[pulumi.Input[bool]]):
448
+ pulumi.set(self, "require_infrastructure_encryption", value)
449
+
450
+
451
+ @pulumi.input_type
452
+ class IdentityArgs:
453
+ def __init__(__self__, *,
454
+ type: Optional[pulumi.Input['ManagedServiceIdentityType']] = None,
455
+ user_assigned_identities: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
456
+ """
457
+ Properties to configure Identity for Bring your Own Keys
458
+ :param pulumi.Input['ManagedServiceIdentityType'] type: Type of managed service identity.
459
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] user_assigned_identities: Properties for User Assigned Identities
460
+ """
461
+ if type is not None:
462
+ pulumi.set(__self__, "type", type)
463
+ if user_assigned_identities is not None:
464
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
465
+
466
+ @property
467
+ @pulumi.getter
468
+ def type(self) -> Optional[pulumi.Input['ManagedServiceIdentityType']]:
469
+ """
470
+ Type of managed service identity.
471
+ """
472
+ return pulumi.get(self, "type")
473
+
474
+ @type.setter
475
+ def type(self, value: Optional[pulumi.Input['ManagedServiceIdentityType']]):
476
+ pulumi.set(self, "type", value)
477
+
478
+ @property
479
+ @pulumi.getter(name="userAssignedIdentities")
480
+ def user_assigned_identities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
481
+ """
482
+ Properties for User Assigned Identities
483
+ """
484
+ return pulumi.get(self, "user_assigned_identities")
485
+
486
+ @user_assigned_identities.setter
487
+ def user_assigned_identities(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
488
+ pulumi.set(self, "user_assigned_identities", value)
489
+
490
+
491
+ @pulumi.input_type
492
+ class KeyVaultPropertiesArgs:
493
+ def __init__(__self__, *,
494
+ identity: Optional[pulumi.Input['UserAssignedIdentityPropertiesArgs']] = None,
495
+ key_name: Optional[pulumi.Input[str]] = None,
496
+ key_vault_uri: Optional[pulumi.Input[str]] = None,
497
+ key_version: Optional[pulumi.Input[str]] = None):
498
+ """
499
+ Properties to configure keyVault Properties
500
+ :param pulumi.Input[str] key_name: Name of the Key from KeyVault
501
+ :param pulumi.Input[str] key_vault_uri: Uri of KeyVault
502
+ :param pulumi.Input[str] key_version: Key Version
503
+ """
504
+ if identity is not None:
505
+ pulumi.set(__self__, "identity", identity)
506
+ if key_name is not None:
507
+ pulumi.set(__self__, "key_name", key_name)
508
+ if key_vault_uri is not None:
509
+ pulumi.set(__self__, "key_vault_uri", key_vault_uri)
510
+ if key_version is not None:
511
+ pulumi.set(__self__, "key_version", key_version)
512
+
513
+ @property
514
+ @pulumi.getter
515
+ def identity(self) -> Optional[pulumi.Input['UserAssignedIdentityPropertiesArgs']]:
516
+ return pulumi.get(self, "identity")
517
+
518
+ @identity.setter
519
+ def identity(self, value: Optional[pulumi.Input['UserAssignedIdentityPropertiesArgs']]):
520
+ pulumi.set(self, "identity", value)
521
+
522
+ @property
523
+ @pulumi.getter(name="keyName")
524
+ def key_name(self) -> Optional[pulumi.Input[str]]:
525
+ """
526
+ Name of the Key from KeyVault
527
+ """
528
+ return pulumi.get(self, "key_name")
529
+
530
+ @key_name.setter
531
+ def key_name(self, value: Optional[pulumi.Input[str]]):
532
+ pulumi.set(self, "key_name", value)
533
+
534
+ @property
535
+ @pulumi.getter(name="keyVaultUri")
536
+ def key_vault_uri(self) -> Optional[pulumi.Input[str]]:
537
+ """
538
+ Uri of KeyVault
539
+ """
540
+ return pulumi.get(self, "key_vault_uri")
541
+
542
+ @key_vault_uri.setter
543
+ def key_vault_uri(self, value: Optional[pulumi.Input[str]]):
544
+ pulumi.set(self, "key_vault_uri", value)
545
+
546
+ @property
547
+ @pulumi.getter(name="keyVersion")
548
+ def key_version(self) -> Optional[pulumi.Input[str]]:
549
+ """
550
+ Key Version
551
+ """
552
+ return pulumi.get(self, "key_version")
553
+
554
+ @key_version.setter
555
+ def key_version(self, value: Optional[pulumi.Input[str]]):
556
+ pulumi.set(self, "key_version", value)
557
+
558
+
559
+ @pulumi.input_type
560
+ class NWRuleSetIpRulesArgs:
561
+ def __init__(__self__, *,
562
+ action: Optional[pulumi.Input[Union[str, 'NetworkRuleIPAction']]] = None,
563
+ ip_mask: Optional[pulumi.Input[str]] = None):
564
+ """
565
+ The response from the List namespace operation.
566
+ :param pulumi.Input[Union[str, 'NetworkRuleIPAction']] action: The IP Filter Action
567
+ :param pulumi.Input[str] ip_mask: IP Mask
568
+ """
569
+ if action is not None:
570
+ pulumi.set(__self__, "action", action)
571
+ if ip_mask is not None:
572
+ pulumi.set(__self__, "ip_mask", ip_mask)
573
+
574
+ @property
575
+ @pulumi.getter
576
+ def action(self) -> Optional[pulumi.Input[Union[str, 'NetworkRuleIPAction']]]:
577
+ """
578
+ The IP Filter Action
579
+ """
580
+ return pulumi.get(self, "action")
581
+
582
+ @action.setter
583
+ def action(self, value: Optional[pulumi.Input[Union[str, 'NetworkRuleIPAction']]]):
584
+ pulumi.set(self, "action", value)
585
+
586
+ @property
587
+ @pulumi.getter(name="ipMask")
588
+ def ip_mask(self) -> Optional[pulumi.Input[str]]:
589
+ """
590
+ IP Mask
591
+ """
592
+ return pulumi.get(self, "ip_mask")
593
+
594
+ @ip_mask.setter
595
+ def ip_mask(self, value: Optional[pulumi.Input[str]]):
596
+ pulumi.set(self, "ip_mask", value)
597
+
598
+
599
+ @pulumi.input_type
600
+ class NWRuleSetVirtualNetworkRulesArgs:
601
+ def __init__(__self__, *,
602
+ ignore_missing_vnet_service_endpoint: Optional[pulumi.Input[bool]] = None,
603
+ subnet: Optional[pulumi.Input['SubnetArgs']] = None):
604
+ """
605
+ The response from the List namespace operation.
606
+ :param pulumi.Input[bool] ignore_missing_vnet_service_endpoint: Value that indicates whether to ignore missing Vnet Service Endpoint
607
+ :param pulumi.Input['SubnetArgs'] subnet: Subnet properties
608
+ """
609
+ if ignore_missing_vnet_service_endpoint is not None:
610
+ pulumi.set(__self__, "ignore_missing_vnet_service_endpoint", ignore_missing_vnet_service_endpoint)
611
+ if subnet is not None:
612
+ pulumi.set(__self__, "subnet", subnet)
613
+
614
+ @property
615
+ @pulumi.getter(name="ignoreMissingVnetServiceEndpoint")
616
+ def ignore_missing_vnet_service_endpoint(self) -> Optional[pulumi.Input[bool]]:
617
+ """
618
+ Value that indicates whether to ignore missing Vnet Service Endpoint
619
+ """
620
+ return pulumi.get(self, "ignore_missing_vnet_service_endpoint")
621
+
622
+ @ignore_missing_vnet_service_endpoint.setter
623
+ def ignore_missing_vnet_service_endpoint(self, value: Optional[pulumi.Input[bool]]):
624
+ pulumi.set(self, "ignore_missing_vnet_service_endpoint", value)
625
+
626
+ @property
627
+ @pulumi.getter
628
+ def subnet(self) -> Optional[pulumi.Input['SubnetArgs']]:
629
+ """
630
+ Subnet properties
631
+ """
632
+ return pulumi.get(self, "subnet")
633
+
634
+ @subnet.setter
635
+ def subnet(self, value: Optional[pulumi.Input['SubnetArgs']]):
636
+ pulumi.set(self, "subnet", value)
637
+
638
+
639
+ @pulumi.input_type
640
+ class PrivateEndpointConnectionArgs:
641
+ def __init__(__self__, *,
642
+ private_endpoint: Optional[pulumi.Input['PrivateEndpointArgs']] = None,
643
+ private_link_service_connection_state: Optional[pulumi.Input['ConnectionStateArgs']] = None,
644
+ provisioning_state: Optional[pulumi.Input[Union[str, 'EndPointProvisioningState']]] = None):
645
+ """
646
+ Properties of the PrivateEndpointConnection.
647
+ :param pulumi.Input['PrivateEndpointArgs'] private_endpoint: The Private Endpoint resource for this Connection.
648
+ :param pulumi.Input['ConnectionStateArgs'] private_link_service_connection_state: Details about the state of the connection.
649
+ :param pulumi.Input[Union[str, 'EndPointProvisioningState']] provisioning_state: Provisioning state of the Private Endpoint Connection.
650
+ """
651
+ if private_endpoint is not None:
652
+ pulumi.set(__self__, "private_endpoint", private_endpoint)
653
+ if private_link_service_connection_state is not None:
654
+ pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
655
+ if provisioning_state is not None:
656
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
657
+
658
+ @property
659
+ @pulumi.getter(name="privateEndpoint")
660
+ def private_endpoint(self) -> Optional[pulumi.Input['PrivateEndpointArgs']]:
661
+ """
662
+ The Private Endpoint resource for this Connection.
663
+ """
664
+ return pulumi.get(self, "private_endpoint")
665
+
666
+ @private_endpoint.setter
667
+ def private_endpoint(self, value: Optional[pulumi.Input['PrivateEndpointArgs']]):
668
+ pulumi.set(self, "private_endpoint", value)
669
+
670
+ @property
671
+ @pulumi.getter(name="privateLinkServiceConnectionState")
672
+ def private_link_service_connection_state(self) -> Optional[pulumi.Input['ConnectionStateArgs']]:
673
+ """
674
+ Details about the state of the connection.
675
+ """
676
+ return pulumi.get(self, "private_link_service_connection_state")
677
+
678
+ @private_link_service_connection_state.setter
679
+ def private_link_service_connection_state(self, value: Optional[pulumi.Input['ConnectionStateArgs']]):
680
+ pulumi.set(self, "private_link_service_connection_state", value)
681
+
682
+ @property
683
+ @pulumi.getter(name="provisioningState")
684
+ def provisioning_state(self) -> Optional[pulumi.Input[Union[str, 'EndPointProvisioningState']]]:
685
+ """
686
+ Provisioning state of the Private Endpoint Connection.
687
+ """
688
+ return pulumi.get(self, "provisioning_state")
689
+
690
+ @provisioning_state.setter
691
+ def provisioning_state(self, value: Optional[pulumi.Input[Union[str, 'EndPointProvisioningState']]]):
692
+ pulumi.set(self, "provisioning_state", value)
693
+
694
+
695
+ @pulumi.input_type
696
+ class PrivateEndpointArgs:
697
+ def __init__(__self__, *,
698
+ id: Optional[pulumi.Input[str]] = None):
699
+ """
700
+ PrivateEndpoint information.
701
+ :param pulumi.Input[str] id: The ARM identifier for Private Endpoint.
702
+ """
703
+ if id is not None:
704
+ pulumi.set(__self__, "id", id)
705
+
706
+ @property
707
+ @pulumi.getter
708
+ def id(self) -> Optional[pulumi.Input[str]]:
709
+ """
710
+ The ARM identifier for Private Endpoint.
711
+ """
712
+ return pulumi.get(self, "id")
713
+
714
+ @id.setter
715
+ def id(self, value: Optional[pulumi.Input[str]]):
716
+ pulumi.set(self, "id", value)
717
+
718
+
719
+ @pulumi.input_type
720
+ class RetentionDescriptionArgs:
721
+ def __init__(__self__, *,
722
+ cleanup_policy: Optional[pulumi.Input[Union[str, 'CleanupPolicyRetentionDescription']]] = None,
723
+ retention_time_in_hours: Optional[pulumi.Input[float]] = None,
724
+ tombstone_retention_time_in_hours: Optional[pulumi.Input[int]] = None):
725
+ """
726
+ Properties to configure retention settings for the eventhub
727
+ :param pulumi.Input[Union[str, 'CleanupPolicyRetentionDescription']] cleanup_policy: Enumerates the possible values for cleanup policy
728
+ :param pulumi.Input[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
729
+ :param pulumi.Input[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
730
+ """
731
+ if cleanup_policy is not None:
732
+ pulumi.set(__self__, "cleanup_policy", cleanup_policy)
733
+ if retention_time_in_hours is not None:
734
+ pulumi.set(__self__, "retention_time_in_hours", retention_time_in_hours)
735
+ if tombstone_retention_time_in_hours is not None:
736
+ pulumi.set(__self__, "tombstone_retention_time_in_hours", tombstone_retention_time_in_hours)
737
+
738
+ @property
739
+ @pulumi.getter(name="cleanupPolicy")
740
+ def cleanup_policy(self) -> Optional[pulumi.Input[Union[str, 'CleanupPolicyRetentionDescription']]]:
741
+ """
742
+ Enumerates the possible values for cleanup policy
743
+ """
744
+ return pulumi.get(self, "cleanup_policy")
745
+
746
+ @cleanup_policy.setter
747
+ def cleanup_policy(self, value: Optional[pulumi.Input[Union[str, 'CleanupPolicyRetentionDescription']]]):
748
+ pulumi.set(self, "cleanup_policy", value)
749
+
750
+ @property
751
+ @pulumi.getter(name="retentionTimeInHours")
752
+ def retention_time_in_hours(self) -> Optional[pulumi.Input[float]]:
753
+ """
754
+ 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
755
+ """
756
+ return pulumi.get(self, "retention_time_in_hours")
757
+
758
+ @retention_time_in_hours.setter
759
+ def retention_time_in_hours(self, value: Optional[pulumi.Input[float]]):
760
+ pulumi.set(self, "retention_time_in_hours", value)
761
+
762
+ @property
763
+ @pulumi.getter(name="tombstoneRetentionTimeInHours")
764
+ def tombstone_retention_time_in_hours(self) -> Optional[pulumi.Input[int]]:
765
+ """
766
+ 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
767
+ """
768
+ return pulumi.get(self, "tombstone_retention_time_in_hours")
769
+
770
+ @tombstone_retention_time_in_hours.setter
771
+ def tombstone_retention_time_in_hours(self, value: Optional[pulumi.Input[int]]):
772
+ pulumi.set(self, "tombstone_retention_time_in_hours", value)
773
+
774
+
775
+ @pulumi.input_type
776
+ class SkuArgs:
777
+ def __init__(__self__, *,
778
+ name: pulumi.Input[Union[str, 'SkuName']],
779
+ capacity: Optional[pulumi.Input[int]] = None,
780
+ tier: Optional[pulumi.Input[Union[str, 'SkuTier']]] = None):
781
+ """
782
+ SKU parameters supplied to the create namespace operation
783
+ :param pulumi.Input[Union[str, 'SkuName']] name: Name of this SKU.
784
+ :param pulumi.Input[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.
785
+ :param pulumi.Input[Union[str, 'SkuTier']] tier: The billing tier of this particular SKU.
786
+ """
787
+ pulumi.set(__self__, "name", name)
788
+ if capacity is not None:
789
+ pulumi.set(__self__, "capacity", capacity)
790
+ if tier is not None:
791
+ pulumi.set(__self__, "tier", tier)
792
+
793
+ @property
794
+ @pulumi.getter
795
+ def name(self) -> pulumi.Input[Union[str, 'SkuName']]:
796
+ """
797
+ Name of this SKU.
798
+ """
799
+ return pulumi.get(self, "name")
800
+
801
+ @name.setter
802
+ def name(self, value: pulumi.Input[Union[str, 'SkuName']]):
803
+ pulumi.set(self, "name", value)
804
+
805
+ @property
806
+ @pulumi.getter
807
+ def capacity(self) -> Optional[pulumi.Input[int]]:
808
+ """
809
+ 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.
810
+ """
811
+ return pulumi.get(self, "capacity")
812
+
813
+ @capacity.setter
814
+ def capacity(self, value: Optional[pulumi.Input[int]]):
815
+ pulumi.set(self, "capacity", value)
816
+
817
+ @property
818
+ @pulumi.getter
819
+ def tier(self) -> Optional[pulumi.Input[Union[str, 'SkuTier']]]:
820
+ """
821
+ The billing tier of this particular SKU.
822
+ """
823
+ return pulumi.get(self, "tier")
824
+
825
+ @tier.setter
826
+ def tier(self, value: Optional[pulumi.Input[Union[str, 'SkuTier']]]):
827
+ pulumi.set(self, "tier", value)
828
+
829
+
830
+ @pulumi.input_type
831
+ class SubnetArgs:
832
+ def __init__(__self__, *,
833
+ id: Optional[pulumi.Input[str]] = None):
834
+ """
835
+ Properties supplied for Subnet
836
+ :param pulumi.Input[str] id: Resource ID of Virtual Network Subnet
837
+ """
838
+ if id is not None:
839
+ pulumi.set(__self__, "id", id)
840
+
841
+ @property
842
+ @pulumi.getter
843
+ def id(self) -> Optional[pulumi.Input[str]]:
844
+ """
845
+ Resource ID of Virtual Network Subnet
846
+ """
847
+ return pulumi.get(self, "id")
848
+
849
+ @id.setter
850
+ def id(self, value: Optional[pulumi.Input[str]]):
851
+ pulumi.set(self, "id", value)
852
+
853
+
854
+ @pulumi.input_type
855
+ class ThrottlingPolicyArgs:
856
+ def __init__(__self__, *,
857
+ metric_id: pulumi.Input[Union[str, 'MetricId']],
858
+ name: pulumi.Input[str],
859
+ rate_limit_threshold: pulumi.Input[float],
860
+ type: pulumi.Input[str]):
861
+ """
862
+ Properties of the throttling policy
863
+ :param pulumi.Input[Union[str, 'MetricId']] 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
864
+ :param pulumi.Input[str] name: The Name of this policy
865
+ :param pulumi.Input[float] rate_limit_threshold: The Threshold limit above which the application group will be throttled.Rate limit is always per second.
866
+ :param pulumi.Input[str] type: Application Group Policy types
867
+ Expected value is 'ThrottlingPolicy'.
868
+ """
869
+ pulumi.set(__self__, "metric_id", metric_id)
870
+ pulumi.set(__self__, "name", name)
871
+ pulumi.set(__self__, "rate_limit_threshold", rate_limit_threshold)
872
+ pulumi.set(__self__, "type", 'ThrottlingPolicy')
873
+
874
+ @property
875
+ @pulumi.getter(name="metricId")
876
+ def metric_id(self) -> pulumi.Input[Union[str, 'MetricId']]:
877
+ """
878
+ 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
879
+ """
880
+ return pulumi.get(self, "metric_id")
881
+
882
+ @metric_id.setter
883
+ def metric_id(self, value: pulumi.Input[Union[str, 'MetricId']]):
884
+ pulumi.set(self, "metric_id", value)
885
+
886
+ @property
887
+ @pulumi.getter
888
+ def name(self) -> pulumi.Input[str]:
889
+ """
890
+ The Name of this policy
891
+ """
892
+ return pulumi.get(self, "name")
893
+
894
+ @name.setter
895
+ def name(self, value: pulumi.Input[str]):
896
+ pulumi.set(self, "name", value)
897
+
898
+ @property
899
+ @pulumi.getter(name="rateLimitThreshold")
900
+ def rate_limit_threshold(self) -> pulumi.Input[float]:
901
+ """
902
+ The Threshold limit above which the application group will be throttled.Rate limit is always per second.
903
+ """
904
+ return pulumi.get(self, "rate_limit_threshold")
905
+
906
+ @rate_limit_threshold.setter
907
+ def rate_limit_threshold(self, value: pulumi.Input[float]):
908
+ pulumi.set(self, "rate_limit_threshold", value)
909
+
910
+ @property
911
+ @pulumi.getter
912
+ def type(self) -> pulumi.Input[str]:
913
+ """
914
+ Application Group Policy types
915
+ Expected value is 'ThrottlingPolicy'.
916
+ """
917
+ return pulumi.get(self, "type")
918
+
919
+ @type.setter
920
+ def type(self, value: pulumi.Input[str]):
921
+ pulumi.set(self, "type", value)
922
+
923
+
924
+ @pulumi.input_type
925
+ class UpgradePreferencesArgs:
926
+ def __init__(__self__, *,
927
+ start_day_of_week: Optional[pulumi.Input[Union[str, 'StartDayOfWeek']]] = None,
928
+ start_hour_of_day: Optional[pulumi.Input[int]] = None):
929
+ """
930
+ Contains all settings for the cluster upgrade window.
931
+ :param pulumi.Input[Union[str, 'StartDayOfWeek']] 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
932
+ :param pulumi.Input[int] start_hour_of_day: Preferred hour of the day in UTC time to begin an upgrade
933
+ """
934
+ if start_day_of_week is not None:
935
+ pulumi.set(__self__, "start_day_of_week", start_day_of_week)
936
+ if start_hour_of_day is not None:
937
+ pulumi.set(__self__, "start_hour_of_day", start_hour_of_day)
938
+
939
+ @property
940
+ @pulumi.getter(name="startDayOfWeek")
941
+ def start_day_of_week(self) -> Optional[pulumi.Input[Union[str, 'StartDayOfWeek']]]:
942
+ """
943
+ Preferred day of the week in UTC time to begin an upgrade. If 'Any' is selected, upgrade will proceed at any given weekday
944
+ """
945
+ return pulumi.get(self, "start_day_of_week")
946
+
947
+ @start_day_of_week.setter
948
+ def start_day_of_week(self, value: Optional[pulumi.Input[Union[str, 'StartDayOfWeek']]]):
949
+ pulumi.set(self, "start_day_of_week", value)
950
+
951
+ @property
952
+ @pulumi.getter(name="startHourOfDay")
953
+ def start_hour_of_day(self) -> Optional[pulumi.Input[int]]:
954
+ """
955
+ Preferred hour of the day in UTC time to begin an upgrade
956
+ """
957
+ return pulumi.get(self, "start_hour_of_day")
958
+
959
+ @start_hour_of_day.setter
960
+ def start_hour_of_day(self, value: Optional[pulumi.Input[int]]):
961
+ pulumi.set(self, "start_hour_of_day", value)
962
+
963
+
964
+ @pulumi.input_type
965
+ class UserAssignedIdentityPropertiesArgs:
966
+ def __init__(__self__, *,
967
+ user_assigned_identity: Optional[pulumi.Input[str]] = None):
968
+ """
969
+ :param pulumi.Input[str] user_assigned_identity: ARM ID of user Identity selected for encryption
970
+ """
971
+ if user_assigned_identity is not None:
972
+ pulumi.set(__self__, "user_assigned_identity", user_assigned_identity)
973
+
974
+ @property
975
+ @pulumi.getter(name="userAssignedIdentity")
976
+ def user_assigned_identity(self) -> Optional[pulumi.Input[str]]:
977
+ """
978
+ ARM ID of user Identity selected for encryption
979
+ """
980
+ return pulumi.get(self, "user_assigned_identity")
981
+
982
+ @user_assigned_identity.setter
983
+ def user_assigned_identity(self, value: Optional[pulumi.Input[str]]):
984
+ pulumi.set(self, "user_assigned_identity", value)
985
+
986
+