pulumi-azure-native 2.17.1a1700150019__py3-none-any.whl → 2.18.1a1700572187__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-azure-native might be problematic. Click here for more details.

Files changed (156) hide show
  1. pulumi_azure_native/__init__.py +54 -0
  2. pulumi_azure_native/config/__init__.pyi +83 -0
  3. pulumi_azure_native/eventhub/__init__.py +3 -0
  4. pulumi_azure_native/eventhub/application_group.py +3 -3
  5. pulumi_azure_native/eventhub/cluster.py +3 -3
  6. pulumi_azure_native/eventhub/consumer_group.py +3 -3
  7. pulumi_azure_native/eventhub/disaster_recovery_config.py +3 -3
  8. pulumi_azure_native/eventhub/event_hub.py +3 -3
  9. pulumi_azure_native/eventhub/event_hub_authorization_rule.py +3 -3
  10. pulumi_azure_native/eventhub/get_application_group.py +2 -2
  11. pulumi_azure_native/eventhub/get_cluster.py +2 -2
  12. pulumi_azure_native/eventhub/get_consumer_group.py +2 -2
  13. pulumi_azure_native/eventhub/get_disaster_recovery_config.py +2 -2
  14. pulumi_azure_native/eventhub/get_event_hub.py +2 -2
  15. pulumi_azure_native/eventhub/get_event_hub_authorization_rule.py +2 -2
  16. pulumi_azure_native/eventhub/get_namespace.py +2 -2
  17. pulumi_azure_native/eventhub/get_namespace_authorization_rule.py +2 -2
  18. pulumi_azure_native/eventhub/get_namespace_network_rule_set.py +2 -2
  19. pulumi_azure_native/eventhub/get_private_endpoint_connection.py +2 -2
  20. pulumi_azure_native/eventhub/get_schema_registry.py +2 -2
  21. pulumi_azure_native/eventhub/list_disaster_recovery_config_keys.py +2 -2
  22. pulumi_azure_native/eventhub/list_event_hub_keys.py +2 -2
  23. pulumi_azure_native/eventhub/list_namespace_keys.py +2 -2
  24. pulumi_azure_native/eventhub/namespace.py +3 -3
  25. pulumi_azure_native/eventhub/namespace_authorization_rule.py +3 -3
  26. pulumi_azure_native/eventhub/namespace_network_rule_set.py +3 -3
  27. pulumi_azure_native/eventhub/private_endpoint_connection.py +3 -3
  28. pulumi_azure_native/eventhub/schema_registry.py +3 -3
  29. pulumi_azure_native/eventhub/v20221001preview/application_group.py +1 -1
  30. pulumi_azure_native/eventhub/v20221001preview/cluster.py +1 -1
  31. pulumi_azure_native/eventhub/v20221001preview/consumer_group.py +1 -1
  32. pulumi_azure_native/eventhub/v20221001preview/disaster_recovery_config.py +1 -1
  33. pulumi_azure_native/eventhub/v20221001preview/event_hub.py +1 -1
  34. pulumi_azure_native/eventhub/v20221001preview/event_hub_authorization_rule.py +1 -1
  35. pulumi_azure_native/eventhub/v20221001preview/namespace.py +1 -1
  36. pulumi_azure_native/eventhub/v20221001preview/namespace_authorization_rule.py +1 -1
  37. pulumi_azure_native/eventhub/v20221001preview/namespace_network_rule_set.py +1 -1
  38. pulumi_azure_native/eventhub/v20221001preview/private_endpoint_connection.py +1 -1
  39. pulumi_azure_native/eventhub/v20221001preview/schema_registry.py +1 -1
  40. pulumi_azure_native/eventhub/v20230101preview/application_group.py +1 -1
  41. pulumi_azure_native/eventhub/v20230101preview/cluster.py +1 -1
  42. pulumi_azure_native/eventhub/v20230101preview/consumer_group.py +1 -1
  43. pulumi_azure_native/eventhub/v20230101preview/disaster_recovery_config.py +1 -1
  44. pulumi_azure_native/eventhub/v20230101preview/event_hub.py +1 -1
  45. pulumi_azure_native/eventhub/v20230101preview/event_hub_authorization_rule.py +1 -1
  46. pulumi_azure_native/eventhub/v20230101preview/namespace.py +1 -1
  47. pulumi_azure_native/eventhub/v20230101preview/namespace_authorization_rule.py +1 -1
  48. pulumi_azure_native/eventhub/v20230101preview/namespace_network_rule_set.py +1 -1
  49. pulumi_azure_native/eventhub/v20230101preview/private_endpoint_connection.py +1 -1
  50. pulumi_azure_native/eventhub/v20230101preview/schema_registry.py +1 -1
  51. pulumi_azure_native/eventhub/v20240101/__init__.py +35 -0
  52. pulumi_azure_native/eventhub/v20240101/_enums.py +223 -0
  53. pulumi_azure_native/eventhub/v20240101/_inputs.py +986 -0
  54. pulumi_azure_native/eventhub/v20240101/application_group.py +285 -0
  55. pulumi_azure_native/eventhub/v20240101/cluster.py +361 -0
  56. pulumi_azure_native/eventhub/v20240101/consumer_group.py +265 -0
  57. pulumi_azure_native/eventhub/v20240101/disaster_recovery_config.py +283 -0
  58. pulumi_azure_native/eventhub/v20240101/event_hub.py +372 -0
  59. pulumi_azure_native/eventhub/v20240101/event_hub_authorization_rule.py +247 -0
  60. pulumi_azure_native/eventhub/v20240101/get_application_group.py +175 -0
  61. pulumi_azure_native/eventhub/v20240101/get_cluster.py +248 -0
  62. pulumi_azure_native/eventhub/v20240101/get_consumer_group.py +180 -0
  63. pulumi_azure_native/eventhub/v20240101/get_disaster_recovery_config.py +201 -0
  64. pulumi_azure_native/eventhub/v20240101/get_event_hub.py +240 -0
  65. pulumi_azure_native/eventhub/v20240101/get_event_hub_authorization_rule.py +154 -0
  66. pulumi_azure_native/eventhub/v20240101/get_namespace.py +391 -0
  67. pulumi_azure_native/eventhub/v20240101/get_namespace_authorization_rule.py +149 -0
  68. pulumi_azure_native/eventhub/v20240101/get_namespace_network_rule_set.py +196 -0
  69. pulumi_azure_native/eventhub/v20240101/get_private_endpoint_connection.py +175 -0
  70. pulumi_azure_native/eventhub/v20240101/get_schema_registry.py +208 -0
  71. pulumi_azure_native/eventhub/v20240101/list_disaster_recovery_config_keys.py +166 -0
  72. pulumi_azure_native/eventhub/v20240101/list_event_hub_keys.py +166 -0
  73. pulumi_azure_native/eventhub/v20240101/list_namespace_keys.py +161 -0
  74. pulumi_azure_native/eventhub/v20240101/namespace.py +668 -0
  75. pulumi_azure_native/eventhub/v20240101/namespace_authorization_rule.py +226 -0
  76. pulumi_azure_native/eventhub/v20240101/namespace_network_rule_set.py +326 -0
  77. pulumi_azure_native/eventhub/v20240101/outputs.py +1336 -0
  78. pulumi_azure_native/eventhub/v20240101/private_endpoint_connection.py +284 -0
  79. pulumi_azure_native/eventhub/v20240101/schema_registry.py +297 -0
  80. pulumi_azure_native/healthcareapis/__init__.py +3 -0
  81. pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
  82. pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
  83. pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
  84. pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
  85. pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
  86. pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
  87. pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
  88. pulumi_azure_native/healthcareapis/get_service.py +2 -2
  89. pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
  90. pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
  91. pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
  92. pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
  93. pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
  94. pulumi_azure_native/healthcareapis/service.py +3 -3
  95. pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
  96. pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
  97. pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
  98. pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
  99. pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
  100. pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
  101. pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
  102. pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
  103. pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
  104. pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
  105. pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
  106. pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
  107. pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
  108. pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
  109. pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
  110. pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
  111. pulumi_azure_native/healthcareapis/v20231101/__init__.py +26 -0
  112. pulumi_azure_native/healthcareapis/v20231101/_enums.py +85 -0
  113. pulumi_azure_native/healthcareapis/v20231101/_inputs.py +1277 -0
  114. pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +402 -0
  115. pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +585 -0
  116. pulumi_azure_native/healthcareapis/v20231101/get_dicom_service.py +279 -0
  117. pulumi_azure_native/healthcareapis/v20231101/get_fhir_service.py +344 -0
  118. pulumi_azure_native/healthcareapis/v20231101/get_iot_connector.py +214 -0
  119. pulumi_azure_native/healthcareapis/v20231101/get_iot_connector_fhir_destination.py +193 -0
  120. pulumi_azure_native/healthcareapis/v20231101/get_private_endpoint_connection.py +162 -0
  121. pulumi_azure_native/healthcareapis/v20231101/get_service.py +196 -0
  122. pulumi_azure_native/healthcareapis/v20231101/get_workspace.py +170 -0
  123. pulumi_azure_native/healthcareapis/v20231101/get_workspace_private_endpoint_connection.py +162 -0
  124. pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +352 -0
  125. pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +337 -0
  126. pulumi_azure_native/healthcareapis/v20231101/outputs.py +1951 -0
  127. pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +237 -0
  128. pulumi_azure_native/healthcareapis/v20231101/service.py +322 -0
  129. pulumi_azure_native/healthcareapis/v20231101/workspace.py +242 -0
  130. pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +237 -0
  131. pulumi_azure_native/healthcareapis/workspace.py +3 -3
  132. pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
  133. pulumi_azure_native/offazurespringboot/__init__.py +22 -0
  134. pulumi_azure_native/offazurespringboot/_enums.py +22 -0
  135. pulumi_azure_native/offazurespringboot/_inputs.py +402 -0
  136. pulumi_azure_native/offazurespringboot/get_springbootserver.py +151 -0
  137. pulumi_azure_native/offazurespringboot/get_springbootsite.py +172 -0
  138. pulumi_azure_native/offazurespringboot/outputs.py +509 -0
  139. pulumi_azure_native/offazurespringboot/springbootserver.py +247 -0
  140. pulumi_azure_native/offazurespringboot/springbootsite.py +284 -0
  141. pulumi_azure_native/offazurespringboot/v20230101preview/__init__.py +14 -0
  142. pulumi_azure_native/offazurespringboot/v20230101preview/_enums.py +22 -0
  143. pulumi_azure_native/offazurespringboot/v20230101preview/_inputs.py +402 -0
  144. pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootserver.py +149 -0
  145. pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootsite.py +170 -0
  146. pulumi_azure_native/offazurespringboot/v20230101preview/outputs.py +509 -0
  147. pulumi_azure_native/offazurespringboot/v20230101preview/springbootserver.py +245 -0
  148. pulumi_azure_native/offazurespringboot/v20230101preview/springbootsite.py +282 -0
  149. pulumi_azure_native/security/alerts_suppression_rule.py +4 -4
  150. pulumi_azure_native/security/get_alerts_suppression_rule.py +1 -1
  151. pulumi_azure_native/security/v20190101preview/alerts_suppression_rule.py +4 -4
  152. pulumi_azure_native/security/v20190101preview/get_alerts_suppression_rule.py +1 -1
  153. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/METADATA +1 -1
  154. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/RECORD +156 -90
  155. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/WHEEL +0 -0
  156. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/top_level.txt +0 -0
