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

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

Potentially problematic release.


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

Files changed (156) hide show
  1. pulumi_azure_native/__init__.py +54 -0
  2. pulumi_azure_native/config/__init__.pyi +83 -0
  3. pulumi_azure_native/eventhub/__init__.py +3 -0
  4. pulumi_azure_native/eventhub/application_group.py +3 -3
  5. pulumi_azure_native/eventhub/cluster.py +3 -3
  6. pulumi_azure_native/eventhub/consumer_group.py +3 -3
  7. pulumi_azure_native/eventhub/disaster_recovery_config.py +3 -3
  8. pulumi_azure_native/eventhub/event_hub.py +3 -3
  9. pulumi_azure_native/eventhub/event_hub_authorization_rule.py +3 -3
  10. pulumi_azure_native/eventhub/get_application_group.py +2 -2
  11. pulumi_azure_native/eventhub/get_cluster.py +2 -2
  12. pulumi_azure_native/eventhub/get_consumer_group.py +2 -2
  13. pulumi_azure_native/eventhub/get_disaster_recovery_config.py +2 -2
  14. pulumi_azure_native/eventhub/get_event_hub.py +2 -2
  15. pulumi_azure_native/eventhub/get_event_hub_authorization_rule.py +2 -2
  16. pulumi_azure_native/eventhub/get_namespace.py +2 -2
  17. pulumi_azure_native/eventhub/get_namespace_authorization_rule.py +2 -2
  18. pulumi_azure_native/eventhub/get_namespace_network_rule_set.py +2 -2
  19. pulumi_azure_native/eventhub/get_private_endpoint_connection.py +2 -2
  20. pulumi_azure_native/eventhub/get_schema_registry.py +2 -2
  21. pulumi_azure_native/eventhub/list_disaster_recovery_config_keys.py +2 -2
  22. pulumi_azure_native/eventhub/list_event_hub_keys.py +2 -2
  23. pulumi_azure_native/eventhub/list_namespace_keys.py +2 -2
  24. pulumi_azure_native/eventhub/namespace.py +3 -3
  25. pulumi_azure_native/eventhub/namespace_authorization_rule.py +3 -3
  26. pulumi_azure_native/eventhub/namespace_network_rule_set.py +3 -3
  27. pulumi_azure_native/eventhub/private_endpoint_connection.py +3 -3
  28. pulumi_azure_native/eventhub/schema_registry.py +3 -3
  29. pulumi_azure_native/eventhub/v20221001preview/application_group.py +1 -1
  30. pulumi_azure_native/eventhub/v20221001preview/cluster.py +1 -1
  31. pulumi_azure_native/eventhub/v20221001preview/consumer_group.py +1 -1
  32. pulumi_azure_native/eventhub/v20221001preview/disaster_recovery_config.py +1 -1
  33. pulumi_azure_native/eventhub/v20221001preview/event_hub.py +1 -1
  34. pulumi_azure_native/eventhub/v20221001preview/event_hub_authorization_rule.py +1 -1
  35. pulumi_azure_native/eventhub/v20221001preview/namespace.py +1 -1
  36. pulumi_azure_native/eventhub/v20221001preview/namespace_authorization_rule.py +1 -1
  37. pulumi_azure_native/eventhub/v20221001preview/namespace_network_rule_set.py +1 -1
  38. pulumi_azure_native/eventhub/v20221001preview/private_endpoint_connection.py +1 -1
  39. pulumi_azure_native/eventhub/v20221001preview/schema_registry.py +1 -1
  40. pulumi_azure_native/eventhub/v20230101preview/application_group.py +1 -1
  41. pulumi_azure_native/eventhub/v20230101preview/cluster.py +1 -1
  42. pulumi_azure_native/eventhub/v20230101preview/consumer_group.py +1 -1
  43. pulumi_azure_native/eventhub/v20230101preview/disaster_recovery_config.py +1 -1
  44. pulumi_azure_native/eventhub/v20230101preview/event_hub.py +1 -1
  45. pulumi_azure_native/eventhub/v20230101preview/event_hub_authorization_rule.py +1 -1
  46. pulumi_azure_native/eventhub/v20230101preview/namespace.py +1 -1
  47. pulumi_azure_native/eventhub/v20230101preview/namespace_authorization_rule.py +1 -1
  48. pulumi_azure_native/eventhub/v20230101preview/namespace_network_rule_set.py +1 -1
  49. pulumi_azure_native/eventhub/v20230101preview/private_endpoint_connection.py +1 -1
  50. pulumi_azure_native/eventhub/v20230101preview/schema_registry.py +1 -1
  51. pulumi_azure_native/eventhub/v20240101/__init__.py +35 -0
  52. pulumi_azure_native/eventhub/v20240101/_enums.py +223 -0
  53. pulumi_azure_native/eventhub/v20240101/_inputs.py +986 -0
  54. pulumi_azure_native/eventhub/v20240101/application_group.py +285 -0
  55. pulumi_azure_native/eventhub/v20240101/cluster.py +361 -0
  56. pulumi_azure_native/eventhub/v20240101/consumer_group.py +265 -0
  57. pulumi_azure_native/eventhub/v20240101/disaster_recovery_config.py +283 -0
  58. pulumi_azure_native/eventhub/v20240101/event_hub.py +372 -0
  59. pulumi_azure_native/eventhub/v20240101/event_hub_authorization_rule.py +247 -0
  60. pulumi_azure_native/eventhub/v20240101/get_application_group.py +175 -0
  61. pulumi_azure_native/eventhub/v20240101/get_cluster.py +248 -0
  62. pulumi_azure_native/eventhub/v20240101/get_consumer_group.py +180 -0
  63. pulumi_azure_native/eventhub/v20240101/get_disaster_recovery_config.py +201 -0
  64. pulumi_azure_native/eventhub/v20240101/get_event_hub.py +240 -0
  65. pulumi_azure_native/eventhub/v20240101/get_event_hub_authorization_rule.py +154 -0
  66. pulumi_azure_native/eventhub/v20240101/get_namespace.py +391 -0
  67. pulumi_azure_native/eventhub/v20240101/get_namespace_authorization_rule.py +149 -0
  68. pulumi_azure_native/eventhub/v20240101/get_namespace_network_rule_set.py +196 -0
  69. pulumi_azure_native/eventhub/v20240101/get_private_endpoint_connection.py +175 -0
  70. pulumi_azure_native/eventhub/v20240101/get_schema_registry.py +208 -0
  71. pulumi_azure_native/eventhub/v20240101/list_disaster_recovery_config_keys.py +166 -0
  72. pulumi_azure_native/eventhub/v20240101/list_event_hub_keys.py +166 -0
  73. pulumi_azure_native/eventhub/v20240101/list_namespace_keys.py +161 -0
  74. pulumi_azure_native/eventhub/v20240101/namespace.py +668 -0
  75. pulumi_azure_native/eventhub/v20240101/namespace_authorization_rule.py +226 -0
  76. pulumi_azure_native/eventhub/v20240101/namespace_network_rule_set.py +326 -0
  77. pulumi_azure_native/eventhub/v20240101/outputs.py +1336 -0
  78. pulumi_azure_native/eventhub/v20240101/private_endpoint_connection.py +284 -0
  79. pulumi_azure_native/eventhub/v20240101/schema_registry.py +297 -0
  80. pulumi_azure_native/healthcareapis/__init__.py +3 -0
  81. pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
  82. pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
  83. pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
  84. pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
  85. pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
  86. pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
  87. pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
  88. pulumi_azure_native/healthcareapis/get_service.py +2 -2
  89. pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
  90. pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
  91. pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
  92. pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
  93. pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
  94. pulumi_azure_native/healthcareapis/service.py +3 -3
  95. pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
  96. pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
  97. pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
  98. pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
  99. pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
  100. pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
  101. pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
  102. pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
  103. pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
  104. pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
  105. pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
  106. pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
  107. pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
  108. pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
  109. pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
  110. pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
  111. pulumi_azure_native/healthcareapis/v20231101/__init__.py +26 -0
  112. pulumi_azure_native/healthcareapis/v20231101/_enums.py +85 -0
  113. pulumi_azure_native/healthcareapis/v20231101/_inputs.py +1277 -0
  114. pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +402 -0
  115. pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +585 -0
  116. pulumi_azure_native/healthcareapis/v20231101/get_dicom_service.py +279 -0
  117. pulumi_azure_native/healthcareapis/v20231101/get_fhir_service.py +344 -0
  118. pulumi_azure_native/healthcareapis/v20231101/get_iot_connector.py +214 -0
  119. pulumi_azure_native/healthcareapis/v20231101/get_iot_connector_fhir_destination.py +193 -0
  120. pulumi_azure_native/healthcareapis/v20231101/get_private_endpoint_connection.py +162 -0
  121. pulumi_azure_native/healthcareapis/v20231101/get_service.py +196 -0
  122. pulumi_azure_native/healthcareapis/v20231101/get_workspace.py +170 -0
  123. pulumi_azure_native/healthcareapis/v20231101/get_workspace_private_endpoint_connection.py +162 -0
  124. pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +352 -0
  125. pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +337 -0
  126. pulumi_azure_native/healthcareapis/v20231101/outputs.py +1951 -0
  127. pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +237 -0
  128. pulumi_azure_native/healthcareapis/v20231101/service.py +322 -0
  129. pulumi_azure_native/healthcareapis/v20231101/workspace.py +242 -0
  130. pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +237 -0
  131. pulumi_azure_native/healthcareapis/workspace.py +3 -3
  132. pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
  133. pulumi_azure_native/offazurespringboot/__init__.py +22 -0
  134. pulumi_azure_native/offazurespringboot/_enums.py +22 -0
  135. pulumi_azure_native/offazurespringboot/_inputs.py +402 -0
  136. pulumi_azure_native/offazurespringboot/get_springbootserver.py +151 -0
  137. pulumi_azure_native/offazurespringboot/get_springbootsite.py +172 -0
  138. pulumi_azure_native/offazurespringboot/outputs.py +509 -0
  139. pulumi_azure_native/offazurespringboot/springbootserver.py +247 -0
  140. pulumi_azure_native/offazurespringboot/springbootsite.py +284 -0
  141. pulumi_azure_native/offazurespringboot/v20230101preview/__init__.py +14 -0
  142. pulumi_azure_native/offazurespringboot/v20230101preview/_enums.py +22 -0
  143. pulumi_azure_native/offazurespringboot/v20230101preview/_inputs.py +402 -0
  144. pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootserver.py +149 -0
  145. pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootsite.py +170 -0
  146. pulumi_azure_native/offazurespringboot/v20230101preview/outputs.py +509 -0
  147. pulumi_azure_native/offazurespringboot/v20230101preview/springbootserver.py +245 -0
  148. pulumi_azure_native/offazurespringboot/v20230101preview/springbootsite.py +282 -0
  149. pulumi_azure_native/security/alerts_suppression_rule.py +4 -4
  150. pulumi_azure_native/security/get_alerts_suppression_rule.py +1 -1
  151. pulumi_azure_native/security/v20190101preview/alerts_suppression_rule.py +4 -4
  152. pulumi_azure_native/security/v20190101preview/get_alerts_suppression_rule.py +1 -1
  153. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/METADATA +1 -1
  154. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/RECORD +156 -90
  155. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/WHEEL +0 -0
  156. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,668 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+ from ._enums import *
