pulumi-azure-native 2.17.1a1700150019__py3-none-any.whl → 2.18.1a1700572187__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +54 -0
- pulumi_azure_native/config/__init__.pyi +83 -0
- pulumi_azure_native/eventhub/__init__.py +3 -0
- pulumi_azure_native/eventhub/application_group.py +3 -3
- pulumi_azure_native/eventhub/cluster.py +3 -3
- pulumi_azure_native/eventhub/consumer_group.py +3 -3
- pulumi_azure_native/eventhub/disaster_recovery_config.py +3 -3
- pulumi_azure_native/eventhub/event_hub.py +3 -3
- pulumi_azure_native/eventhub/event_hub_authorization_rule.py +3 -3
- pulumi_azure_native/eventhub/get_application_group.py +2 -2
- pulumi_azure_native/eventhub/get_cluster.py +2 -2
- pulumi_azure_native/eventhub/get_consumer_group.py +2 -2
- pulumi_azure_native/eventhub/get_disaster_recovery_config.py +2 -2
- pulumi_azure_native/eventhub/get_event_hub.py +2 -2
- pulumi_azure_native/eventhub/get_event_hub_authorization_rule.py +2 -2
- pulumi_azure_native/eventhub/get_namespace.py +2 -2
- pulumi_azure_native/eventhub/get_namespace_authorization_rule.py +2 -2
- pulumi_azure_native/eventhub/get_namespace_network_rule_set.py +2 -2
- pulumi_azure_native/eventhub/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/eventhub/get_schema_registry.py +2 -2
- pulumi_azure_native/eventhub/list_disaster_recovery_config_keys.py +2 -2
- pulumi_azure_native/eventhub/list_event_hub_keys.py +2 -2
- pulumi_azure_native/eventhub/list_namespace_keys.py +2 -2
- pulumi_azure_native/eventhub/namespace.py +3 -3
- pulumi_azure_native/eventhub/namespace_authorization_rule.py +3 -3
- pulumi_azure_native/eventhub/namespace_network_rule_set.py +3 -3
- pulumi_azure_native/eventhub/private_endpoint_connection.py +3 -3
- pulumi_azure_native/eventhub/schema_registry.py +3 -3
- pulumi_azure_native/eventhub/v20221001preview/application_group.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/cluster.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/consumer_group.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/disaster_recovery_config.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/event_hub.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/event_hub_authorization_rule.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/namespace.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/namespace_network_rule_set.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/schema_registry.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/application_group.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/cluster.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/consumer_group.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/disaster_recovery_config.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/event_hub.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/event_hub_authorization_rule.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/namespace.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/namespace_network_rule_set.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/schema_registry.py +1 -1
- pulumi_azure_native/eventhub/v20240101/__init__.py +35 -0
- pulumi_azure_native/eventhub/v20240101/_enums.py +223 -0
- pulumi_azure_native/eventhub/v20240101/_inputs.py +986 -0
- pulumi_azure_native/eventhub/v20240101/application_group.py +285 -0
- pulumi_azure_native/eventhub/v20240101/cluster.py +361 -0
- pulumi_azure_native/eventhub/v20240101/consumer_group.py +265 -0
- pulumi_azure_native/eventhub/v20240101/disaster_recovery_config.py +283 -0
- pulumi_azure_native/eventhub/v20240101/event_hub.py +372 -0
- pulumi_azure_native/eventhub/v20240101/event_hub_authorization_rule.py +247 -0
- pulumi_azure_native/eventhub/v20240101/get_application_group.py +175 -0
- pulumi_azure_native/eventhub/v20240101/get_cluster.py +248 -0
- pulumi_azure_native/eventhub/v20240101/get_consumer_group.py +180 -0
- pulumi_azure_native/eventhub/v20240101/get_disaster_recovery_config.py +201 -0
- pulumi_azure_native/eventhub/v20240101/get_event_hub.py +240 -0
- pulumi_azure_native/eventhub/v20240101/get_event_hub_authorization_rule.py +154 -0
- pulumi_azure_native/eventhub/v20240101/get_namespace.py +391 -0
- pulumi_azure_native/eventhub/v20240101/get_namespace_authorization_rule.py +149 -0
- pulumi_azure_native/eventhub/v20240101/get_namespace_network_rule_set.py +196 -0
- pulumi_azure_native/eventhub/v20240101/get_private_endpoint_connection.py +175 -0
- pulumi_azure_native/eventhub/v20240101/get_schema_registry.py +208 -0
- pulumi_azure_native/eventhub/v20240101/list_disaster_recovery_config_keys.py +166 -0
- pulumi_azure_native/eventhub/v20240101/list_event_hub_keys.py +166 -0
- pulumi_azure_native/eventhub/v20240101/list_namespace_keys.py +161 -0
- pulumi_azure_native/eventhub/v20240101/namespace.py +668 -0
- pulumi_azure_native/eventhub/v20240101/namespace_authorization_rule.py +226 -0
- pulumi_azure_native/eventhub/v20240101/namespace_network_rule_set.py +326 -0
- pulumi_azure_native/eventhub/v20240101/outputs.py +1336 -0
- pulumi_azure_native/eventhub/v20240101/private_endpoint_connection.py +284 -0
- pulumi_azure_native/eventhub/v20240101/schema_registry.py +297 -0
- pulumi_azure_native/healthcareapis/__init__.py +3 -0
- pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
- pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
- pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
- pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
- pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/healthcareapis/get_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
- pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
- pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
- pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
- pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
- pulumi_azure_native/healthcareapis/service.py +3 -3
- pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/__init__.py +26 -0
- pulumi_azure_native/healthcareapis/v20231101/_enums.py +85 -0
- pulumi_azure_native/healthcareapis/v20231101/_inputs.py +1277 -0
- pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +402 -0
- pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +585 -0
- pulumi_azure_native/healthcareapis/v20231101/get_dicom_service.py +279 -0
- pulumi_azure_native/healthcareapis/v20231101/get_fhir_service.py +344 -0
- pulumi_azure_native/healthcareapis/v20231101/get_iot_connector.py +214 -0
- pulumi_azure_native/healthcareapis/v20231101/get_iot_connector_fhir_destination.py +193 -0
- pulumi_azure_native/healthcareapis/v20231101/get_private_endpoint_connection.py +162 -0
- pulumi_azure_native/healthcareapis/v20231101/get_service.py +196 -0
- pulumi_azure_native/healthcareapis/v20231101/get_workspace.py +170 -0
- pulumi_azure_native/healthcareapis/v20231101/get_workspace_private_endpoint_connection.py +162 -0
- pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +352 -0
- pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +337 -0
- pulumi_azure_native/healthcareapis/v20231101/outputs.py +1951 -0
- pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +237 -0
- pulumi_azure_native/healthcareapis/v20231101/service.py +322 -0
- pulumi_azure_native/healthcareapis/v20231101/workspace.py +242 -0
- pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +237 -0
- pulumi_azure_native/healthcareapis/workspace.py +3 -3
- pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
- pulumi_azure_native/offazurespringboot/__init__.py +22 -0
- pulumi_azure_native/offazurespringboot/_enums.py +22 -0
- pulumi_azure_native/offazurespringboot/_inputs.py +402 -0
- pulumi_azure_native/offazurespringboot/get_springbootserver.py +151 -0
- pulumi_azure_native/offazurespringboot/get_springbootsite.py +172 -0
- pulumi_azure_native/offazurespringboot/outputs.py +509 -0
- pulumi_azure_native/offazurespringboot/springbootserver.py +247 -0
- pulumi_azure_native/offazurespringboot/springbootsite.py +284 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/__init__.py +14 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/_enums.py +22 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/_inputs.py +402 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootserver.py +149 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootsite.py +170 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/outputs.py +509 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/springbootserver.py +245 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/springbootsite.py +282 -0
- pulumi_azure_native/security/alerts_suppression_rule.py +4 -4
- pulumi_azure_native/security/get_alerts_suppression_rule.py +1 -1
- pulumi_azure_native/security/v20190101preview/alerts_suppression_rule.py +4 -4
- pulumi_azure_native/security/v20190101preview/get_alerts_suppression_rule.py +1 -1
- {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/RECORD +156 -90
- {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/top_level.txt +0 -0
|
@@ -324,7 +324,7 @@ class Namespace(pulumi.CustomResource):
|
|
|
324
324
|
Single Namespace item in List or Get Operation
|
|
325
325
|
Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
|
|
326
326
|
|
|
327
|
-
Other available API versions: 2015-08-01, 2023-01-01-preview.
|
|
327
|
+
Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
|
|
328
328
|
|
|
329
329
|
:param str resource_name: The name of the resource.
|
|
330
330
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -357,7 +357,7 @@ class Namespace(pulumi.CustomResource):
|
|
|
357
357
|
Single Namespace item in List or Get Operation
|
|
358
358
|
Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
|
|
359
359
|
|
|
360
|
-
Other available API versions: 2015-08-01, 2023-01-01-preview.
|
|
360
|
+
Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
|
|
361
361
|
|
|
362
362
|
:param str resource_name: The name of the resource.
|
|
363
363
|
:param NamespaceArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -430,7 +430,7 @@ class Namespace(pulumi.CustomResource):
|
|
|
430
430
|
__props__.__dict__["system_data"] = None
|
|
431
431
|
__props__.__dict__["type"] = None
|
|
432
432
|
__props__.__dict__["updated_at"] = None
|
|
433
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub/v20140901:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20150801:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20170401:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20211101:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:Namespace")])
|
|
433
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub/v20140901:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20150801:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20170401:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20211101:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20240101:Namespace")])
|
|
434
434
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
435
435
|
super(Namespace, __self__).__init__(
|
|
436
436
|
'azure-native:eventhub:Namespace',
|
|
@@ -96,7 +96,7 @@ class NamespaceAuthorizationRule(pulumi.CustomResource):
|
|
|
96
96
|
Single item in a List or Get AuthorizationRule operation
|
|
97
97
|
Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
|
|
98
98
|
|
|
99
|
-
Other available API versions: 2015-08-01, 2023-01-01-preview.
|
|
99
|
+
Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
|
|
100
100
|
|
|
101
101
|
:param str resource_name: The name of the resource.
|
|
102
102
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -115,7 +115,7 @@ class NamespaceAuthorizationRule(pulumi.CustomResource):
|
|
|
115
115
|
Single item in a List or Get AuthorizationRule operation
|
|
116
116
|
Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
|
|
117
117
|
|
|
118
|
-
Other available API versions: 2015-08-01, 2023-01-01-preview.
|
|
118
|
+
Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
|
|
119
119
|
|
|
120
120
|
:param str resource_name: The name of the resource.
|
|
121
121
|
:param NamespaceAuthorizationRuleArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -159,7 +159,7 @@ class NamespaceAuthorizationRule(pulumi.CustomResource):
|
|
|
159
159
|
__props__.__dict__["name"] = None
|
|
160
160
|
__props__.__dict__["system_data"] = None
|
|
161
161
|
__props__.__dict__["type"] = None
|
|
162
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub/v20140901:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20150801:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20170401:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20211101:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:NamespaceAuthorizationRule")])
|
|
162
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub/v20140901:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20150801:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20170401:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20211101:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20240101:NamespaceAuthorizationRule")])
|
|
163
163
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
164
164
|
super(NamespaceAuthorizationRule, __self__).__init__(
|
|
165
165
|
'azure-native:eventhub:NamespaceAuthorizationRule',
|
|
@@ -151,7 +151,7 @@ class NamespaceNetworkRuleSet(pulumi.CustomResource):
|
|
|
151
151
|
Description of topic resource.
|
|
152
152
|
Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
|
|
153
153
|
|
|
154
|
-
Other available API versions: 2023-01-01-preview.
|
|
154
|
+
Other available API versions: 2023-01-01-preview, 2024-01-01.
|
|
155
155
|
|
|
156
156
|
:param str resource_name: The name of the resource.
|
|
157
157
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -173,7 +173,7 @@ class NamespaceNetworkRuleSet(pulumi.CustomResource):
|
|
|
173
173
|
Description of topic resource.
|
|
174
174
|
Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
|
|
175
175
|
|
|
176
|
-
Other available API versions: 2023-01-01-preview.
|
|
176
|
+
Other available API versions: 2023-01-01-preview, 2024-01-01.
|
|
177
177
|
|
|
178
178
|
:param str resource_name: The name of the resource.
|
|
179
179
|
:param NamespaceNetworkRuleSetArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -223,7 +223,7 @@ class NamespaceNetworkRuleSet(pulumi.CustomResource):
|
|
|
223
223
|
__props__.__dict__["name"] = None
|
|
224
224
|
__props__.__dict__["system_data"] = None
|
|
225
225
|
__props__.__dict__["type"] = None
|
|
226
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub/v20170401:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20211101:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:NamespaceNetworkRuleSet")])
|
|
226
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub/v20170401:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20211101:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20240101:NamespaceNetworkRuleSet")])
|
|
227
227
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
228
228
|
super(NamespaceNetworkRuleSet, __self__).__init__(
|
|
229
229
|
'azure-native:eventhub:NamespaceNetworkRuleSet',
|
|
@@ -132,7 +132,7 @@ class PrivateEndpointConnection(pulumi.CustomResource):
|
|
|
132
132
|
Properties of the PrivateEndpointConnection.
|
|
133
133
|
Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2018-01-01-preview.
|
|
134
134
|
|
|
135
|
-
Other available API versions: 2023-01-01-preview.
|
|
135
|
+
Other available API versions: 2023-01-01-preview, 2024-01-01.
|
|
136
136
|
|
|
137
137
|
:param str resource_name: The name of the resource.
|
|
138
138
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -153,7 +153,7 @@ class PrivateEndpointConnection(pulumi.CustomResource):
|
|
|
153
153
|
Properties of the PrivateEndpointConnection.
|
|
154
154
|
Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2018-01-01-preview.
|
|
155
155
|
|
|
156
|
-
Other available API versions: 2023-01-01-preview.
|
|
156
|
+
Other available API versions: 2023-01-01-preview, 2024-01-01.
|
|
157
157
|
|
|
158
158
|
:param str resource_name: The name of the resource.
|
|
159
159
|
:param PrivateEndpointConnectionInitArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -199,7 +199,7 @@ class PrivateEndpointConnection(pulumi.CustomResource):
|
|
|
199
199
|
__props__.__dict__["name"] = None
|
|
200
200
|
__props__.__dict__["system_data"] = None
|
|
201
201
|
__props__.__dict__["type"] = None
|
|
202
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub/v20180101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20211101:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:PrivateEndpointConnection")])
|
|
202
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub/v20180101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20211101:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20240101:PrivateEndpointConnection")])
|
|
203
203
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
204
204
|
super(PrivateEndpointConnection, __self__).__init__(
|
|
205
205
|
'azure-native:eventhub:PrivateEndpointConnection',
|
|
@@ -123,7 +123,7 @@ class SchemaRegistry(pulumi.CustomResource):
|
|
|
123
123
|
Single item in List or Get Schema Group operation
|
|
124
124
|
Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2022-01-01-preview.
|
|
125
125
|
|
|
126
|
-
Other available API versions: 2023-01-01-preview.
|
|
126
|
+
Other available API versions: 2023-01-01-preview, 2024-01-01.
|
|
127
127
|
|
|
128
128
|
:param str resource_name: The name of the resource.
|
|
129
129
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -142,7 +142,7 @@ class SchemaRegistry(pulumi.CustomResource):
|
|
|
142
142
|
Single item in List or Get Schema Group operation
|
|
143
143
|
Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2022-01-01-preview.
|
|
144
144
|
|
|
145
|
-
Other available API versions: 2023-01-01-preview.
|
|
145
|
+
Other available API versions: 2023-01-01-preview, 2024-01-01.
|
|
146
146
|
|
|
147
147
|
:param str resource_name: The name of the resource.
|
|
148
148
|
:param SchemaRegistryArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -191,7 +191,7 @@ class SchemaRegistry(pulumi.CustomResource):
|
|
|
191
191
|
__props__.__dict__["system_data"] = None
|
|
192
192
|
__props__.__dict__["type"] = None
|
|
193
193
|
__props__.__dict__["updated_at_utc"] = None
|
|
194
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub/v20211101:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:SchemaRegistry")])
|
|
194
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub/v20211101:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20240101:SchemaRegistry")])
|
|
195
195
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
196
196
|
super(SchemaRegistry, __self__).__init__(
|
|
197
197
|
'azure-native:eventhub:SchemaRegistry',
|
|
@@ -194,7 +194,7 @@ class ApplicationGroup(pulumi.CustomResource):
|
|
|
194
194
|
__props__.__dict__["name"] = None
|
|
195
195
|
__props__.__dict__["system_data"] = None
|
|
196
196
|
__props__.__dict__["type"] = None
|
|
197
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:ApplicationGroup")])
|
|
197
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20240101:ApplicationGroup")])
|
|
198
198
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
199
199
|
super(ApplicationGroup, __self__).__init__(
|
|
200
200
|
'azure-native:eventhub/v20221001preview:ApplicationGroup',
|
|
@@ -195,7 +195,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
195
195
|
__props__.__dict__["system_data"] = None
|
|
196
196
|
__props__.__dict__["type"] = None
|
|
197
197
|
__props__.__dict__["updated_at"] = None
|
|
198
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20211101:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:Cluster")])
|
|
198
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20211101:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20240101:Cluster")])
|
|
199
199
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
200
200
|
super(Cluster, __self__).__init__(
|
|
201
201
|
'azure-native:eventhub/v20221001preview:Cluster',
|
|
@@ -174,7 +174,7 @@ class ConsumerGroup(pulumi.CustomResource):
|
|
|
174
174
|
__props__.__dict__["system_data"] = None
|
|
175
175
|
__props__.__dict__["type"] = None
|
|
176
176
|
__props__.__dict__["updated_at"] = None
|
|
177
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20140901:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20150801:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20170401:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20211101:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:ConsumerGroup")])
|
|
177
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20140901:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20150801:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20170401:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20211101:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20240101:ConsumerGroup")])
|
|
178
178
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
179
179
|
super(ConsumerGroup, __self__).__init__(
|
|
180
180
|
'azure-native:eventhub/v20221001preview:ConsumerGroup',
|
|
@@ -174,7 +174,7 @@ class DisasterRecoveryConfig(pulumi.CustomResource):
|
|
|
174
174
|
__props__.__dict__["role"] = None
|
|
175
175
|
__props__.__dict__["system_data"] = None
|
|
176
176
|
__props__.__dict__["type"] = None
|
|
177
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20170401:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20211101:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:DisasterRecoveryConfig")])
|
|
177
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20170401:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20211101:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20240101:DisasterRecoveryConfig")])
|
|
178
178
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
179
179
|
super(DisasterRecoveryConfig, __self__).__init__(
|
|
180
180
|
'azure-native:eventhub/v20221001preview:DisasterRecoveryConfig',
|
|
@@ -236,7 +236,7 @@ class EventHub(pulumi.CustomResource):
|
|
|
236
236
|
__props__.__dict__["system_data"] = None
|
|
237
237
|
__props__.__dict__["type"] = None
|
|
238
238
|
__props__.__dict__["updated_at"] = None
|
|
239
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20140901:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20150801:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20170401:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20211101:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:EventHub")])
|
|
239
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20140901:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20150801:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20170401:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20211101:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20240101:EventHub")])
|
|
240
240
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
241
241
|
super(EventHub, __self__).__init__(
|
|
242
242
|
'azure-native:eventhub/v20221001preview:EventHub',
|
|
@@ -174,7 +174,7 @@ class EventHubAuthorizationRule(pulumi.CustomResource):
|
|
|
174
174
|
__props__.__dict__["name"] = None
|
|
175
175
|
__props__.__dict__["system_data"] = None
|
|
176
176
|
__props__.__dict__["type"] = None
|
|
177
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20140901:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20150801:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20170401:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20211101:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:EventHubAuthorizationRule")])
|
|
177
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20140901:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20150801:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20170401:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20211101:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20240101:EventHubAuthorizationRule")])
|
|
178
178
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
179
179
|
super(EventHubAuthorizationRule, __self__).__init__(
|
|
180
180
|
'azure-native:eventhub/v20221001preview:EventHubAuthorizationRule',
|
|
@@ -424,7 +424,7 @@ class Namespace(pulumi.CustomResource):
|
|
|
424
424
|
__props__.__dict__["system_data"] = None
|
|
425
425
|
__props__.__dict__["type"] = None
|
|
426
426
|
__props__.__dict__["updated_at"] = None
|
|
427
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20140901:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20150801:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20170401:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20211101:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:Namespace")])
|
|
427
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20140901:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20150801:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20170401:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20211101:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20240101:Namespace")])
|
|
428
428
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
429
429
|
super(Namespace, __self__).__init__(
|
|
430
430
|
'azure-native:eventhub/v20221001preview:Namespace',
|
|
@@ -153,7 +153,7 @@ class NamespaceAuthorizationRule(pulumi.CustomResource):
|
|
|
153
153
|
__props__.__dict__["name"] = None
|
|
154
154
|
__props__.__dict__["system_data"] = None
|
|
155
155
|
__props__.__dict__["type"] = None
|
|
156
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20140901:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20150801:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20170401:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20211101:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:NamespaceAuthorizationRule")])
|
|
156
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20140901:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20150801:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20170401:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20211101:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20240101:NamespaceAuthorizationRule")])
|
|
157
157
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
158
158
|
super(NamespaceAuthorizationRule, __self__).__init__(
|
|
159
159
|
'azure-native:eventhub/v20221001preview:NamespaceAuthorizationRule',
|
|
@@ -217,7 +217,7 @@ class NamespaceNetworkRuleSet(pulumi.CustomResource):
|
|
|
217
217
|
__props__.__dict__["name"] = None
|
|
218
218
|
__props__.__dict__["system_data"] = None
|
|
219
219
|
__props__.__dict__["type"] = None
|
|
220
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20170401:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20211101:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:NamespaceNetworkRuleSet")])
|
|
220
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20170401:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20211101:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20240101:NamespaceNetworkRuleSet")])
|
|
221
221
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
222
222
|
super(NamespaceNetworkRuleSet, __self__).__init__(
|
|
223
223
|
'azure-native:eventhub/v20221001preview:NamespaceNetworkRuleSet',
|
|
@@ -193,7 +193,7 @@ class PrivateEndpointConnection(pulumi.CustomResource):
|
|
|
193
193
|
__props__.__dict__["name"] = None
|
|
194
194
|
__props__.__dict__["system_data"] = None
|
|
195
195
|
__props__.__dict__["type"] = None
|
|
196
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20211101:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:PrivateEndpointConnection")])
|
|
196
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20211101:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20240101:PrivateEndpointConnection")])
|
|
197
197
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
198
198
|
super(PrivateEndpointConnection, __self__).__init__(
|
|
199
199
|
'azure-native:eventhub/v20221001preview:PrivateEndpointConnection',
|
|
@@ -185,7 +185,7 @@ class SchemaRegistry(pulumi.CustomResource):
|
|
|
185
185
|
__props__.__dict__["system_data"] = None
|
|
186
186
|
__props__.__dict__["type"] = None
|
|
187
187
|
__props__.__dict__["updated_at_utc"] = None
|
|
188
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20211101:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:SchemaRegistry")])
|
|
188
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20211101:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20240101:SchemaRegistry")])
|
|
189
189
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
190
190
|
super(SchemaRegistry, __self__).__init__(
|
|
191
191
|
'azure-native:eventhub/v20221001preview:SchemaRegistry',
|
|
@@ -194,7 +194,7 @@ class ApplicationGroup(pulumi.CustomResource):
|
|
|
194
194
|
__props__.__dict__["name"] = None
|
|
195
195
|
__props__.__dict__["system_data"] = None
|
|
196
196
|
__props__.__dict__["type"] = None
|
|
197
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:ApplicationGroup")])
|
|
197
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20240101:ApplicationGroup")])
|
|
198
198
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
199
199
|
super(ApplicationGroup, __self__).__init__(
|
|
200
200
|
'azure-native:eventhub/v20230101preview:ApplicationGroup',
|
|
@@ -196,7 +196,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
196
196
|
__props__.__dict__["system_data"] = None
|
|
197
197
|
__props__.__dict__["type"] = None
|
|
198
198
|
__props__.__dict__["updated_at"] = None
|
|
199
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20211101:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:Cluster")])
|
|
199
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20211101:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20240101:Cluster")])
|
|
200
200
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
201
201
|
super(Cluster, __self__).__init__(
|
|
202
202
|
'azure-native:eventhub/v20230101preview:Cluster',
|
|
@@ -174,7 +174,7 @@ class ConsumerGroup(pulumi.CustomResource):
|
|
|
174
174
|
__props__.__dict__["system_data"] = None
|
|
175
175
|
__props__.__dict__["type"] = None
|
|
176
176
|
__props__.__dict__["updated_at"] = None
|
|
177
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20140901:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20150801:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20170401:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20211101:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:ConsumerGroup")])
|
|
177
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20140901:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20150801:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20170401:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20211101:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20240101:ConsumerGroup")])
|
|
178
178
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
179
179
|
super(ConsumerGroup, __self__).__init__(
|
|
180
180
|
'azure-native:eventhub/v20230101preview:ConsumerGroup',
|
|
@@ -174,7 +174,7 @@ class DisasterRecoveryConfig(pulumi.CustomResource):
|
|
|
174
174
|
__props__.__dict__["role"] = None
|
|
175
175
|
__props__.__dict__["system_data"] = None
|
|
176
176
|
__props__.__dict__["type"] = None
|
|
177
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20170401:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20211101:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:DisasterRecoveryConfig")])
|
|
177
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20170401:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20211101:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20240101:DisasterRecoveryConfig")])
|
|
178
178
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
179
179
|
super(DisasterRecoveryConfig, __self__).__init__(
|
|
180
180
|
'azure-native:eventhub/v20230101preview:DisasterRecoveryConfig',
|
|
@@ -236,7 +236,7 @@ class EventHub(pulumi.CustomResource):
|
|
|
236
236
|
__props__.__dict__["system_data"] = None
|
|
237
237
|
__props__.__dict__["type"] = None
|
|
238
238
|
__props__.__dict__["updated_at"] = None
|
|
239
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20140901:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20150801:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20170401:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20211101:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:EventHub")])
|
|
239
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20140901:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20150801:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20170401:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20211101:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20240101:EventHub")])
|
|
240
240
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
241
241
|
super(EventHub, __self__).__init__(
|
|
242
242
|
'azure-native:eventhub/v20230101preview:EventHub',
|
|
@@ -174,7 +174,7 @@ class EventHubAuthorizationRule(pulumi.CustomResource):
|
|
|
174
174
|
__props__.__dict__["name"] = None
|
|
175
175
|
__props__.__dict__["system_data"] = None
|
|
176
176
|
__props__.__dict__["type"] = None
|
|
177
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20140901:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20150801:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20170401:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20211101:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:EventHubAuthorizationRule")])
|
|
177
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20140901:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20150801:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20170401:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20211101:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20240101:EventHubAuthorizationRule")])
|
|
178
178
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
179
179
|
super(EventHubAuthorizationRule, __self__).__init__(
|
|
180
180
|
'azure-native:eventhub/v20230101preview:EventHubAuthorizationRule',
|
|
@@ -444,7 +444,7 @@ class Namespace(pulumi.CustomResource):
|
|
|
444
444
|
__props__.__dict__["system_data"] = None
|
|
445
445
|
__props__.__dict__["type"] = None
|
|
446
446
|
__props__.__dict__["updated_at"] = None
|
|
447
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20140901:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20150801:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20170401:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20211101:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:Namespace")])
|
|
447
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20140901:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20150801:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20170401:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20211101:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20240101:Namespace")])
|
|
448
448
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
449
449
|
super(Namespace, __self__).__init__(
|
|
450
450
|
'azure-native:eventhub/v20230101preview:Namespace',
|
|
@@ -153,7 +153,7 @@ class NamespaceAuthorizationRule(pulumi.CustomResource):
|
|
|
153
153
|
__props__.__dict__["name"] = None
|
|
154
154
|
__props__.__dict__["system_data"] = None
|
|
155
155
|
__props__.__dict__["type"] = None
|
|
156
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20140901:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20150801:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20170401:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20211101:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:NamespaceAuthorizationRule")])
|
|
156
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20140901:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20150801:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20170401:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20211101:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:NamespaceAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20240101:NamespaceAuthorizationRule")])
|
|
157
157
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
158
158
|
super(NamespaceAuthorizationRule, __self__).__init__(
|
|
159
159
|
'azure-native:eventhub/v20230101preview:NamespaceAuthorizationRule',
|
|
@@ -217,7 +217,7 @@ class NamespaceNetworkRuleSet(pulumi.CustomResource):
|
|
|
217
217
|
__props__.__dict__["name"] = None
|
|
218
218
|
__props__.__dict__["system_data"] = None
|
|
219
219
|
__props__.__dict__["type"] = None
|
|
220
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20170401:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20211101:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:NamespaceNetworkRuleSet")])
|
|
220
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20170401:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20211101:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:NamespaceNetworkRuleSet"), pulumi.Alias(type_="azure-native:eventhub/v20240101:NamespaceNetworkRuleSet")])
|
|
221
221
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
222
222
|
super(NamespaceNetworkRuleSet, __self__).__init__(
|
|
223
223
|
'azure-native:eventhub/v20230101preview:NamespaceNetworkRuleSet',
|
|
@@ -193,7 +193,7 @@ class PrivateEndpointConnection(pulumi.CustomResource):
|
|
|
193
193
|
__props__.__dict__["name"] = None
|
|
194
194
|
__props__.__dict__["system_data"] = None
|
|
195
195
|
__props__.__dict__["type"] = None
|
|
196
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20211101:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:PrivateEndpointConnection")])
|
|
196
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20211101:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20240101:PrivateEndpointConnection")])
|
|
197
197
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
198
198
|
super(PrivateEndpointConnection, __self__).__init__(
|
|
199
199
|
'azure-native:eventhub/v20230101preview:PrivateEndpointConnection',
|
|
@@ -185,7 +185,7 @@ class SchemaRegistry(pulumi.CustomResource):
|
|
|
185
185
|
__props__.__dict__["system_data"] = None
|
|
186
186
|
__props__.__dict__["type"] = None
|
|
187
187
|
__props__.__dict__["updated_at_utc"] = None
|
|
188
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20211101:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:SchemaRegistry")])
|
|
188
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20211101:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20240101:SchemaRegistry")])
|
|
189
189
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
190
190
|
super(SchemaRegistry, __self__).__init__(
|
|
191
191
|
'azure-native:eventhub/v20230101preview:SchemaRegistry',
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
from ... import _utilities
|
|
6
|
+
import typing
|
|
7
|
+
# Export this package's modules as members:
|
|
8
|
+
from ._enums import *
|
|
9
|
+
from .application_group import *
|
|
10
|
+
from .cluster import *
|
|
11
|
+
from .consumer_group import *
|
|
12
|
+
from .disaster_recovery_config import *
|
|
13
|
+
from .event_hub import *
|
|
14
|
+
from .event_hub_authorization_rule import *
|
|
15
|
+
from .get_application_group import *
|
|
16
|
+
from .get_cluster import *
|
|
17
|
+
from .get_consumer_group import *
|
|
18
|
+
from .get_disaster_recovery_config import *
|
|
19
|
+
from .get_event_hub import *
|
|
20
|
+
from .get_event_hub_authorization_rule import *
|
|
21
|
+
from .get_namespace import *
|
|
22
|
+
from .get_namespace_authorization_rule import *
|
|
23
|
+
from .get_namespace_network_rule_set import *
|
|
24
|
+
from .get_private_endpoint_connection import *
|
|
25
|
+
from .get_schema_registry import *
|
|
26
|
+
from .list_disaster_recovery_config_keys import *
|
|
27
|
+
from .list_event_hub_keys import *
|
|
28
|
+
from .list_namespace_keys import *
|
|
29
|
+
from .namespace import *
|
|
30
|
+
from .namespace_authorization_rule import *
|
|
31
|
+
from .namespace_network_rule_set import *
|
|
32
|
+
from .private_endpoint_connection import *
|
|
33
|
+
from .schema_registry import *
|
|
34
|
+
from ._inputs import *
|
|
35
|
+
from . import outputs
|