@@ -317,6 +317,8 @@ if typing.TYPE_CHECKING:
317
317
  notificationhubs = __notificationhubs
318
318
  import pulumi_azure_native.offazure as __offazure
319
319
  offazure = __offazure
320
+ import pulumi_azure_native.offazurespringboot as __offazurespringboot
321
+ offazurespringboot = __offazurespringboot
320
322
  import pulumi_azure_native.openenergyplatform as __openenergyplatform
321
323
  openenergyplatform = __openenergyplatform
322
324
  import pulumi_azure_native.operationalinsights as __operationalinsights
@@ -606,6 +608,7 @@ else:
606
608
  networkfunction = _utilities.lazy_import('pulumi_azure_native.networkfunction')
607
609
  notificationhubs = _utilities.lazy_import('pulumi_azure_native.notificationhubs')
608
610
  offazure = _utilities.lazy_import('pulumi_azure_native.offazure')
611
+ offazurespringboot = _utilities.lazy_import('pulumi_azure_native.offazurespringboot')
609
612
  openenergyplatform = _utilities.lazy_import('pulumi_azure_native.openenergyplatform')
610
613
  operationalinsights = _utilities.lazy_import('pulumi_azure_native.operationalinsights')
611
614
  operationsmanagement = _utilities.lazy_import('pulumi_azure_native.operationsmanagement')
