pulumi-azure 6.27.0a1758695020__py3-none-any.whl → 6.27.0a1759511969__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 might be problematic. Click here for more details.

Files changed (169) hide show
  1. pulumi_azure/__init__.py +32 -0
  2. pulumi_azure/apimanagement/backend.py +2 -2
  3. pulumi_azure/appservice/_inputs.py +78 -6
  4. pulumi_azure/appservice/app_flex_consumption.py +61 -0
  5. pulumi_azure/appservice/outputs.py +52 -4
  6. pulumi_azure/appservice/service_plan.py +14 -14
  7. pulumi_azure/billing/account_cost_management_export.py +2 -2
  8. pulumi_azure/cdn/_inputs.py +57 -95
  9. pulumi_azure/cdn/frontdoor_firewall_policy.py +34 -107
  10. pulumi_azure/cdn/frontdoor_profile.py +87 -2
  11. pulumi_azure/cdn/frontdoor_security_policy.py +7 -7
  12. pulumi_azure/cdn/get_frontdoor_firewall_policy.py +15 -1
  13. pulumi_azure/cdn/get_frontdoor_profile.py +25 -11
  14. pulumi_azure/cdn/outputs.py +79 -21
  15. pulumi_azure/cognitive/account.py +7 -7
  16. pulumi_azure/compute/__init__.py +1 -0
  17. pulumi_azure/compute/_inputs.py +79 -47
  18. pulumi_azure/compute/get_managed_disks.py +140 -0
  19. pulumi_azure/compute/linux_virtual_machine.py +97 -23
  20. pulumi_azure/compute/outputs.py +362 -34
  21. pulumi_azure/compute/windows_virtual_machine.py +172 -42
  22. pulumi_azure/containerservice/_inputs.py +209 -17
  23. pulumi_azure/containerservice/cluster_trusted_access_role_binding.py +2 -2
  24. pulumi_azure/containerservice/get_cluster_node_pool.py +14 -3
  25. pulumi_azure/containerservice/get_kubernetes_cluster.py +2 -2
  26. pulumi_azure/containerservice/get_kubernetes_node_pool_snapshot.py +2 -2
  27. pulumi_azure/containerservice/kubernetes_cluster.py +49 -2
  28. pulumi_azure/containerservice/kubernetes_cluster_node_pool.py +49 -2
  29. pulumi_azure/containerservice/outputs.py +173 -11
  30. pulumi_azure/core/_inputs.py +0 -54
  31. pulumi_azure/core/outputs.py +0 -36
  32. pulumi_azure/core/resource_group_cost_management_export.py +2 -2
  33. pulumi_azure/core/resource_group_policy_assignment.py +7 -7
  34. pulumi_azure/core/resource_policy_assignment.py +7 -7
  35. pulumi_azure/core/subscription_cost_management_export.py +2 -2
  36. pulumi_azure/core/subscription_policy_assignment.py +7 -7
  37. pulumi_azure/datafactory/__init__.py +1 -0
  38. pulumi_azure/datafactory/customer_managed_key.py +439 -0
  39. pulumi_azure/datafactory/factory.py +2 -2
  40. pulumi_azure/dataprotection/_inputs.py +36 -6
  41. pulumi_azure/dataprotection/backup_policy_blob_storage.py +76 -2
  42. pulumi_azure/dataprotection/outputs.py +24 -4
  43. pulumi_azure/devcenter/get_project_pool.py +15 -1
  44. pulumi_azure/devcenter/project_pool.py +47 -0
  45. pulumi_azure/eventgrid/domain.py +2 -2
  46. pulumi_azure/eventgrid/domain_topic.py +2 -2
  47. pulumi_azure/eventgrid/event_subscription.py +2 -2
  48. pulumi_azure/eventgrid/get_domain.py +2 -2
  49. pulumi_azure/eventgrid/get_domain_topic.py +2 -2
  50. pulumi_azure/eventgrid/get_partner_namespace.py +2 -2
  51. pulumi_azure/eventgrid/get_partner_registration.py +2 -2
  52. pulumi_azure/eventgrid/get_system_topic.py +28 -6
  53. pulumi_azure/eventgrid/get_topic.py +2 -2
  54. pulumi_azure/eventgrid/partner_configuration.py +2 -2
  55. pulumi_azure/eventgrid/partner_namespace.py +2 -2
  56. pulumi_azure/eventgrid/partner_registration.py +2 -2
  57. pulumi_azure/eventgrid/system_topic.py +97 -35
  58. pulumi_azure/eventgrid/system_topic_event_subscription.py +4 -4
  59. pulumi_azure/eventgrid/topic.py +2 -2
  60. pulumi_azure/eventhub/domain.py +2 -2
  61. pulumi_azure/eventhub/event_grid_topic.py +2 -2
  62. pulumi_azure/eventhub/event_subscription.py +2 -2
  63. pulumi_azure/hpc/cache_blob_target.py +2 -2
  64. pulumi_azure/iot/_inputs.py +27 -1
  65. pulumi_azure/iot/endpoint_cosmosdb_account.py +64 -3
  66. pulumi_azure/iot/endpoint_eventhub.py +64 -3
  67. pulumi_azure/iot/endpoint_servicebus_queue.py +64 -3
  68. pulumi_azure/iot/endpoint_servicebus_topic.py +64 -3
  69. pulumi_azure/iot/endpoint_storage_container.py +64 -3
  70. pulumi_azure/iot/outputs.py +19 -1
  71. pulumi_azure/keyvault/_inputs.py +3 -17
  72. pulumi_azure/keyvault/get_key_vault.py +13 -1
  73. pulumi_azure/keyvault/key_vault.py +78 -35
  74. pulumi_azure/keyvault/outputs.py +2 -10
  75. pulumi_azure/kusto/_inputs.py +16 -6
  76. pulumi_azure/kusto/cluster.py +95 -66
  77. pulumi_azure/kusto/outputs.py +10 -4
  78. pulumi_azure/lb/get_lb_outbound_rule.py +12 -1
  79. pulumi_azure/lb/get_lb_rule.py +28 -4
  80. pulumi_azure/lb/load_balancer.py +94 -0
  81. pulumi_azure/lb/nat_rule.py +115 -29
  82. pulumi_azure/lb/outbound_rule.py +60 -17
  83. pulumi_azure/lb/rule.py +116 -30
  84. pulumi_azure/loadtest/_inputs.py +6 -3
  85. pulumi_azure/loadtest/load_test.py +0 -4
  86. pulumi_azure/loadtest/outputs.py +4 -2
  87. pulumi_azure/logicapps/_inputs.py +46 -987
  88. pulumi_azure/logicapps/get_standard.py +0 -7
  89. pulumi_azure/logicapps/outputs.py +117 -101
  90. pulumi_azure/logicapps/standard.py +7 -7
  91. pulumi_azure/machinelearning/_inputs.py +24 -4
  92. pulumi_azure/machinelearning/compute_instance.py +35 -7
  93. pulumi_azure/machinelearning/datastore_blobstorage.py +2 -2
  94. pulumi_azure/machinelearning/datastore_datalake_gen2.py +2 -2
  95. pulumi_azure/machinelearning/inference_cluster.py +2 -2
  96. pulumi_azure/machinelearning/outputs.py +17 -3
  97. pulumi_azure/machinelearning/workspace.py +61 -0
  98. pulumi_azure/management/_inputs.py +0 -18
  99. pulumi_azure/management/group_policy_assignment.py +7 -7
  100. pulumi_azure/management/outputs.py +0 -12
  101. pulumi_azure/management/private_link_association.py +0 -70
  102. pulumi_azure/mobile/_inputs.py +14 -6
  103. pulumi_azure/mobile/network_sim.py +2 -6
  104. pulumi_azure/mobile/network_sim_policy.py +2 -6
  105. pulumi_azure/mobile/network_slice.py +116 -31
  106. pulumi_azure/mobile/outputs.py +6 -4
  107. pulumi_azure/monitoring/_inputs.py +15 -9
  108. pulumi_azure/monitoring/activity_log_alert.py +7 -7
  109. pulumi_azure/monitoring/outputs.py +10 -6
  110. pulumi_azure/mssql/job_step.py +11 -11
  111. pulumi_azure/mysql/_inputs.py +20 -0
  112. pulumi_azure/mysql/outputs.py +14 -0
  113. pulumi_azure/netapp/_inputs.py +18 -6
  114. pulumi_azure/netapp/account.py +2 -2
  115. pulumi_azure/netapp/account_encryption.py +132 -4
  116. pulumi_azure/netapp/backup_policy.py +2 -2
  117. pulumi_azure/netapp/backup_vault.py +2 -2
  118. pulumi_azure/netapp/get_account.py +2 -2
  119. pulumi_azure/netapp/get_account_encryption.py +25 -3
  120. pulumi_azure/netapp/get_backup_policy.py +2 -2
  121. pulumi_azure/netapp/get_backup_vault.py +2 -2
  122. pulumi_azure/netapp/get_pool.py +17 -3
  123. pulumi_azure/netapp/get_snapshot.py +2 -2
  124. pulumi_azure/netapp/get_snapshot_policy.py +2 -2
  125. pulumi_azure/netapp/get_volume.py +17 -3
  126. pulumi_azure/netapp/get_volume_group_oracle.py +2 -2
  127. pulumi_azure/netapp/get_volume_group_sap_hana.py +2 -2
  128. pulumi_azure/netapp/get_volume_quota_rule.py +2 -2
  129. pulumi_azure/netapp/outputs.py +12 -4
  130. pulumi_azure/netapp/pool.py +104 -9
  131. pulumi_azure/netapp/snapshot.py +2 -2
  132. pulumi_azure/netapp/snapshot_policy.py +2 -2
  133. pulumi_azure/netapp/volume.py +82 -7
  134. pulumi_azure/netapp/volume_group_oracle.py +2 -2
  135. pulumi_azure/netapp/volume_group_sap_hana.py +2 -2
  136. pulumi_azure/netapp/volume_quota_rule.py +2 -2
  137. pulumi_azure/network/__init__.py +2 -0
  138. pulumi_azure/network/network_manager_ipam_pool_static_cidr.py +415 -0
  139. pulumi_azure/network/network_manager_routing_configuration.py +7 -7
  140. pulumi_azure/network/network_manager_routing_rule_collection.py +429 -0
  141. pulumi_azure/network/subnet.py +76 -1
  142. pulumi_azure/oracle/__init__.py +3 -0
  143. pulumi_azure/oracle/autonomous_database_backup.py +310 -0
  144. pulumi_azure/oracle/get_autonomous_database_backup.py +347 -0
  145. pulumi_azure/oracle/get_autonomous_database_backups.py +138 -0
  146. pulumi_azure/oracle/outputs.py +191 -0
  147. pulumi_azure/paloalto/next_generation_firewall_virtual_hub_local_rulestack.py +2 -2
  148. pulumi_azure/paloalto/next_generation_firewall_virtual_hub_panorama.py +2 -2
  149. pulumi_azure/paloalto/next_generation_firewall_virtual_network_local_rulestack.py +2 -2
  150. pulumi_azure/paloalto/next_generation_firewall_virtual_network_panorama.py +2 -2
  151. pulumi_azure/policy/_inputs.py +6 -0
  152. pulumi_azure/policy/outputs.py +4 -0
  153. pulumi_azure/postgresql/flexible_server.py +7 -7
  154. pulumi_azure/postgresql/flexible_server_firewall_rule.py +14 -14
  155. pulumi_azure/pulumi-plugin.json +1 -1
  156. pulumi_azure/search/service.py +7 -7
  157. pulumi_azure/sentinel/_inputs.py +144 -0
  158. pulumi_azure/sentinel/authomation_rule.py +47 -0
  159. pulumi_azure/sentinel/automation_rule.py +47 -0
  160. pulumi_azure/sentinel/outputs.py +84 -0
  161. pulumi_azure/storage/_inputs.py +3 -3
  162. pulumi_azure/storage/container_immutability_policy.py +2 -2
  163. pulumi_azure/storage/get_queue.py +59 -8
  164. pulumi_azure/storage/outputs.py +2 -2
  165. pulumi_azure/storage/queue.py +159 -27
  166. {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/METADATA +1 -1
  167. {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
  168. {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
  169. {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,429 @@
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 builtins as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = ['NetworkManagerRoutingRuleCollectionArgs', 'NetworkManagerRoutingRuleCollection']
18
+
19
+ @pulumi.input_type
20
+ class NetworkManagerRoutingRuleCollectionArgs:
21
+ def __init__(__self__, *,
22
+ network_group_ids: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
23
+ routing_configuration_id: pulumi.Input[_builtins.str],
24
+ bgp_route_propagation_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
25
+ description: Optional[pulumi.Input[_builtins.str]] = None,
26
+ name: Optional[pulumi.Input[_builtins.str]] = None):
27
+ """
28
+ The set of arguments for constructing a NetworkManagerRoutingRuleCollection resource.
29
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] network_group_ids: A list of Network Group IDs which this Network Manager Routing Rule Collection applies to.
30
+ :param pulumi.Input[_builtins.str] routing_configuration_id: The ID of the Network Manager Routing Configuration. Changing this forces a new Network Manager Routing Rule Collection to be created.
31
+ :param pulumi.Input[_builtins.bool] bgp_route_propagation_enabled: Whether to enable the BGP route propagation. Defaults to `false`.
32
+ :param pulumi.Input[_builtins.str] description: The description of the Network Manager Routing Rule Collection.
33
+ :param pulumi.Input[_builtins.str] name: The name which should be used for this Network Manager Routing Rule Collection. Changing this forces a new Network Manager Routing Rule Collection to be created.
34
+ """
35
+ pulumi.set(__self__, "network_group_ids", network_group_ids)
36
+ pulumi.set(__self__, "routing_configuration_id", routing_configuration_id)
37
+ if bgp_route_propagation_enabled is not None:
38
+ pulumi.set(__self__, "bgp_route_propagation_enabled", bgp_route_propagation_enabled)
39
+ if description is not None:
40
+ pulumi.set(__self__, "description", description)
41
+ if name is not None:
42
+ pulumi.set(__self__, "name", name)
43
+
44
+ @_builtins.property
45
+ @pulumi.getter(name="networkGroupIds")
46
+ def network_group_ids(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
47
+ """
48
+ A list of Network Group IDs which this Network Manager Routing Rule Collection applies to.
49
+ """
50
+ return pulumi.get(self, "network_group_ids")
51
+
52
+ @network_group_ids.setter
53
+ def network_group_ids(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
54
+ pulumi.set(self, "network_group_ids", value)
55
+
56
+ @_builtins.property
57
+ @pulumi.getter(name="routingConfigurationId")
58
+ def routing_configuration_id(self) -> pulumi.Input[_builtins.str]:
59
+ """
60
+ The ID of the Network Manager Routing Configuration. Changing this forces a new Network Manager Routing Rule Collection to be created.
61
+ """
62
+ return pulumi.get(self, "routing_configuration_id")
63
+
64
+ @routing_configuration_id.setter
65
+ def routing_configuration_id(self, value: pulumi.Input[_builtins.str]):
66
+ pulumi.set(self, "routing_configuration_id", value)
67
+
68
+ @_builtins.property
69
+ @pulumi.getter(name="bgpRoutePropagationEnabled")
70
+ def bgp_route_propagation_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
71
+ """
72
+ Whether to enable the BGP route propagation. Defaults to `false`.
73
+ """
74
+ return pulumi.get(self, "bgp_route_propagation_enabled")
75
+
76
+ @bgp_route_propagation_enabled.setter
77
+ def bgp_route_propagation_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
78
+ pulumi.set(self, "bgp_route_propagation_enabled", value)
79
+
80
+ @_builtins.property
81
+ @pulumi.getter
82
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
83
+ """
84
+ The description of the Network Manager Routing Rule Collection.
85
+ """
86
+ return pulumi.get(self, "description")
87
+
88
+ @description.setter
89
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
90
+ pulumi.set(self, "description", value)
91
+
92
+ @_builtins.property
93
+ @pulumi.getter
94
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
95
+ """
96
+ The name which should be used for this Network Manager Routing Rule Collection. Changing this forces a new Network Manager Routing Rule Collection to be created.
97
+ """
98
+ return pulumi.get(self, "name")
99
+
100
+ @name.setter
101
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
102
+ pulumi.set(self, "name", value)
103
+
104
+
105
+ @pulumi.input_type
106
+ class _NetworkManagerRoutingRuleCollectionState:
107
+ def __init__(__self__, *,
108
+ bgp_route_propagation_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
109
+ description: Optional[pulumi.Input[_builtins.str]] = None,
110
+ name: Optional[pulumi.Input[_builtins.str]] = None,
111
+ network_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
112
+ routing_configuration_id: Optional[pulumi.Input[_builtins.str]] = None):
113
+ """
114
+ Input properties used for looking up and filtering NetworkManagerRoutingRuleCollection resources.
115
+ :param pulumi.Input[_builtins.bool] bgp_route_propagation_enabled: Whether to enable the BGP route propagation. Defaults to `false`.
116
+ :param pulumi.Input[_builtins.str] description: The description of the Network Manager Routing Rule Collection.
117
+ :param pulumi.Input[_builtins.str] name: The name which should be used for this Network Manager Routing Rule Collection. Changing this forces a new Network Manager Routing Rule Collection to be created.
118
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] network_group_ids: A list of Network Group IDs which this Network Manager Routing Rule Collection applies to.
119
+ :param pulumi.Input[_builtins.str] routing_configuration_id: The ID of the Network Manager Routing Configuration. Changing this forces a new Network Manager Routing Rule Collection to be created.
120
+ """
121
+ if bgp_route_propagation_enabled is not None:
122
+ pulumi.set(__self__, "bgp_route_propagation_enabled", bgp_route_propagation_enabled)
123
+ if description is not None:
124
+ pulumi.set(__self__, "description", description)
125
+ if name is not None:
126
+ pulumi.set(__self__, "name", name)
127
+ if network_group_ids is not None:
128
+ pulumi.set(__self__, "network_group_ids", network_group_ids)
129
+ if routing_configuration_id is not None:
130
+ pulumi.set(__self__, "routing_configuration_id", routing_configuration_id)
131
+
132
+ @_builtins.property
133
+ @pulumi.getter(name="bgpRoutePropagationEnabled")
134
+ def bgp_route_propagation_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
135
+ """
136
+ Whether to enable the BGP route propagation. Defaults to `false`.
137
+ """
138
+ return pulumi.get(self, "bgp_route_propagation_enabled")
139
+
140
+ @bgp_route_propagation_enabled.setter
141
+ def bgp_route_propagation_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
142
+ pulumi.set(self, "bgp_route_propagation_enabled", value)
143
+
144
+ @_builtins.property
145
+ @pulumi.getter
146
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
147
+ """
148
+ The description of the Network Manager Routing Rule Collection.
149
+ """
150
+ return pulumi.get(self, "description")
151
+
152
+ @description.setter
153
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
154
+ pulumi.set(self, "description", value)
155
+
156
+ @_builtins.property
157
+ @pulumi.getter
158
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
159
+ """
160
+ The name which should be used for this Network Manager Routing Rule Collection. Changing this forces a new Network Manager Routing Rule Collection to be created.
161
+ """
162
+ return pulumi.get(self, "name")
163
+
164
+ @name.setter
165
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
166
+ pulumi.set(self, "name", value)
167
+
168
+ @_builtins.property
169
+ @pulumi.getter(name="networkGroupIds")
170
+ def network_group_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
171
+ """
172
+ A list of Network Group IDs which this Network Manager Routing Rule Collection applies to.
173
+ """
174
+ return pulumi.get(self, "network_group_ids")
175
+
176
+ @network_group_ids.setter
177
+ def network_group_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
178
+ pulumi.set(self, "network_group_ids", value)
179
+
180
+ @_builtins.property
181
+ @pulumi.getter(name="routingConfigurationId")
182
+ def routing_configuration_id(self) -> Optional[pulumi.Input[_builtins.str]]:
183
+ """
184
+ The ID of the Network Manager Routing Configuration. Changing this forces a new Network Manager Routing Rule Collection to be created.
185
+ """
186
+ return pulumi.get(self, "routing_configuration_id")
187
+
188
+ @routing_configuration_id.setter
189
+ def routing_configuration_id(self, value: Optional[pulumi.Input[_builtins.str]]):
190
+ pulumi.set(self, "routing_configuration_id", value)
191
+
192
+
193
+ @pulumi.type_token("azure:network/networkManagerRoutingRuleCollection:NetworkManagerRoutingRuleCollection")
194
+ class NetworkManagerRoutingRuleCollection(pulumi.CustomResource):
195
+ @overload
196
+ def __init__(__self__,
197
+ resource_name: str,
198
+ opts: Optional[pulumi.ResourceOptions] = None,
199
+ bgp_route_propagation_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
200
+ description: Optional[pulumi.Input[_builtins.str]] = None,
201
+ name: Optional[pulumi.Input[_builtins.str]] = None,
202
+ network_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
203
+ routing_configuration_id: Optional[pulumi.Input[_builtins.str]] = None,
204
+ __props__=None):
205
+ """
206
+ ## Example Usage
207
+
208
+ ```python
209
+ import pulumi
210
+ import pulumi_azure as azure
211
+
212
+ example = azure.core.ResourceGroup("example",
213
+ name="example-resources",
214
+ location="West Europe")
215
+ current = azure.core.get_subscription()
216
+ example_network_manager = azure.network.NetworkManager("example",
217
+ name="example-network-manager",
218
+ location=example.location,
219
+ resource_group_name=example.name,
220
+ scope={
221
+ "subscription_ids": [current.id],
222
+ },
223
+ scope_accesses=["Routing"])
224
+ example_network_manager_network_group = azure.network.NetworkManagerNetworkGroup("example",
225
+ name="example-network-group",
226
+ network_manager_id=example_network_manager.id)
227
+ example_network_manager_routing_configuration = azure.network.NetworkManagerRoutingConfiguration("example",
228
+ name="example-routing-configuration",
229
+ network_manager_id=example_network_manager.id)
230
+ example_network_manager_routing_rule_collection = azure.network.NetworkManagerRoutingRuleCollection("example",
231
+ name="example-routing-rule-collection",
232
+ routing_configuration_id=example_network_manager_routing_configuration.id,
233
+ network_group_ids=["azurerm_network_manager_network_group.example.id"],
234
+ description="example routing rule collection")
235
+ ```
236
+
237
+ ## API Providers
238
+
239
+ <!-- This section is generated, changes will be overwritten -->
240
+ This resource uses the following Azure API Providers:
241
+
242
+ * `Microsoft.Network` - 2024-05-01
243
+
244
+ ## Import
245
+
246
+ Network Manager Routing Rule Collections can be imported using the `resource id`, e.g.
247
+
248
+ ```sh
249
+ $ pulumi import azure:network/networkManagerRoutingRuleCollection:NetworkManagerRoutingRuleCollection example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/networkManagers/manager1/routingConfigurations/conf1/ruleCollections/collection1
250
+ ```
251
+
252
+ :param str resource_name: The name of the resource.
253
+ :param pulumi.ResourceOptions opts: Options for the resource.
254
+ :param pulumi.Input[_builtins.bool] bgp_route_propagation_enabled: Whether to enable the BGP route propagation. Defaults to `false`.
255
+ :param pulumi.Input[_builtins.str] description: The description of the Network Manager Routing Rule Collection.
256
+ :param pulumi.Input[_builtins.str] name: The name which should be used for this Network Manager Routing Rule Collection. Changing this forces a new Network Manager Routing Rule Collection to be created.
257
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] network_group_ids: A list of Network Group IDs which this Network Manager Routing Rule Collection applies to.
258
+ :param pulumi.Input[_builtins.str] routing_configuration_id: The ID of the Network Manager Routing Configuration. Changing this forces a new Network Manager Routing Rule Collection to be created.
259
+ """
260
+ ...
261
+ @overload
262
+ def __init__(__self__,
263
+ resource_name: str,
264
+ args: NetworkManagerRoutingRuleCollectionArgs,
265
+ opts: Optional[pulumi.ResourceOptions] = None):
266
+ """
267
+ ## Example Usage
268
+
269
+ ```python
270
+ import pulumi
271
+ import pulumi_azure as azure
272
+
273
+ example = azure.core.ResourceGroup("example",
274
+ name="example-resources",
275
+ location="West Europe")
276
+ current = azure.core.get_subscription()
277
+ example_network_manager = azure.network.NetworkManager("example",
278
+ name="example-network-manager",
279
+ location=example.location,
280
+ resource_group_name=example.name,
281
+ scope={
282
+ "subscription_ids": [current.id],
283
+ },
284
+ scope_accesses=["Routing"])
285
+ example_network_manager_network_group = azure.network.NetworkManagerNetworkGroup("example",
286
+ name="example-network-group",
287
+ network_manager_id=example_network_manager.id)
288
+ example_network_manager_routing_configuration = azure.network.NetworkManagerRoutingConfiguration("example",
289
+ name="example-routing-configuration",
290
+ network_manager_id=example_network_manager.id)
291
+ example_network_manager_routing_rule_collection = azure.network.NetworkManagerRoutingRuleCollection("example",
292
+ name="example-routing-rule-collection",
293
+ routing_configuration_id=example_network_manager_routing_configuration.id,
294
+ network_group_ids=["azurerm_network_manager_network_group.example.id"],
295
+ description="example routing rule collection")
296
+ ```
297
+
298
+ ## API Providers
299
+
300
+ <!-- This section is generated, changes will be overwritten -->
301
+ This resource uses the following Azure API Providers:
302
+
303
+ * `Microsoft.Network` - 2024-05-01
304
+
305
+ ## Import
306
+
307
+ Network Manager Routing Rule Collections can be imported using the `resource id`, e.g.
308
+
309
+ ```sh
310
+ $ pulumi import azure:network/networkManagerRoutingRuleCollection:NetworkManagerRoutingRuleCollection example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/networkManagers/manager1/routingConfigurations/conf1/ruleCollections/collection1
311
+ ```
312
+
313
+ :param str resource_name: The name of the resource.
314
+ :param NetworkManagerRoutingRuleCollectionArgs args: The arguments to use to populate this resource's properties.
315
+ :param pulumi.ResourceOptions opts: Options for the resource.
316
+ """
317
+ ...
318
+ def __init__(__self__, resource_name: str, *args, **kwargs):
319
+ resource_args, opts = _utilities.get_resource_args_opts(NetworkManagerRoutingRuleCollectionArgs, pulumi.ResourceOptions, *args, **kwargs)
320
+ if resource_args is not None:
321
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
322
+ else:
323
+ __self__._internal_init(resource_name, *args, **kwargs)
324
+
325
+ def _internal_init(__self__,
326
+ resource_name: str,
327
+ opts: Optional[pulumi.ResourceOptions] = None,
328
+ bgp_route_propagation_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
329
+ description: Optional[pulumi.Input[_builtins.str]] = None,
330
+ name: Optional[pulumi.Input[_builtins.str]] = None,
331
+ network_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
332
+ routing_configuration_id: Optional[pulumi.Input[_builtins.str]] = None,
333
+ __props__=None):
334
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
335
+ if not isinstance(opts, pulumi.ResourceOptions):
336
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
337
+ if opts.id is None:
338
+ if __props__ is not None:
339
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
340
+ __props__ = NetworkManagerRoutingRuleCollectionArgs.__new__(NetworkManagerRoutingRuleCollectionArgs)
341
+
342
+ __props__.__dict__["bgp_route_propagation_enabled"] = bgp_route_propagation_enabled
343
+ __props__.__dict__["description"] = description
344
+ __props__.__dict__["name"] = name
345
+ if network_group_ids is None and not opts.urn:
346
+ raise TypeError("Missing required property 'network_group_ids'")
347
+ __props__.__dict__["network_group_ids"] = network_group_ids
348
+ if routing_configuration_id is None and not opts.urn:
349
+ raise TypeError("Missing required property 'routing_configuration_id'")
350
+ __props__.__dict__["routing_configuration_id"] = routing_configuration_id
351
+ super(NetworkManagerRoutingRuleCollection, __self__).__init__(
352
+ 'azure:network/networkManagerRoutingRuleCollection:NetworkManagerRoutingRuleCollection',
353
+ resource_name,
354
+ __props__,
355
+ opts)
356
+
357
+ @staticmethod
358
+ def get(resource_name: str,
359
+ id: pulumi.Input[str],
360
+ opts: Optional[pulumi.ResourceOptions] = None,
361
+ bgp_route_propagation_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
362
+ description: Optional[pulumi.Input[_builtins.str]] = None,
363
+ name: Optional[pulumi.Input[_builtins.str]] = None,
364
+ network_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
365
+ routing_configuration_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'NetworkManagerRoutingRuleCollection':
366
+ """
367
+ Get an existing NetworkManagerRoutingRuleCollection resource's state with the given name, id, and optional extra
368
+ properties used to qualify the lookup.
369
+
370
+ :param str resource_name: The unique name of the resulting resource.
371
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
372
+ :param pulumi.ResourceOptions opts: Options for the resource.
373
+ :param pulumi.Input[_builtins.bool] bgp_route_propagation_enabled: Whether to enable the BGP route propagation. Defaults to `false`.
374
+ :param pulumi.Input[_builtins.str] description: The description of the Network Manager Routing Rule Collection.
375
+ :param pulumi.Input[_builtins.str] name: The name which should be used for this Network Manager Routing Rule Collection. Changing this forces a new Network Manager Routing Rule Collection to be created.
376
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] network_group_ids: A list of Network Group IDs which this Network Manager Routing Rule Collection applies to.
377
+ :param pulumi.Input[_builtins.str] routing_configuration_id: The ID of the Network Manager Routing Configuration. Changing this forces a new Network Manager Routing Rule Collection to be created.
378
+ """
379
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
380
+
381
+ __props__ = _NetworkManagerRoutingRuleCollectionState.__new__(_NetworkManagerRoutingRuleCollectionState)
382
+
383
+ __props__.__dict__["bgp_route_propagation_enabled"] = bgp_route_propagation_enabled
384
+ __props__.__dict__["description"] = description
385
+ __props__.__dict__["name"] = name
386
+ __props__.__dict__["network_group_ids"] = network_group_ids
387
+ __props__.__dict__["routing_configuration_id"] = routing_configuration_id
388
+ return NetworkManagerRoutingRuleCollection(resource_name, opts=opts, __props__=__props__)
389
+
390
+ @_builtins.property
391
+ @pulumi.getter(name="bgpRoutePropagationEnabled")
392
+ def bgp_route_propagation_enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
393
+ """
394
+ Whether to enable the BGP route propagation. Defaults to `false`.
395
+ """
396
+ return pulumi.get(self, "bgp_route_propagation_enabled")
397
+
398
+ @_builtins.property
399
+ @pulumi.getter
400
+ def description(self) -> pulumi.Output[Optional[_builtins.str]]:
401
+ """
402
+ The description of the Network Manager Routing Rule Collection.
403
+ """
404
+ return pulumi.get(self, "description")
405
+
406
+ @_builtins.property
407
+ @pulumi.getter
408
+ def name(self) -> pulumi.Output[_builtins.str]:
409
+ """
410
+ The name which should be used for this Network Manager Routing Rule Collection. Changing this forces a new Network Manager Routing Rule Collection to be created.
411
+ """
412
+ return pulumi.get(self, "name")
413
+
414
+ @_builtins.property
415
+ @pulumi.getter(name="networkGroupIds")
416
+ def network_group_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
417
+ """
418
+ A list of Network Group IDs which this Network Manager Routing Rule Collection applies to.
419
+ """
420
+ return pulumi.get(self, "network_group_ids")
421
+
422
+ @_builtins.property
423
+ @pulumi.getter(name="routingConfigurationId")
424
+ def routing_configuration_id(self) -> pulumi.Output[_builtins.str]:
425
+ """
426
+ The ID of the Network Manager Routing Configuration. Changing this forces a new Network Manager Routing Rule Collection to be created.
427
+ """
428
+ return pulumi.get(self, "routing_configuration_id")
429
+
@@ -31,7 +31,8 @@ class SubnetArgs:
31
31
  private_endpoint_network_policies: Optional[pulumi.Input[_builtins.str]] = None,
32
32
  private_link_service_network_policies_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
33
33
  service_endpoint_policy_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
34
- service_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
34
+ service_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
35
+ sharing_scope: Optional[pulumi.Input[_builtins.str]] = None):
35
36
  """
36
37
  The set of arguments for constructing a Subnet resource.
37
38
  :param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group in which to create the subnet. This must be the resource group that the virtual network resides in. Changing this forces a new resource to be created.
@@ -61,6 +62,11 @@ class SubnetArgs:
61
62
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] service_endpoints: The list of Service endpoints to associate with the subnet. Possible values include: `Microsoft.AzureActiveDirectory`, `Microsoft.AzureCosmosDB`, `Microsoft.ContainerRegistry`, `Microsoft.EventHub`, `Microsoft.KeyVault`, `Microsoft.ServiceBus`, `Microsoft.Sql`, `Microsoft.Storage`, `Microsoft.Storage.Global` and `Microsoft.Web`.
62
63
 
63
64
  > **NOTE:** In order to use `Microsoft.Storage.Global` service endpoint (which allows access to virtual networks in other regions), you must enable the `AllowGlobalTagsForStorage` feature in your subscription. This is currently a preview feature, please see the [official documentation](https://learn.microsoft.com/en-us/azure/storage/common/storage-network-security?tabs=azure-cli#enabling-access-to-virtual-networks-in-other-regions-preview) for more information.
65
+ :param pulumi.Input[_builtins.str] sharing_scope: The sharing scope of the subnet. Possible value is `Tenant`.
66
+
67
+ > **Note:** This property cannot be set if `default_outbound_access_enabled` is set to `true`.
68
+
69
+ !> **Note:** The `sharing_scope` property is only available to users who have been explicitly registered and granted access by the Azure Networking Product Group.
64
70
  """
65
71
  pulumi.set(__self__, "resource_group_name", resource_group_name)
66
72
  pulumi.set(__self__, "virtual_network_name", virtual_network_name)
@@ -82,6 +88,8 @@ class SubnetArgs:
82
88
  pulumi.set(__self__, "service_endpoint_policy_ids", service_endpoint_policy_ids)
83
89
  if service_endpoints is not None:
84
90
  pulumi.set(__self__, "service_endpoints", service_endpoints)
91
+ if sharing_scope is not None:
92
+ pulumi.set(__self__, "sharing_scope", sharing_scope)
85
93
 
86
94
  @_builtins.property
87
95
  @pulumi.getter(name="resourceGroupName")
@@ -231,6 +239,22 @@ class SubnetArgs:
231
239
  def service_endpoints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
232
240
  pulumi.set(self, "service_endpoints", value)
233
241
 
242
+ @_builtins.property
243
+ @pulumi.getter(name="sharingScope")
244
+ def sharing_scope(self) -> Optional[pulumi.Input[_builtins.str]]:
245
+ """
246
+ The sharing scope of the subnet. Possible value is `Tenant`.
247
+
248
+ > **Note:** This property cannot be set if `default_outbound_access_enabled` is set to `true`.
249
+
250
+ !> **Note:** The `sharing_scope` property is only available to users who have been explicitly registered and granted access by the Azure Networking Product Group.
251
+ """
252
+ return pulumi.get(self, "sharing_scope")
253
+
254
+ @sharing_scope.setter
255
+ def sharing_scope(self, value: Optional[pulumi.Input[_builtins.str]]):
256
+ pulumi.set(self, "sharing_scope", value)
257
+
234
258
 
235
259
  @pulumi.input_type
236
260
  class _SubnetState:
@@ -245,6 +269,7 @@ class _SubnetState:
245
269
  resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
246
270
  service_endpoint_policy_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
247
271
  service_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
272
+ sharing_scope: Optional[pulumi.Input[_builtins.str]] = None,
248
273
  virtual_network_name: Optional[pulumi.Input[_builtins.str]] = None):
249
274
  """
250
275
  Input properties used for looking up and filtering Subnet resources.
@@ -274,6 +299,11 @@ class _SubnetState:
274
299
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] service_endpoints: The list of Service endpoints to associate with the subnet. Possible values include: `Microsoft.AzureActiveDirectory`, `Microsoft.AzureCosmosDB`, `Microsoft.ContainerRegistry`, `Microsoft.EventHub`, `Microsoft.KeyVault`, `Microsoft.ServiceBus`, `Microsoft.Sql`, `Microsoft.Storage`, `Microsoft.Storage.Global` and `Microsoft.Web`.
275
300
 
276
301
  > **NOTE:** In order to use `Microsoft.Storage.Global` service endpoint (which allows access to virtual networks in other regions), you must enable the `AllowGlobalTagsForStorage` feature in your subscription. This is currently a preview feature, please see the [official documentation](https://learn.microsoft.com/en-us/azure/storage/common/storage-network-security?tabs=azure-cli#enabling-access-to-virtual-networks-in-other-regions-preview) for more information.
302
+ :param pulumi.Input[_builtins.str] sharing_scope: The sharing scope of the subnet. Possible value is `Tenant`.
303
+
304
+ > **Note:** This property cannot be set if `default_outbound_access_enabled` is set to `true`.
305
+
306
+ !> **Note:** The `sharing_scope` property is only available to users who have been explicitly registered and granted access by the Azure Networking Product Group.
277
307
  :param pulumi.Input[_builtins.str] virtual_network_name: The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.
278
308
  """
279
309
  if address_prefixes is not None:
@@ -296,6 +326,8 @@ class _SubnetState:
296
326
  pulumi.set(__self__, "service_endpoint_policy_ids", service_endpoint_policy_ids)
297
327
  if service_endpoints is not None:
298
328
  pulumi.set(__self__, "service_endpoints", service_endpoints)
329
+ if sharing_scope is not None:
330
+ pulumi.set(__self__, "sharing_scope", sharing_scope)
299
331
  if virtual_network_name is not None:
300
332
  pulumi.set(__self__, "virtual_network_name", virtual_network_name)
301
333
 
@@ -435,6 +467,22 @@ class _SubnetState:
435
467
  def service_endpoints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
436
468
  pulumi.set(self, "service_endpoints", value)
437
469
 
470
+ @_builtins.property
471
+ @pulumi.getter(name="sharingScope")
472
+ def sharing_scope(self) -> Optional[pulumi.Input[_builtins.str]]:
473
+ """
474
+ The sharing scope of the subnet. Possible value is `Tenant`.
475
+
476
+ > **Note:** This property cannot be set if `default_outbound_access_enabled` is set to `true`.
477
+
478
+ !> **Note:** The `sharing_scope` property is only available to users who have been explicitly registered and granted access by the Azure Networking Product Group.
479
+ """
480
+ return pulumi.get(self, "sharing_scope")
481
+
482
+ @sharing_scope.setter
483
+ def sharing_scope(self, value: Optional[pulumi.Input[_builtins.str]]):
484
+ pulumi.set(self, "sharing_scope", value)
485
+
438
486
  @_builtins.property
439
487
  @pulumi.getter(name="virtualNetworkName")
440
488
  def virtual_network_name(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -464,6 +512,7 @@ class Subnet(pulumi.CustomResource):
464
512
  resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
465
513
  service_endpoint_policy_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
466
514
  service_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
515
+ sharing_scope: Optional[pulumi.Input[_builtins.str]] = None,
467
516
  virtual_network_name: Optional[pulumi.Input[_builtins.str]] = None,
468
517
  __props__=None):
469
518
  """
@@ -547,6 +596,11 @@ class Subnet(pulumi.CustomResource):
547
596
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] service_endpoints: The list of Service endpoints to associate with the subnet. Possible values include: `Microsoft.AzureActiveDirectory`, `Microsoft.AzureCosmosDB`, `Microsoft.ContainerRegistry`, `Microsoft.EventHub`, `Microsoft.KeyVault`, `Microsoft.ServiceBus`, `Microsoft.Sql`, `Microsoft.Storage`, `Microsoft.Storage.Global` and `Microsoft.Web`.
548
597
 
549
598
  > **NOTE:** In order to use `Microsoft.Storage.Global` service endpoint (which allows access to virtual networks in other regions), you must enable the `AllowGlobalTagsForStorage` feature in your subscription. This is currently a preview feature, please see the [official documentation](https://learn.microsoft.com/en-us/azure/storage/common/storage-network-security?tabs=azure-cli#enabling-access-to-virtual-networks-in-other-regions-preview) for more information.
599
+ :param pulumi.Input[_builtins.str] sharing_scope: The sharing scope of the subnet. Possible value is `Tenant`.
600
+
601
+ > **Note:** This property cannot be set if `default_outbound_access_enabled` is set to `true`.
602
+
603
+ !> **Note:** The `sharing_scope` property is only available to users who have been explicitly registered and granted access by the Azure Networking Product Group.
550
604
  :param pulumi.Input[_builtins.str] virtual_network_name: The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.
551
605
  """
552
606
  ...
@@ -633,6 +687,7 @@ class Subnet(pulumi.CustomResource):
633
687
  resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
634
688
  service_endpoint_policy_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
635
689
  service_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
690
+ sharing_scope: Optional[pulumi.Input[_builtins.str]] = None,
636
691
  virtual_network_name: Optional[pulumi.Input[_builtins.str]] = None,
637
692
  __props__=None):
638
693
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -655,6 +710,7 @@ class Subnet(pulumi.CustomResource):
655
710
  __props__.__dict__["resource_group_name"] = resource_group_name
656
711
  __props__.__dict__["service_endpoint_policy_ids"] = service_endpoint_policy_ids
657
712
  __props__.__dict__["service_endpoints"] = service_endpoints
713
+ __props__.__dict__["sharing_scope"] = sharing_scope
658
714
  if virtual_network_name is None and not opts.urn:
659
715
  raise TypeError("Missing required property 'virtual_network_name'")
660
716
  __props__.__dict__["virtual_network_name"] = virtual_network_name
@@ -678,6 +734,7 @@ class Subnet(pulumi.CustomResource):
678
734
  resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
679
735
  service_endpoint_policy_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
680
736
  service_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
737
+ sharing_scope: Optional[pulumi.Input[_builtins.str]] = None,
681
738
  virtual_network_name: Optional[pulumi.Input[_builtins.str]] = None) -> 'Subnet':
682
739
  """
683
740
  Get an existing Subnet resource's state with the given name, id, and optional extra
@@ -712,6 +769,11 @@ class Subnet(pulumi.CustomResource):
712
769
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] service_endpoints: The list of Service endpoints to associate with the subnet. Possible values include: `Microsoft.AzureActiveDirectory`, `Microsoft.AzureCosmosDB`, `Microsoft.ContainerRegistry`, `Microsoft.EventHub`, `Microsoft.KeyVault`, `Microsoft.ServiceBus`, `Microsoft.Sql`, `Microsoft.Storage`, `Microsoft.Storage.Global` and `Microsoft.Web`.
713
770
 
714
771
  > **NOTE:** In order to use `Microsoft.Storage.Global` service endpoint (which allows access to virtual networks in other regions), you must enable the `AllowGlobalTagsForStorage` feature in your subscription. This is currently a preview feature, please see the [official documentation](https://learn.microsoft.com/en-us/azure/storage/common/storage-network-security?tabs=azure-cli#enabling-access-to-virtual-networks-in-other-regions-preview) for more information.
772
+ :param pulumi.Input[_builtins.str] sharing_scope: The sharing scope of the subnet. Possible value is `Tenant`.
773
+
774
+ > **Note:** This property cannot be set if `default_outbound_access_enabled` is set to `true`.
775
+
776
+ !> **Note:** The `sharing_scope` property is only available to users who have been explicitly registered and granted access by the Azure Networking Product Group.
715
777
  :param pulumi.Input[_builtins.str] virtual_network_name: The name of the virtual network to which to attach the subnet. Changing this forces a new resource to be created.
716
778
  """
717
779
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -728,6 +790,7 @@ class Subnet(pulumi.CustomResource):
728
790
  __props__.__dict__["resource_group_name"] = resource_group_name
729
791
  __props__.__dict__["service_endpoint_policy_ids"] = service_endpoint_policy_ids
730
792
  __props__.__dict__["service_endpoints"] = service_endpoints
793
+ __props__.__dict__["sharing_scope"] = sharing_scope
731
794
  __props__.__dict__["virtual_network_name"] = virtual_network_name
732
795
  return Subnet(resource_name, opts=opts, __props__=__props__)
733
796
 
@@ -827,6 +890,18 @@ class Subnet(pulumi.CustomResource):
827
890
  """
828
891
  return pulumi.get(self, "service_endpoints")
829
892
 
893
+ @_builtins.property
894
+ @pulumi.getter(name="sharingScope")
895
+ def sharing_scope(self) -> pulumi.Output[Optional[_builtins.str]]:
896
+ """
897
+ The sharing scope of the subnet. Possible value is `Tenant`.
898
+
899
+ > **Note:** This property cannot be set if `default_outbound_access_enabled` is set to `true`.
900
+
901
+ !> **Note:** The `sharing_scope` property is only available to users who have been explicitly registered and granted access by the Azure Networking Product Group.
902
+ """
903
+ return pulumi.get(self, "sharing_scope")
904
+
830
905
  @_builtins.property
831
906
  @pulumi.getter(name="virtualNetworkName")
832
907
  def virtual_network_name(self) -> pulumi.Output[_builtins.str]:
@@ -7,11 +7,14 @@ from .. import _utilities
7
7
  import typing
8
8
  # Export this package's modules as members:
9
9
  from .autonomous_database import *
10
+ from .autonomous_database_backup import *
10
11
  from .cloud_vm_cluster import *
11
12
  from .exadata_infrastructure import *
12
13
  from .get_adbs_character_sets import *
13
14
  from .get_adbs_national_character_sets import *
14
15
  from .get_autonomous_database import *
16
+ from .get_autonomous_database_backup import *
17
+ from .get_autonomous_database_backups import *
15
18
  from .get_cloud_vm_cluster import *
16
19
  from .get_db_nodes import *
17
20
  from .get_db_servers import *