13
+ from ._inputs import *
14
+
15
+ __all__ = ['NamespaceArgs', 'Namespace']
16
+
17
+ @pulumi.input_type
18
+ class NamespaceArgs:
19
+ def __init__(__self__, *,
20
+ resource_group_name: pulumi.Input[str],
21
+ alternate_name: Optional[pulumi.Input[str]] = None,
22
+ cluster_arm_id: Optional[pulumi.Input[str]] = None,
23
+ disable_local_auth: Optional[pulumi.Input[bool]] = None,
24
+ encryption: Optional[pulumi.Input['EncryptionArgs']] = None,
25
+ identity: Optional[pulumi.Input['IdentityArgs']] = None,
26
+ is_auto_inflate_enabled: Optional[pulumi.Input[bool]] = None,
27
+ kafka_enabled: Optional[pulumi.Input[bool]] = None,
28
+ location: Optional[pulumi.Input[str]] = None,
29
+ maximum_throughput_units: Optional[pulumi.Input[int]] = None,
30
+ minimum_tls_version: Optional[pulumi.Input[Union[str, 'TlsVersion']]] = None,
31
+ namespace_name: Optional[pulumi.Input[str]] = None,
32
+ private_endpoint_connections: Optional[pulumi.Input[Sequence[pulumi.Input['PrivateEndpointConnectionArgs']]]] = None,
33
+ public_network_access: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]] = None,
34
+ sku: Optional[pulumi.Input['SkuArgs']] = None,
35
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
36
+ zone_redundant: Optional[pulumi.Input[bool]] = None):
37
+ """
38
+ The set of arguments for constructing a Namespace resource.
39
+ :param pulumi.Input[str] resource_group_name: Name of the resource group within the azure subscription.
40
+ :param pulumi.Input[str] alternate_name: Alternate name specified when alias and namespace names are same.
41
+ :param pulumi.Input[str] cluster_arm_id: Cluster ARM ID of the Namespace.
42
+ :param pulumi.Input[bool] disable_local_auth: This property disables SAS authentication for the Event Hubs namespace.
43
+ :param pulumi.Input['EncryptionArgs'] encryption: Properties of BYOK Encryption description
44
+ :param pulumi.Input['IdentityArgs'] identity: Properties of BYOK Identity description
45
+ :param pulumi.Input[bool] is_auto_inflate_enabled: Value that indicates whether AutoInflate is enabled for eventhub namespace.
46
+ :param pulumi.Input[bool] kafka_enabled: Value that indicates whether Kafka is enabled for eventhub namespace.
47
+ :param pulumi.Input[str] location: Resource location.
48
+ :param pulumi.Input[int] maximum_throughput_units: Upper limit of throughput units when AutoInflate is enabled, value should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)
49
+ :param pulumi.Input[Union[str, 'TlsVersion']] minimum_tls_version: The minimum TLS version for the cluster to support, e.g. '1.2'
50
+ :param pulumi.Input[str] namespace_name: The Namespace name
51
+ :param pulumi.Input[Sequence[pulumi.Input['PrivateEndpointConnectionArgs']]] private_endpoint_connections: List of private endpoint connections.
52
+ These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
53
+ :param pulumi.Input[Union[str, 'PublicNetworkAccess']] public_network_access: This determines if traffic is allowed over public network. By default it is enabled.
54
+ :param pulumi.Input['SkuArgs'] sku: Properties of sku resource
55
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
56
+ :param pulumi.Input[bool] zone_redundant: Enabling this property creates a Standard Event Hubs Namespace in regions supported availability zones.
57
+ """
58
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
59
+ if alternate_name is not None:
60
+ pulumi.set(__self__, "alternate_name", alternate_name)
61
+ if cluster_arm_id is not None:
62
+ pulumi.set(__self__, "cluster_arm_id", cluster_arm_id)
63
+ if disable_local_auth is not None:
64
+ pulumi.set(__self__, "disable_local_auth", disable_local_auth)
65
+ if encryption is not None:
66
+ pulumi.set(__self__, "encryption", encryption)
67
+ if identity is not None:
68
+ pulumi.set(__self__, "identity", identity)
69
+ if is_auto_inflate_enabled is not None:
70
+ pulumi.set(__self__, "is_auto_inflate_enabled", is_auto_inflate_enabled)
71
+ if kafka_enabled is not None:
72
+ pulumi.set(__self__, "kafka_enabled", kafka_enabled)
73
+ if location is not None:
74
+ pulumi.set(__self__, "location", location)
75
+ if maximum_throughput_units is not None:
76
+ pulumi.set(__self__, "maximum_throughput_units", maximum_throughput_units)
77
+ if minimum_tls_version is not None:
78
+ pulumi.set(__self__, "minimum_tls_version", minimum_tls_version)
79
+ if namespace_name is not None:
80
+ pulumi.set(__self__, "namespace_name", namespace_name)
81
+ if private_endpoint_connections is not None:
82
+ pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
83
+ if public_network_access is None:
84
+ public_network_access = 'Enabled'
85
+ if public_network_access is not None:
86
+ pulumi.set(__self__, "public_network_access", public_network_access)
87
+ if sku is not None:
88
+ pulumi.set(__self__, "sku", sku)
89
+ if tags is not None:
90
+ pulumi.set(__self__, "tags", tags)
91
+ if zone_redundant is not None:
92
+ pulumi.set(__self__, "zone_redundant", zone_redundant)
93
+
94
+ @property
95
+ @pulumi.getter(name="resourceGroupName")
96
+ def resource_group_name(self) -> pulumi.Input[str]:
97
+ """
98
+ Name of the resource group within the azure subscription.
99
+ """
100
+ return pulumi.get(self, "resource_group_name")
101
+
102
+ @resource_group_name.setter
103
+ def resource_group_name(self, value: pulumi.Input[str]):
104
+ pulumi.set(self, "resource_group_name", value)
105
+
106
+ @property
107
+ @pulumi.getter(name="alternateName")
108
+ def alternate_name(self) -> Optional[pulumi.Input[str]]:
109
+ """
110
+ Alternate name specified when alias and namespace names are same.
111
+ """
112
+ return pulumi.get(self, "alternate_name")
113
+
114
+ @alternate_name.setter
115
+ def alternate_name(self, value: Optional[pulumi.Input[str]]):
116
+ pulumi.set(self, "alternate_name", value)
117
+
118
+ @property
119
+ @pulumi.getter(name="clusterArmId")
120
+ def cluster_arm_id(self) -> Optional[pulumi.Input[str]]:
121
+ """
122
+ Cluster ARM ID of the Namespace.
123
+ """
124
+ return pulumi.get(self, "cluster_arm_id")
125
+
126
+ @cluster_arm_id.setter
127
+ def cluster_arm_id(self, value: Optional[pulumi.Input[str]]):
128
+ pulumi.set(self, "cluster_arm_id", value)
129
+
130
+ @property
131
+ @pulumi.getter(name="disableLocalAuth")
132
+ def disable_local_auth(self) -> Optional[pulumi.Input[bool]]:
133
+ """
134
+ This property disables SAS authentication for the Event Hubs namespace.
135
+ """
136
+ return pulumi.get(self, "disable_local_auth")
137
+
138
+ @disable_local_auth.setter
139
+ def disable_local_auth(self, value: Optional[pulumi.Input[bool]]):
140
+ pulumi.set(self, "disable_local_auth", value)
141
+
142
+ @property
143
+ @pulumi.getter
144
+ def encryption(self) -> Optional[pulumi.Input['EncryptionArgs']]:
145
+ """
146
+ Properties of BYOK Encryption description
147
+ """
148
+ return pulumi.get(self, "encryption")
149
+
150
+ @encryption.setter
151
+ def encryption(self, value: Optional[pulumi.Input['EncryptionArgs']]):
152
+ pulumi.set(self, "encryption", value)
153
+
154
+ @property
155
+ @pulumi.getter
156
+ def identity(self) -> Optional[pulumi.Input['IdentityArgs']]:
157
+ """
158
+ Properties of BYOK Identity description
159
+ """
160
+ return pulumi.get(self, "identity")
161
+
162
+ @identity.setter
163
+ def identity(self, value: Optional[pulumi.Input['IdentityArgs']]):
164
+ pulumi.set(self, "identity", value)
165
+
166
+ @property
167
+ @pulumi.getter(name="isAutoInflateEnabled")
168
+ def is_auto_inflate_enabled(self) -> Optional[pulumi.Input[bool]]:
169
+ """
170
+ Value that indicates whether AutoInflate is enabled for eventhub namespace.
171
+ """
172
+ return pulumi.get(self, "is_auto_inflate_enabled")
173
+
174
+ @is_auto_inflate_enabled.setter
175
+ def is_auto_inflate_enabled(self, value: Optional[pulumi.Input[bool]]):
176
+ pulumi.set(self, "is_auto_inflate_enabled", value)
177
+
178
+ @property
179
+ @pulumi.getter(name="kafkaEnabled")
180
+ def kafka_enabled(self) -> Optional[pulumi.Input[bool]]:
181
+ """
182
+ Value that indicates whether Kafka is enabled for eventhub namespace.
183
+ """
184
+ return pulumi.get(self, "kafka_enabled")
185
+
186
+ @kafka_enabled.setter
187
+ def kafka_enabled(self, value: Optional[pulumi.Input[bool]]):
188
+ pulumi.set(self, "kafka_enabled", value)
189
+
190
+ @property
191
+ @pulumi.getter
192
+ def location(self) -> Optional[pulumi.Input[str]]:
193
+ """
194
+ Resource location.
195
+ """
196
+ return pulumi.get(self, "location")
197
+
198
+ @location.setter
199
+ def location(self, value: Optional[pulumi.Input[str]]):
200
+ pulumi.set(self, "location", value)
201
+
202
+ @property
203
+ @pulumi.getter(name="maximumThroughputUnits")
204
+ def maximum_throughput_units(self) -> Optional[pulumi.Input[int]]:
205
+ """
206
+ Upper limit of throughput units when AutoInflate is enabled, value should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)
207
+ """
208
+ return pulumi.get(self, "maximum_throughput_units")
209
+
210
+ @maximum_throughput_units.setter
211
+ def maximum_throughput_units(self, value: Optional[pulumi.Input[int]]):
212
+ pulumi.set(self, "maximum_throughput_units", value)
213
+
214
+ @property
215
+ @pulumi.getter(name="minimumTlsVersion")
216
+ def minimum_tls_version(self) -> Optional[pulumi.Input[Union[str, 'TlsVersion']]]:
217
+ """
218
+ The minimum TLS version for the cluster to support, e.g. '1.2'
219
+ """
220
+ return pulumi.get(self, "minimum_tls_version")
221
+
222
+ @minimum_tls_version.setter
223
+ def minimum_tls_version(self, value: Optional[pulumi.Input[Union[str, 'TlsVersion']]]):
224
+ pulumi.set(self, "minimum_tls_version", value)
225
+
226
+ @property
227
+ @pulumi.getter(name="namespaceName")
228
+ def namespace_name(self) -> Optional[pulumi.Input[str]]:
229
+ """
230
+ The Namespace name
231
+ """
232
+ return pulumi.get(self, "namespace_name")
233
+
234
+ @namespace_name.setter
235
+ def namespace_name(self, value: Optional[pulumi.Input[str]]):
236
+ pulumi.set(self, "namespace_name", value)
237
+
238
+ @property
239
+ @pulumi.getter(name="privateEndpointConnections")
240
+ def private_endpoint_connections(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PrivateEndpointConnectionArgs']]]]:
241
+ """
242
+ List of private endpoint connections.
243
+ These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
244
+ """
245
+ return pulumi.get(self, "private_endpoint_connections")
246
+
247
+ @private_endpoint_connections.setter
248
+ def private_endpoint_connections(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PrivateEndpointConnectionArgs']]]]):
249
+ pulumi.set(self, "private_endpoint_connections", value)
250
+
251
+ @property
252
+ @pulumi.getter(name="publicNetworkAccess")
253
+ def public_network_access(self) -> Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]]:
254
+ """
255
+ This determines if traffic is allowed over public network. By default it is enabled.
256
+ """
257
+ return pulumi.get(self, "public_network_access")
258
+
259
+ @public_network_access.setter
260
+ def public_network_access(self, value: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]]):
261
+ pulumi.set(self, "public_network_access", value)
262
+
263
+ @property
264
+ @pulumi.getter
265
+ def sku(self) -> Optional[pulumi.Input['SkuArgs']]:
266
+ """
267
+ Properties of sku resource
268
+ """
269
+ return pulumi.get(self, "sku")
270
+
271
+ @sku.setter
272
+ def sku(self, value: Optional[pulumi.Input['SkuArgs']]):
273
+ pulumi.set(self, "sku", value)
274
+
275
+ @property
276
+ @pulumi.getter
277
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
278
+ """
279
+ Resource tags.
280
+ """
281
+ return pulumi.get(self, "tags")
282
+
283
+ @tags.setter
284
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
285
+ pulumi.set(self, "tags", value)
286
+
287
+ @property
288
+ @pulumi.getter(name="zoneRedundant")
289
+ def zone_redundant(self) -> Optional[pulumi.Input[bool]]:
290
+ """
291
+ Enabling this property creates a Standard Event Hubs Namespace in regions supported availability zones.
292
+ """
293
+ return pulumi.get(self, "zone_redundant")
294
+
295
+ @zone_redundant.setter
296
+ def zone_redundant(self, value: Optional[pulumi.Input[bool]]):
297
+ pulumi.set(self, "zone_redundant", value)
298
+
299
+
300
+ class Namespace(pulumi.CustomResource):
301
+ @overload
302
+ def __init__(__self__,
303
+ resource_name: str,
304
+ opts: Optional[pulumi.ResourceOptions] = None,
305
+ alternate_name: Optional[pulumi.Input[str]] = None,
306
+ cluster_arm_id: Optional[pulumi.Input[str]] = None,
307
+ disable_local_auth: Optional[pulumi.Input[bool]] = None,
308
+ encryption: Optional[pulumi.Input[pulumi.InputType['EncryptionArgs']]] = None,
309
+ identity: Optional[pulumi.Input[pulumi.InputType['IdentityArgs']]] = None,
310
+ is_auto_inflate_enabled: Optional[pulumi.Input[bool]] = None,
311
+ kafka_enabled: Optional[pulumi.Input[bool]] = None,
312
+ location: Optional[pulumi.Input[str]] = None,
313
+ maximum_throughput_units: Optional[pulumi.Input[int]] = None,
314
+ minimum_tls_version: Optional[pulumi.Input[Union[str, 'TlsVersion']]] = None,
315
+ namespace_name: Optional[pulumi.Input[str]] = None,
316
+ private_endpoint_connections: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PrivateEndpointConnectionArgs']]]]] = None,
317
+ public_network_access: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]] = None,
318
+ resource_group_name: Optional[pulumi.Input[str]] = None,
319
+ sku: Optional[pulumi.Input[pulumi.InputType['SkuArgs']]] = None,
320
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
321
+ zone_redundant: Optional[pulumi.Input[bool]] = None,
322
+ __props__=None):
323
+ """
324
+ Single Namespace item in List or Get Operation
325
+
326
+ :param str resource_name: The name of the resource.
327
+ :param pulumi.ResourceOptions opts: Options for the resource.
328
+ :param pulumi.Input[str] alternate_name: Alternate name specified when alias and namespace names are same.
329
+ :param pulumi.Input[str] cluster_arm_id: Cluster ARM ID of the Namespace.
330
+ :param pulumi.Input[bool] disable_local_auth: This property disables SAS authentication for the Event Hubs namespace.
331
+ :param pulumi.Input[pulumi.InputType['EncryptionArgs']] encryption: Properties of BYOK Encryption description
332
+ :param pulumi.Input[pulumi.InputType['IdentityArgs']] identity: Properties of BYOK Identity description
333
+ :param pulumi.Input[bool] is_auto_inflate_enabled: Value that indicates whether AutoInflate is enabled for eventhub namespace.
334
+ :param pulumi.Input[bool] kafka_enabled: Value that indicates whether Kafka is enabled for eventhub namespace.
335
+ :param pulumi.Input[str] location: Resource location.
336
+ :param pulumi.Input[int] maximum_throughput_units: Upper limit of throughput units when AutoInflate is enabled, value should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)
337
+ :param pulumi.Input[Union[str, 'TlsVersion']] minimum_tls_version: The minimum TLS version for the cluster to support, e.g. '1.2'
338
+ :param pulumi.Input[str] namespace_name: The Namespace name
339
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PrivateEndpointConnectionArgs']]]] private_endpoint_connections: List of private endpoint connections.
340
+ These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
341
+ :param pulumi.Input[Union[str, 'PublicNetworkAccess']] public_network_access: This determines if traffic is allowed over public network. By default it is enabled.
342
+ :param pulumi.Input[str] resource_group_name: Name of the resource group within the azure subscription.
343
+ :param pulumi.Input[pulumi.InputType['SkuArgs']] sku: Properties of sku resource
344
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
345
+ :param pulumi.Input[bool] zone_redundant: Enabling this property creates a Standard Event Hubs Namespace in regions supported availability zones.
346
+ """
347
+ ...
348
+ @overload
349
+ def __init__(__self__,
350
+ resource_name: str,
351
+ args: NamespaceArgs,
352
+ opts: Optional[pulumi.ResourceOptions] = None):
353
+ """
354
+ Single Namespace item in List or Get Operation
355
+
356
+ :param str resource_name: The name of the resource.
357
+ :param NamespaceArgs args: The arguments to use to populate this resource's properties.
358
+ :param pulumi.ResourceOptions opts: Options for the resource.
359
+ """
360
+ ...
361
+ def __init__(__self__, resource_name: str, *args, **kwargs):
362
+ resource_args, opts = _utilities.get_resource_args_opts(NamespaceArgs, pulumi.ResourceOptions, *args, **kwargs)
363
+ if resource_args is not None:
364
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
365
+ else:
366
+ __self__._internal_init(resource_name, *args, **kwargs)
367
+
368
+ def _internal_init(__self__,
369
+ resource_name: str,
370
+ opts: Optional[pulumi.ResourceOptions] = None,
371
+ alternate_name: Optional[pulumi.Input[str]] = None,
372
+ cluster_arm_id: Optional[pulumi.Input[str]] = None,
373
+ disable_local_auth: Optional[pulumi.Input[bool]] = None,
374
+ encryption: Optional[pulumi.Input[pulumi.InputType['EncryptionArgs']]] = None,
375
+ identity: Optional[pulumi.Input[pulumi.InputType['IdentityArgs']]] = None,
376
+ is_auto_inflate_enabled: Optional[pulumi.Input[bool]] = None,
377
+ kafka_enabled: Optional[pulumi.Input[bool]] = None,
378
+ location: Optional[pulumi.Input[str]] = None,
379
+ maximum_throughput_units: Optional[pulumi.Input[int]] = None,
380
+ minimum_tls_version: Optional[pulumi.Input[Union[str, 'TlsVersion']]] = None,
381
+ namespace_name: Optional[pulumi.Input[str]] = None,
382
+ private_endpoint_connections: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PrivateEndpointConnectionArgs']]]]] = None,
383
+ public_network_access: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]] = None,
384
+ resource_group_name: Optional[pulumi.Input[str]] = None,
385
+ sku: Optional[pulumi.Input[pulumi.InputType['SkuArgs']]] = None,
386
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
387
+ zone_redundant: Optional[pulumi.Input[bool]] = None,
388
+ __props__=None):
389
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
390
+ if not isinstance(opts, pulumi.ResourceOptions):
391
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
392
+ if opts.id is None:
393
+ if __props__ is not None:
394
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
395
+ __props__ = NamespaceArgs.__new__(NamespaceArgs)
396
+
397
+ __props__.__dict__["alternate_name"] = alternate_name
398
+ __props__.__dict__["cluster_arm_id"] = cluster_arm_id
399
+ __props__.__dict__["disable_local_auth"] = disable_local_auth
400
+ __props__.__dict__["encryption"] = encryption
401
+ __props__.__dict__["identity"] = identity
402
+ __props__.__dict__["is_auto_inflate_enabled"] = is_auto_inflate_enabled
403
+ __props__.__dict__["kafka_enabled"] = kafka_enabled
404
+ __props__.__dict__["location"] = location
405
+ __props__.__dict__["maximum_throughput_units"] = maximum_throughput_units
406
+ __props__.__dict__["minimum_tls_version"] = minimum_tls_version
407
+ __props__.__dict__["namespace_name"] = namespace_name
408
+ __props__.__dict__["private_endpoint_connections"] = private_endpoint_connections
409
+ if public_network_access is None:
410
+ public_network_access = 'Enabled'
411
+ __props__.__dict__["public_network_access"] = public_network_access
412
+ if resource_group_name is None and not opts.urn:
413
+ raise TypeError("Missing required property 'resource_group_name'")
414
+ __props__.__dict__["resource_group_name"] = resource_group_name
415
+ __props__.__dict__["sku"] = sku
416
+ __props__.__dict__["tags"] = tags
417
+ __props__.__dict__["zone_redundant"] = zone_redundant
418
+ __props__.__dict__["created_at"] = None
419
+ __props__.__dict__["metric_id"] = None
420
+ __props__.__dict__["name"] = None
421
+ __props__.__dict__["provisioning_state"] = None
422
+ __props__.__dict__["service_bus_endpoint"] = None
423
+ __props__.__dict__["status"] = None
424
+ __props__.__dict__["system_data"] = None
425
+ __props__.__dict__["type"] = None
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/v20221001preview:Namespace"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:Namespace")])
428
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
429
+ super(Namespace, __self__).__init__(
430
+ 'azure-native:eventhub/v20240101:Namespace',
431
+ resource_name,
432
+ __props__,
433
+ opts)
434
+
435
+ @staticmethod
436
+ def get(resource_name: str,
437
+ id: pulumi.Input[str],
438
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'Namespace':
439
+ """
440
+ Get an existing Namespace resource's state with the given name, id, and optional extra
441
+ properties used to qualify the lookup.
442
+
443
+ :param str resource_name: The unique name of the resulting resource.
444
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
445
+ :param pulumi.ResourceOptions opts: Options for the resource.
446
+ """
447
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
448
+
449
+ __props__ = NamespaceArgs.__new__(NamespaceArgs)
450
+
451
+ __props__.__dict__["alternate_name"] = None
452
+ __props__.__dict__["cluster_arm_id"] = None
453
+ __props__.__dict__["created_at"] = None
454
+ __props__.__dict__["disable_local_auth"] = None
455
+ __props__.__dict__["encryption"] = None
456
+ __props__.__dict__["identity"] = None
457
+ __props__.__dict__["is_auto_inflate_enabled"] = None
458
+ __props__.__dict__["kafka_enabled"] = None
459
+ __props__.__dict__["location"] = None
460
+ __props__.__dict__["maximum_throughput_units"] = None
461
+ __props__.__dict__["metric_id"] = None
462
+ __props__.__dict__["minimum_tls_version"] = None
463
+ __props__.__dict__["name"] = None
464
+ __props__.__dict__["private_endpoint_connections"] = None
465
+ __props__.__dict__["provisioning_state"] = None
466
+ __props__.__dict__["public_network_access"] = None
467
+ __props__.__dict__["service_bus_endpoint"] = None
468
+ __props__.__dict__["sku"] = None
469
+ __props__.__dict__["status"] = None
470
+ __props__.__dict__["system_data"] = None
471
+ __props__.__dict__["tags"] = None
472
+ __props__.__dict__["type"] = None
473
+ __props__.__dict__["updated_at"] = None
474
+ __props__.__dict__["zone_redundant"] = None
475
+ return Namespace(resource_name, opts=opts, __props__=__props__)
476
+
477
+ @property
478
+ @pulumi.getter(name="alternateName")
479
+ def alternate_name(self) -> pulumi.Output[Optional[str]]:
480
+ """
481
+ Alternate name specified when alias and namespace names are same.
482
+ """
483
+ return pulumi.get(self, "alternate_name")
484
+
485
+ @property
486
+ @pulumi.getter(name="clusterArmId")
487
+ def cluster_arm_id(self) -> pulumi.Output[Optional[str]]:
488
+ """
489
+ Cluster ARM ID of the Namespace.
490
+ """
491
+ return pulumi.get(self, "cluster_arm_id")
492
+
493
+ @property
494
+ @pulumi.getter(name="createdAt")
495
+ def created_at(self) -> pulumi.Output[str]:
496
+ """
497
+ The time the Namespace was created.
498
+ """
499
+ return pulumi.get(self, "created_at")
500
+
501
+ @property
502
+ @pulumi.getter(name="disableLocalAuth")
503
+ def disable_local_auth(self) -> pulumi.Output[Optional[bool]]:
504
+ """
505
+ This property disables SAS authentication for the Event Hubs namespace.
506
+ """
507
+ return pulumi.get(self, "disable_local_auth")
508
+
509
+ @property
510
+ @pulumi.getter
511
+ def encryption(self) -> pulumi.Output[Optional['outputs.EncryptionResponse']]:
512
+ """
513
+ Properties of BYOK Encryption description
514
+ """
515
+ return pulumi.get(self, "encryption")
516
+
517
+ @property
518
+ @pulumi.getter
519
+ def identity(self) -> pulumi.Output[Optional['outputs.IdentityResponse']]:
520
+ """
521
+ Properties of BYOK Identity description
522
+ """
523
+ return pulumi.get(self, "identity")
524
+
525
+ @property
526
+ @pulumi.getter(name="isAutoInflateEnabled")
527
+ def is_auto_inflate_enabled(self) -> pulumi.Output[Optional[bool]]:
528
+ """
529
+ Value that indicates whether AutoInflate is enabled for eventhub namespace.
530
+ """
531
+ return pulumi.get(self, "is_auto_inflate_enabled")
532
+
533
+ @property
534
+ @pulumi.getter(name="kafkaEnabled")
535
+ def kafka_enabled(self) -> pulumi.Output[Optional[bool]]:
536
+ """
537
+ Value that indicates whether Kafka is enabled for eventhub namespace.
538
+ """
539
+ return pulumi.get(self, "kafka_enabled")
540
+
541
+ @property
542
+ @pulumi.getter
543
+ def location(self) -> pulumi.Output[Optional[str]]:
544
+ """
545
+ Resource location.
546
+ """
547
+ return pulumi.get(self, "location")
548
+
549
+ @property
550
+ @pulumi.getter(name="maximumThroughputUnits")
551
+ def maximum_throughput_units(self) -> pulumi.Output[Optional[int]]:
552
+ """
553
+ Upper limit of throughput units when AutoInflate is enabled, value should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)
554
+ """
555
+ return pulumi.get(self, "maximum_throughput_units")
556
+
557
+ @property
558
+ @pulumi.getter(name="metricId")
559
+ def metric_id(self) -> pulumi.Output[str]:
560
+ """
561
+ Identifier for Azure Insights metrics.
562
+ """
563
+ return pulumi.get(self, "metric_id")
564
+
565
+ @property
566
+ @pulumi.getter(name="minimumTlsVersion")
567
+ def minimum_tls_version(self) -> pulumi.Output[Optional[str]]:
568
+ """
569
+ The minimum TLS version for the cluster to support, e.g. '1.2'
570
+ """
571
+ return pulumi.get(self, "minimum_tls_version")
572
+
573
+ @property
574
+ @pulumi.getter
575
+ def name(self) -> pulumi.Output[str]:
576
+ """
577
+ The name of the resource
578
+ """
579
+ return pulumi.get(self, "name")
580
+
581
+ @property
582
+ @pulumi.getter(name="privateEndpointConnections")
583
+ def private_endpoint_connections(self) -> pulumi.Output[Optional[Sequence['outputs.PrivateEndpointConnectionResponse']]]:
584
+ """
585
+ List of private endpoint connections.
586
+ """
587
+ return pulumi.get(self, "private_endpoint_connections")
588
+
589
+ @property
590
+ @pulumi.getter(name="provisioningState")
591
+ def provisioning_state(self) -> pulumi.Output[str]:
592
+ """
593
+ Provisioning state of the Namespace.
594
+ """
595
+ return pulumi.get(self, "provisioning_state")
596
+
597
+ @property
598
+ @pulumi.getter(name="publicNetworkAccess")
599
+ def public_network_access(self) -> pulumi.Output[Optional[str]]:
600
+ """
601
+ This determines if traffic is allowed over public network. By default it is enabled.
602
+ """
603
+ return pulumi.get(self, "public_network_access")
604
+
605
+ @property
606
+ @pulumi.getter(name="serviceBusEndpoint")
607
+ def service_bus_endpoint(self) -> pulumi.Output[str]:
608
+ """
609
+ Endpoint you can use to perform Service Bus operations.
610
+ """
611
+ return pulumi.get(self, "service_bus_endpoint")
612
+
613
+ @property
614
+ @pulumi.getter
615
+ def sku(self) -> pulumi.Output[Optional['outputs.SkuResponse']]:
616
+ """
617
+ Properties of sku resource
618
+ """
619
+ return pulumi.get(self, "sku")
620
+
621
+ @property
622
+ @pulumi.getter
623
+ def status(self) -> pulumi.Output[str]:
624
+ """
625
+ Status of the Namespace.
626
+ """
627
+ return pulumi.get(self, "status")
628
+
629
+ @property
630
+ @pulumi.getter(name="systemData")
631
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
632
+ """
633
+ The system meta data relating to this resource.
634
+ """
635
+ return pulumi.get(self, "system_data")
636
+
637
+ @property
638
+ @pulumi.getter
639
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
640
+ """
641
+ Resource tags.
642
+ """
643
+ return pulumi.get(self, "tags")
644
+
645
+ @property
646
+ @pulumi.getter
647
+ def type(self) -> pulumi.Output[str]:
648
+ """
649
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
650
+ """
651
+ return pulumi.get(self, "type")
652
+
653
+ @property
654
+ @pulumi.getter(name="updatedAt")
655
+ def updated_at(self) -> pulumi.Output[str]:
656
+ """
657
+ The time the Namespace was updated.
658
+ """
659
+ return pulumi.get(self, "updated_at")
660
+
661
+ @property
662
+ @pulumi.getter(name="zoneRedundant")
663
+ def zone_redundant(self) -> pulumi.Output[Optional[bool]]:
664
+ """
665
+ Enabling this property creates a Standard Event Hubs Namespace in regions supported availability zones.
666
+ """
667
+ return pulumi.get(self, "zone_redundant")
668
+