@@ -6343,6 +6346,24 @@ _utilities.register(
6343
6346
  "azure-native:eventhub/v20230101preview:SchemaRegistry": "SchemaRegistry"
6344
6347
  }
6345
6348
  },
6349
+ {
6350
+ "pkg": "azure-native",
6351
+ "mod": "eventhub/v20240101",
6352
+ "fqn": "pulumi_azure_native.eventhub.v20240101",
6353
+ "classes": {
6354
+ "azure-native:eventhub/v20240101:ApplicationGroup": "ApplicationGroup",
6355
+ "azure-native:eventhub/v20240101:Cluster": "Cluster",
6356
+ "azure-native:eventhub/v20240101:ConsumerGroup": "ConsumerGroup",
6357
+ "azure-native:eventhub/v20240101:DisasterRecoveryConfig": "DisasterRecoveryConfig",
6358
+ "azure-native:eventhub/v20240101:EventHub": "EventHub",
6359
+ "azure-native:eventhub/v20240101:EventHubAuthorizationRule": "EventHubAuthorizationRule",
6360
+ "azure-native:eventhub/v20240101:Namespace": "Namespace",
6361
+ "azure-native:eventhub/v20240101:NamespaceAuthorizationRule": "NamespaceAuthorizationRule",
6362
+ "azure-native:eventhub/v20240101:NamespaceNetworkRuleSet": "NamespaceNetworkRuleSet",
6363
+ "azure-native:eventhub/v20240101:PrivateEndpointConnection": "PrivateEndpointConnection",
6364
+ "azure-native:eventhub/v20240101:SchemaRegistry": "SchemaRegistry"
6365
+ }
6366
+ },
6346
6367
  {
6347
6368
  "pkg": "azure-native",
6348
6369
  "mod": "extendedlocation",
@@ -6628,6 +6649,21 @@ _utilities.register(
6628
6649
  "azure-native:healthcareapis/v20230906:WorkspacePrivateEndpointConnection": "WorkspacePrivateEndpointConnection"
6629
6650
  }
6630
6651
  },
6652
+ {
6653
+ "pkg": "azure-native",
6654
+ "mod": "healthcareapis/v20231101",
6655
+ "fqn": "pulumi_azure_native.healthcareapis.v20231101",
6656
+ "classes": {
6657
+ "azure-native:healthcareapis/v20231101:DicomService": "DicomService",
6658
+ "azure-native:healthcareapis/v20231101:FhirService": "FhirService",
6659
+ "azure-native:healthcareapis/v20231101:IotConnector": "IotConnector",
6660
+ "azure-native:healthcareapis/v20231101:IotConnectorFhirDestination": "IotConnectorFhirDestination",
6661
+ "azure-native:healthcareapis/v20231101:PrivateEndpointConnection": "PrivateEndpointConnection",
6662
+ "azure-native:healthcareapis/v20231101:Service": "Service",
6663
+ "azure-native:healthcareapis/v20231101:Workspace": "Workspace",
6664
+ "azure-native:healthcareapis/v20231101:WorkspacePrivateEndpointConnection": "WorkspacePrivateEndpointConnection"
6665
+ }
6666
+ },
6631
6667
  {
6632
6668
  "pkg": "azure-native",
6633
6669
  "mod": "hybridcloud",
@@ -10209,6 +10245,24 @@ _utilities.register(
10209
10245
  "azure-native:offazure/v20230606:WebAppSitesController": "WebAppSitesController"
10210
10246
  }
10211
10247
  },
10248
+ {
10249
+ "pkg": "azure-native",
10250
+ "mod": "offazurespringboot",
10251
+ "fqn": "pulumi_azure_native.offazurespringboot",
10252
+ "classes": {
10253
+ "azure-native:offazurespringboot:Springbootserver": "Springbootserver",
10254
+ "azure-native:offazurespringboot:Springbootsite": "Springbootsite"
10255
+ }
10256
+ },
10257
+ {
10258
+ "pkg": "azure-native",
10259
+ "mod": "offazurespringboot/v20230101preview",
10260
+ "fqn": "pulumi_azure_native.offazurespringboot.v20230101preview",
10261
+ "classes": {
10262
+ "azure-native:offazurespringboot/v20230101preview:Springbootserver": "Springbootserver",
10263
+ "azure-native:offazurespringboot/v20230101preview:Springbootsite": "Springbootsite"
10264
+ }
10265
+ },
10212
10266
  {
10213
10267
  "pkg": "azure-native",
10214
10268
  "mod": "openenergyplatform",
@@ -0,0 +1,83 @@
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
+
12
+ auxiliaryTenantIds: Optional[str]
13
+
14
+ clientCertificatePassword: Optional[str]
15
+ """
16
+ The password associated with the Client Certificate. For use when authenticating as a Service Principal using a Client Certificate
17
+ """
18
+
19
+ clientCertificatePath: Optional[str]
20
+ """
21
+ The path to the Client Certificate associated with the Service Principal for use when authenticating as a Service Principal using a Client Certificate.
22
+ """
23
+
24
+ clientId: Optional[str]
25
+ """
26
+ The Client ID which should be used.
27
+ """
28
+
29
+ clientSecret: Optional[str]
30
+ """
31
+ The Client Secret which should be used. For use When authenticating as a Service Principal using a Client Secret.
32
+ """
33
+
34
+ disablePulumiPartnerId: Optional[bool]
35
+ """
36
+ This will disable the Pulumi Partner ID which is used if a custom `partnerId` isn't specified.
37
+ """
38
+
39
+ environment: Optional[str]
40
+ """
41
+ The Cloud Environment which should be used. Possible values are public, usgovernment, german, and china. Defaults to public.
42
+ """
43
+
44
+ msiEndpoint: Optional[str]
45
+ """
46
+ The path to a custom endpoint for Managed Service Identity - in most circumstances this should be detected automatically.
47
+ """
48
+
49
+ oidcRequestToken: Optional[str]
50
+ """
51
+ Your cloud service or provider’s token to exchange for an Azure token.
52
+ """
53
+
54
+ oidcRequestUrl: Optional[str]
55
+ """
56
+ The URL to initiate the OIDC token exchange.
57
+ """
58
+
59
+ partnerId: Optional[str]
60
+ """
61
+ A GUID/UUID that is registered with Microsoft to facilitate partner resource usage attribution.
62
+ """
63
+
64
+ subscriptionId: Optional[str]
65
+ """
66
+ The Subscription ID which should be used.
67
+ """
68
+
69
+ tenantId: Optional[str]
70
+ """
71
+ The Tenant ID which should be used.
72
+ """
73
+
74
+ useMsi: bool
75
+ """
76
+ Allowed Managed Service Identity be used for Authentication.
77
+ """
78
+
79
+ useOidc: bool
80
+ """
81
+ Allowed OpenID Connect (OIDC) to be used for Authentication.
82
+ """
83
+
@@ -46,8 +46,11 @@ if typing.TYPE_CHECKING:
46
46
  v20221001preview = __v20221001preview
47
47
  import pulumi_azure_native.eventhub.v20230101preview as __v20230101preview
48
48
  v20230101preview = __v20230101preview
49
+ import pulumi_azure_native.eventhub.v20240101 as __v20240101
50
+ v20240101 = __v20240101
49
51
  else:
50
52
  v20180101preview = _utilities.lazy_import('pulumi_azure_native.eventhub.v20180101preview')
51
53
  v20221001preview = _utilities.lazy_import('pulumi_azure_native.eventhub.v20221001preview')
52
54
  v20230101preview = _utilities.lazy_import('pulumi_azure_native.eventhub.v20230101preview')
55
+ v20240101 = _utilities.lazy_import('pulumi_azure_native.eventhub.v20240101')
53
56
 
@@ -131,7 +131,7 @@ class ApplicationGroup(pulumi.CustomResource):
131
131
  The Application Group object
132
132
  Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2022-01-01-preview.
133
133
 
134
- Other available API versions: 2023-01-01-preview.
134
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
135
135
 
136
136
  :param str resource_name: The name of the resource.
137
137
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -152,7 +152,7 @@ class ApplicationGroup(pulumi.CustomResource):
152
152
  The Application Group object
153
153
  Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2022-01-01-preview.
154
154
 
155
- Other available API versions: 2023-01-01-preview.
155
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
156
156
 
157
157
  :param str resource_name: The name of the resource.
158
158
  :param ApplicationGroupArgs args: The arguments to use to populate this resource's properties.
@@ -200,7 +200,7 @@ class ApplicationGroup(pulumi.CustomResource):
200
200
  __props__.__dict__["name"] = None
201
201
  __props__.__dict__["system_data"] = None
202
202
  __props__.__dict__["type"] = None
203
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub/v20220101preview:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:ApplicationGroup")])
203
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub/v20220101preview:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:ApplicationGroup"), pulumi.Alias(type_="azure-native:eventhub/v20240101:ApplicationGroup")])
204
204
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
205
205
  super(ApplicationGroup, __self__).__init__(
206
206
  'azure-native:eventhub:ApplicationGroup',
@@ -133,7 +133,7 @@ class Cluster(pulumi.CustomResource):
133
133
  Single Event Hubs Cluster resource in List or Get operations.
134
134
  Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2018-01-01-preview.
135
135
 
136
- Other available API versions: 2023-01-01-preview.
136
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
137
137
 
138
138
  :param str resource_name: The name of the resource.
139
139
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -154,7 +154,7 @@ class Cluster(pulumi.CustomResource):
154
154
  Single Event Hubs Cluster resource in List or Get operations.
155
155
  Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2018-01-01-preview.
156
156
 
157
- Other available API versions: 2023-01-01-preview.
157
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
158
158
 
159
159
  :param str resource_name: The name of the resource.
160
160
  :param ClusterArgs args: The arguments to use to populate this resource's properties.
@@ -201,7 +201,7 @@ class Cluster(pulumi.CustomResource):
201
201
  __props__.__dict__["system_data"] = None
202
202
  __props__.__dict__["type"] = None
203
203
  __props__.__dict__["updated_at"] = None
204
- alias_opts = pulumi.ResourceOptions(aliases=[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/v20230101preview:Cluster")])
204
+ alias_opts = pulumi.ResourceOptions(aliases=[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/v20230101preview:Cluster"), pulumi.Alias(type_="azure-native:eventhub/v20240101:Cluster")])
205
205
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
206
206
  super(Cluster, __self__).__init__(
207
207
  'azure-native:eventhub:Cluster',
@@ -112,7 +112,7 @@ class ConsumerGroup(pulumi.CustomResource):
112
112
  Single item in List or Get Consumer group operation
113
113
  Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
114
114
 
115
- Other available API versions: 2015-08-01, 2023-01-01-preview.
115
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
116
116
 
117
117
  :param str resource_name: The name of the resource.
118
118
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -132,7 +132,7 @@ class ConsumerGroup(pulumi.CustomResource):
132
132
  Single item in List or Get Consumer group operation
133
133
  Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
134
134
 
135
- Other available API versions: 2015-08-01, 2023-01-01-preview.
135
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
136
136
 
137
137
  :param str resource_name: The name of the resource.
138
138
  :param ConsumerGroupArgs args: The arguments to use to populate this resource's properties.
@@ -180,7 +180,7 @@ class ConsumerGroup(pulumi.CustomResource):
180
180
  __props__.__dict__["system_data"] = None
181
181
  __props__.__dict__["type"] = None
182
182
  __props__.__dict__["updated_at"] = None
183
- alias_opts = pulumi.ResourceOptions(aliases=[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/v20230101preview:ConsumerGroup")])
183
+ alias_opts = pulumi.ResourceOptions(aliases=[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/v20230101preview:ConsumerGroup"), pulumi.Alias(type_="azure-native:eventhub/v20240101:ConsumerGroup")])
184
184
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
185
185
  super(ConsumerGroup, __self__).__init__(
186
186
  'azure-native:eventhub:ConsumerGroup',
@@ -113,7 +113,7 @@ class DisasterRecoveryConfig(pulumi.CustomResource):
113
113
  Single item in List or Get Alias(Disaster Recovery configuration) operation
114
114
  Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
115
115
 
116
- Other available API versions: 2023-01-01-preview.
116
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
117
117
 
118
118
  :param str resource_name: The name of the resource.
119
119
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -133,7 +133,7 @@ class DisasterRecoveryConfig(pulumi.CustomResource):
133
133
  Single item in List or Get Alias(Disaster Recovery configuration) operation
134
134
  Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
135
135
 
136
- Other available API versions: 2023-01-01-preview.
136
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
137
137
 
138
138
  :param str resource_name: The name of the resource.
139
139
  :param DisasterRecoveryConfigArgs args: The arguments to use to populate this resource's properties.
@@ -180,7 +180,7 @@ class DisasterRecoveryConfig(pulumi.CustomResource):
180
180
  __props__.__dict__["role"] = None
181
181
  __props__.__dict__["system_data"] = None
182
182
  __props__.__dict__["type"] = None
183
- alias_opts = pulumi.ResourceOptions(aliases=[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/v20230101preview:DisasterRecoveryConfig")])
183
+ alias_opts = pulumi.ResourceOptions(aliases=[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/v20230101preview:DisasterRecoveryConfig"), pulumi.Alias(type_="azure-native:eventhub/v20240101:DisasterRecoveryConfig")])
184
184
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
185
185
  super(DisasterRecoveryConfig, __self__).__init__(
186
186
  'azure-native:eventhub:DisasterRecoveryConfig',
@@ -166,7 +166,7 @@ class EventHub(pulumi.CustomResource):
166
166
  Single item in List or Get Event Hub operation
167
167
  Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
168
168
 
169
- Other available API versions: 2015-08-01, 2023-01-01-preview.
169
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
170
170
 
171
171
  :param str resource_name: The name of the resource.
172
172
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -189,7 +189,7 @@ class EventHub(pulumi.CustomResource):
189
189
  Single item in List or Get Event Hub operation
190
190
  Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
191
191
 
192
- Other available API versions: 2015-08-01, 2023-01-01-preview.
192
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
193
193
 
194
194
  :param str resource_name: The name of the resource.
195
195
  :param EventHubArgs args: The arguments to use to populate this resource's properties.
@@ -242,7 +242,7 @@ class EventHub(pulumi.CustomResource):
242
242
  __props__.__dict__["system_data"] = None
243
243
  __props__.__dict__["type"] = None
244
244
  __props__.__dict__["updated_at"] = None
245
- alias_opts = pulumi.ResourceOptions(aliases=[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/v20230101preview:EventHub")])
245
+ alias_opts = pulumi.ResourceOptions(aliases=[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/v20230101preview:EventHub"), pulumi.Alias(type_="azure-native:eventhub/v20240101:EventHub")])
246
246
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
247
247
  super(EventHub, __self__).__init__(
248
248
  'azure-native:eventhub:EventHub',
@@ -112,7 +112,7 @@ class EventHubAuthorizationRule(pulumi.CustomResource):
112
112
  Single item in a List or Get AuthorizationRule operation
113
113
  Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
114
114
 
115
- Other available API versions: 2015-08-01, 2023-01-01-preview.
115
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
116
116
 
117
117
  :param str resource_name: The name of the resource.
118
118
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -132,7 +132,7 @@ class EventHubAuthorizationRule(pulumi.CustomResource):
132
132
  Single item in a List or Get AuthorizationRule operation
133
133
  Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
134
134
 
135
- Other available API versions: 2015-08-01, 2023-01-01-preview.
135
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
136
136
 
137
137
  :param str resource_name: The name of the resource.
138
138
  :param EventHubAuthorizationRuleArgs args: The arguments to use to populate this resource's properties.
@@ -180,7 +180,7 @@ class EventHubAuthorizationRule(pulumi.CustomResource):
180
180
  __props__.__dict__["name"] = None
181
181
  __props__.__dict__["system_data"] = None
182
182
  __props__.__dict__["type"] = None
183
- alias_opts = pulumi.ResourceOptions(aliases=[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/v20230101preview:EventHubAuthorizationRule")])
183
+ alias_opts = pulumi.ResourceOptions(aliases=[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/v20230101preview:EventHubAuthorizationRule"), pulumi.Alias(type_="azure-native:eventhub/v20240101:EventHubAuthorizationRule")])
184
184
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
185
185
  super(EventHubAuthorizationRule, __self__).__init__(
186
186
  'azure-native:eventhub:EventHubAuthorizationRule',
@@ -137,7 +137,7 @@ def get_application_group(application_group_name: Optional[str] = None,
137
137
  Gets an ApplicationGroup for a Namespace.
138
138
  Azure REST API version: 2022-10-01-preview.
139
139
 
140
- Other available API versions: 2023-01-01-preview.
140
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
141
141
 
142
142
 
143
143
  :param str application_group_name: The Application Group name
@@ -171,7 +171,7 @@ def get_application_group_output(application_group_name: Optional[pulumi.Input[s
171
171
  Gets an ApplicationGroup for a Namespace.
172
172
  Azure REST API version: 2022-10-01-preview.
173
173
 
174
- Other available API versions: 2023-01-01-preview.
174
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
175
175
 
176
176
 
177
177
  :param str application_group_name: The Application Group name
@@ -184,7 +184,7 @@ def get_cluster(cluster_name: Optional[str] = None,
184
184
  Gets the resource description of the specified Event Hubs Cluster.
185
185
  Azure REST API version: 2022-10-01-preview.
186
186
 
187
- Other available API versions: 2023-01-01-preview.
187
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
188
188
 
189
189
 
190
190
  :param str cluster_name: The name of the Event Hubs Cluster.
@@ -219,7 +219,7 @@ def get_cluster_output(cluster_name: Optional[pulumi.Input[str]] = None,
219
219
  Gets the resource description of the specified Event Hubs Cluster.
220
220
  Azure REST API version: 2022-10-01-preview.
221
221
 
222
- Other available API versions: 2023-01-01-preview.
222
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
223
223
 
224
224
 
225
225
  :param str cluster_name: The name of the Event Hubs Cluster.
@@ -138,7 +138,7 @@ def get_consumer_group(consumer_group_name: Optional[str] = None,
138
138
  Gets a description for the specified consumer group.
139
139
  Azure REST API version: 2022-10-01-preview.
140
140
 
141
- Other available API versions: 2015-08-01, 2023-01-01-preview.
141
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
142
142
 
143
143
 
144
144
  :param str consumer_group_name: The consumer group name
@@ -175,7 +175,7 @@ def get_consumer_group_output(consumer_group_name: Optional[pulumi.Input[str]] =
175
175
  Gets a description for the specified consumer group.
176
176
  Azure REST API version: 2022-10-01-preview.
177
177
 
178
- Other available API versions: 2015-08-01, 2023-01-01-preview.
178
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
179
179
 
180
180
 
181
181
  :param str consumer_group_name: The consumer group name
@@ -161,7 +161,7 @@ def get_disaster_recovery_config(alias: Optional[str] = None,
161
161
  Retrieves Alias(Disaster Recovery configuration) for primary or secondary namespace
162
162
  Azure REST API version: 2022-10-01-preview.
163
163
 
164
- Other available API versions: 2023-01-01-preview.
164
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
165
165
 
166
166
 
167
167
  :param str alias: The Disaster Recovery configuration name
@@ -197,7 +197,7 @@ def get_disaster_recovery_config_output(alias: Optional[pulumi.Input[str]] = Non
197
197
  Retrieves Alias(Disaster Recovery configuration) for primary or secondary namespace
198
198
  Azure REST API version: 2022-10-01-preview.
199
199
 
200
- Other available API versions: 2023-01-01-preview.
200
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
201
201
 
202
202
 
203
203
  :param str alias: The Disaster Recovery configuration name
@@ -197,7 +197,7 @@ def get_event_hub(event_hub_name: Optional[str] = None,
197
197
  Gets an Event Hubs description for the specified Event Hub.
198
198
  Azure REST API version: 2022-10-01-preview.
199
199
 
200
- Other available API versions: 2015-08-01, 2023-01-01-preview.
200
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
201
201
 
202
202
 
203
203
  :param str event_hub_name: The Event Hub name
@@ -236,7 +236,7 @@ def get_event_hub_output(event_hub_name: Optional[pulumi.Input[str]] = None,
236
236
  Gets an Event Hubs description for the specified Event Hub.
237
237
  Azure REST API version: 2022-10-01-preview.
238
238
 
239
- Other available API versions: 2015-08-01, 2023-01-01-preview.
239
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
240
240
 
241
241
 
242
242
  :param str event_hub_name: The Event Hub name
@@ -114,7 +114,7 @@ def get_event_hub_authorization_rule(authorization_rule_name: Optional[str] = No
114
114
  Gets an AuthorizationRule for an Event Hub by rule name.
115
115
  Azure REST API version: 2022-10-01-preview.
116
116
 
117
- Other available API versions: 2015-08-01, 2023-01-01-preview.
117
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
118
118
 
119
119
 
120
120
  :param str authorization_rule_name: The authorization rule name.
@@ -149,7 +149,7 @@ def get_event_hub_authorization_rule_output(authorization_rule_name: Optional[pu
149
149
  Gets an AuthorizationRule for an Event Hub by rule name.
150
150
  Azure REST API version: 2022-10-01-preview.
151
151
 
152
- Other available API versions: 2015-08-01, 2023-01-01-preview.
152
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
153
153
 
154
154
 
155
155
  :param str authorization_rule_name: The authorization rule name.
@@ -340,7 +340,7 @@ def get_namespace(namespace_name: Optional[str] = None,
340
340
  Gets the description of the specified namespace.
341
341
  Azure REST API version: 2022-10-01-preview.
342
342
 
343
- Other available API versions: 2015-08-01, 2023-01-01-preview.
343
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
344
344
 
345
345
 
346
346
  :param str namespace_name: The Namespace name
@@ -388,7 +388,7 @@ def get_namespace_output(namespace_name: Optional[pulumi.Input[str]] = None,
388
388
  Gets the description of the specified namespace.
389
389
  Azure REST API version: 2022-10-01-preview.
390
390
 
391
- Other available API versions: 2015-08-01, 2023-01-01-preview.
391
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
392
392
 
393
393
 
394
394
  :param str namespace_name: The Namespace name
@@ -113,7 +113,7 @@ def get_namespace_authorization_rule(authorization_rule_name: Optional[str] = No
113
113
  Gets an AuthorizationRule for a Namespace by rule name.
114
114
  Azure REST API version: 2022-10-01-preview.
115
115
 
116
- Other available API versions: 2015-08-01, 2023-01-01-preview.
116
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
117
117
 
118
118
 
119
119
  :param str authorization_rule_name: The authorization rule name.
@@ -145,7 +145,7 @@ def get_namespace_authorization_rule_output(authorization_rule_name: Optional[pu
145
145
  Gets an AuthorizationRule for a Namespace by rule name.
146
146
  Azure REST API version: 2022-10-01-preview.
147
147
 
148
- Other available API versions: 2015-08-01, 2023-01-01-preview.
148
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
149
149
 
150
150
 
151
151
  :param str authorization_rule_name: The authorization rule name.
@@ -160,7 +160,7 @@ def get_namespace_network_rule_set(namespace_name: Optional[str] = None,
160
160
  Gets NetworkRuleSet for a Namespace.
161
161
  Azure REST API version: 2022-10-01-preview.
162
162
 
163
- Other available API versions: 2023-01-01-preview.
163
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
164
164
 
165
165
 
166
166
  :param str namespace_name: The Namespace name
@@ -193,7 +193,7 @@ def get_namespace_network_rule_set_output(namespace_name: Optional[pulumi.Input[
193
193
  Gets NetworkRuleSet for a Namespace.
194
194
  Azure REST API version: 2022-10-01-preview.
195
195
 
196
- Other available API versions: 2023-01-01-preview.
196
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
197
197
 
198
198
 
199
199
  :param str namespace_name: The Namespace name
@@ -137,7 +137,7 @@ def get_private_endpoint_connection(namespace_name: Optional[str] = None,
137
137
  Gets a description for the specified Private Endpoint Connection name.
138
138
  Azure REST API version: 2022-10-01-preview.
139
139
 
140
- Other available API versions: 2023-01-01-preview.
140
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
141
141
 
142
142
 
143
143
  :param str namespace_name: The Namespace name
@@ -171,7 +171,7 @@ def get_private_endpoint_connection_output(namespace_name: Optional[pulumi.Input
171
171
  Gets a description for the specified Private Endpoint Connection name.
172
172
  Azure REST API version: 2022-10-01-preview.
173
173
 
174
- Other available API versions: 2023-01-01-preview.
174
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
175
175
 
176
176
 
177
177
  :param str namespace_name: The Namespace name
@@ -167,7 +167,7 @@ def get_schema_registry(namespace_name: Optional[str] = None,
167
167
  Gets the details of an EventHub schema group.
168
168
  Azure REST API version: 2022-10-01-preview.
169
169
 
170
- Other available API versions: 2023-01-01-preview.
170
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
171
171
 
172
172
 
173
173
  :param str namespace_name: The Namespace name
@@ -204,7 +204,7 @@ def get_schema_registry_output(namespace_name: Optional[pulumi.Input[str]] = Non
204
204
  Gets the details of an EventHub schema group.
205
205
  Azure REST API version: 2022-10-01-preview.
206
206
 
207
- Other available API versions: 2023-01-01-preview.
207
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
208
208
 
209
209
 
210
210
  :param str namespace_name: The Namespace name
@@ -125,7 +125,7 @@ def list_disaster_recovery_config_keys(alias: Optional[str] = None,
125
125
  Gets the primary and secondary connection strings for the Namespace.
126
126
  Azure REST API version: 2022-10-01-preview.
127
127
 
128
- Other available API versions: 2023-01-01-preview.
128
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
129
129
 
130
130
 
131
131
  :param str alias: The Disaster Recovery configuration name
@@ -161,7 +161,7 @@ def list_disaster_recovery_config_keys_output(alias: Optional[pulumi.Input[str]]
161
161
  Gets the primary and secondary connection strings for the Namespace.
162
162
  Azure REST API version: 2022-10-01-preview.
163
163
 
164
- Other available API versions: 2023-01-01-preview.
164
+ Other available API versions: 2023-01-01-preview, 2024-01-01.
165
165
 
166
166
 
167
167
  :param str alias: The Disaster Recovery configuration name
@@ -125,7 +125,7 @@ def list_event_hub_keys(authorization_rule_name: Optional[str] = None,
125
125
  Gets the ACS and SAS connection strings for the Event Hub.
126
126
  Azure REST API version: 2022-10-01-preview.
127
127
 
128
- Other available API versions: 2015-08-01, 2023-01-01-preview.
128
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
129
129
 
130
130
 
131
131
  :param str authorization_rule_name: The authorization rule name.
@@ -161,7 +161,7 @@ def list_event_hub_keys_output(authorization_rule_name: Optional[pulumi.Input[st
161
161
  Gets the ACS and SAS connection strings for the Event Hub.
162
162
  Azure REST API version: 2022-10-01-preview.
163
163
 
164
- Other available API versions: 2015-08-01, 2023-01-01-preview.
164
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
165
165
 
166
166
 
167
167
  :param str authorization_rule_name: The authorization rule name.
@@ -124,7 +124,7 @@ def list_namespace_keys(authorization_rule_name: Optional[str] = None,
124
124
  Gets the primary and secondary connection strings for the Namespace.
125
125
  Azure REST API version: 2022-10-01-preview.
126
126
 
127
- Other available API versions: 2015-08-01, 2023-01-01-preview.
127
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
128
128
 
129
129
 
130
130
  :param str authorization_rule_name: The authorization rule name.
@@ -157,7 +157,7 @@ def list_namespace_keys_output(authorization_rule_name: Optional[pulumi.Input[st
157
157
  Gets the primary and secondary connection strings for the Namespace.
158
158
  Azure REST API version: 2022-10-01-preview.
159
159
 
160
- Other available API versions: 2015-08-01, 2023-01-01-preview.
160
+ Other available API versions: 2015-08-01, 2023-01-01-preview, 2024-01-01.
161
161
 
162
162
 
163
163
  :param str authorization_rule_name: The authorization rule name.