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,415 @@
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__ = ['NetworkManagerIpamPoolStaticCidrArgs', 'NetworkManagerIpamPoolStaticCidr']
18
+
19
+ @pulumi.input_type
20
+ class NetworkManagerIpamPoolStaticCidrArgs:
21
+ def __init__(__self__, *,
22
+ ipam_pool_id: pulumi.Input[_builtins.str],
23
+ address_prefixes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
24
+ name: Optional[pulumi.Input[_builtins.str]] = None,
25
+ number_of_ip_addresses_to_allocate: Optional[pulumi.Input[_builtins.str]] = None):
26
+ """
27
+ The set of arguments for constructing a NetworkManagerIpamPoolStaticCidr resource.
28
+ :param pulumi.Input[_builtins.str] ipam_pool_id: The ID of the Network Manager IP Address Management (IPAM) Pool. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
29
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] address_prefixes: Specifies a list of IPv4 or IPv6 IP address prefixes which will be allocated to the Static CIDR.
30
+
31
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
32
+ :param pulumi.Input[_builtins.str] name: The name which should be used for this Network Manager IPAM Pool Static CIDR. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
33
+ :param pulumi.Input[_builtins.str] number_of_ip_addresses_to_allocate: The number of IP addresses to allocate to the Static CIDR. The value must be a string representing a positive integer which is a positive power of 2, e.g., `"16"`.
34
+
35
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
36
+ """
37
+ pulumi.set(__self__, "ipam_pool_id", ipam_pool_id)
38
+ if address_prefixes is not None:
39
+ pulumi.set(__self__, "address_prefixes", address_prefixes)
40
+ if name is not None:
41
+ pulumi.set(__self__, "name", name)
42
+ if number_of_ip_addresses_to_allocate is not None:
43
+ pulumi.set(__self__, "number_of_ip_addresses_to_allocate", number_of_ip_addresses_to_allocate)
44
+
45
+ @_builtins.property
46
+ @pulumi.getter(name="ipamPoolId")
47
+ def ipam_pool_id(self) -> pulumi.Input[_builtins.str]:
48
+ """
49
+ The ID of the Network Manager IP Address Management (IPAM) Pool. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
50
+ """
51
+ return pulumi.get(self, "ipam_pool_id")
52
+
53
+ @ipam_pool_id.setter
54
+ def ipam_pool_id(self, value: pulumi.Input[_builtins.str]):
55
+ pulumi.set(self, "ipam_pool_id", value)
56
+
57
+ @_builtins.property
58
+ @pulumi.getter(name="addressPrefixes")
59
+ def address_prefixes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
60
+ """
61
+ Specifies a list of IPv4 or IPv6 IP address prefixes which will be allocated to the Static CIDR.
62
+
63
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
64
+ """
65
+ return pulumi.get(self, "address_prefixes")
66
+
67
+ @address_prefixes.setter
68
+ def address_prefixes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
69
+ pulumi.set(self, "address_prefixes", value)
70
+
71
+ @_builtins.property
72
+ @pulumi.getter
73
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
74
+ """
75
+ The name which should be used for this Network Manager IPAM Pool Static CIDR. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
76
+ """
77
+ return pulumi.get(self, "name")
78
+
79
+ @name.setter
80
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
81
+ pulumi.set(self, "name", value)
82
+
83
+ @_builtins.property
84
+ @pulumi.getter(name="numberOfIpAddressesToAllocate")
85
+ def number_of_ip_addresses_to_allocate(self) -> Optional[pulumi.Input[_builtins.str]]:
86
+ """
87
+ The number of IP addresses to allocate to the Static CIDR. The value must be a string representing a positive integer which is a positive power of 2, e.g., `"16"`.
88
+
89
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
90
+ """
91
+ return pulumi.get(self, "number_of_ip_addresses_to_allocate")
92
+
93
+ @number_of_ip_addresses_to_allocate.setter
94
+ def number_of_ip_addresses_to_allocate(self, value: Optional[pulumi.Input[_builtins.str]]):
95
+ pulumi.set(self, "number_of_ip_addresses_to_allocate", value)
96
+
97
+
98
+ @pulumi.input_type
99
+ class _NetworkManagerIpamPoolStaticCidrState:
100
+ def __init__(__self__, *,
101
+ address_prefixes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
102
+ ipam_pool_id: Optional[pulumi.Input[_builtins.str]] = None,
103
+ name: Optional[pulumi.Input[_builtins.str]] = None,
104
+ number_of_ip_addresses_to_allocate: Optional[pulumi.Input[_builtins.str]] = None):
105
+ """
106
+ Input properties used for looking up and filtering NetworkManagerIpamPoolStaticCidr resources.
107
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] address_prefixes: Specifies a list of IPv4 or IPv6 IP address prefixes which will be allocated to the Static CIDR.
108
+
109
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
110
+ :param pulumi.Input[_builtins.str] ipam_pool_id: The ID of the Network Manager IP Address Management (IPAM) Pool. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
111
+ :param pulumi.Input[_builtins.str] name: The name which should be used for this Network Manager IPAM Pool Static CIDR. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
112
+ :param pulumi.Input[_builtins.str] number_of_ip_addresses_to_allocate: The number of IP addresses to allocate to the Static CIDR. The value must be a string representing a positive integer which is a positive power of 2, e.g., `"16"`.
113
+
114
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
115
+ """
116
+ if address_prefixes is not None:
117
+ pulumi.set(__self__, "address_prefixes", address_prefixes)
118
+ if ipam_pool_id is not None:
119
+ pulumi.set(__self__, "ipam_pool_id", ipam_pool_id)
120
+ if name is not None:
121
+ pulumi.set(__self__, "name", name)
122
+ if number_of_ip_addresses_to_allocate is not None:
123
+ pulumi.set(__self__, "number_of_ip_addresses_to_allocate", number_of_ip_addresses_to_allocate)
124
+
125
+ @_builtins.property
126
+ @pulumi.getter(name="addressPrefixes")
127
+ def address_prefixes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
128
+ """
129
+ Specifies a list of IPv4 or IPv6 IP address prefixes which will be allocated to the Static CIDR.
130
+
131
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
132
+ """
133
+ return pulumi.get(self, "address_prefixes")
134
+
135
+ @address_prefixes.setter
136
+ def address_prefixes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
137
+ pulumi.set(self, "address_prefixes", value)
138
+
139
+ @_builtins.property
140
+ @pulumi.getter(name="ipamPoolId")
141
+ def ipam_pool_id(self) -> Optional[pulumi.Input[_builtins.str]]:
142
+ """
143
+ The ID of the Network Manager IP Address Management (IPAM) Pool. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
144
+ """
145
+ return pulumi.get(self, "ipam_pool_id")
146
+
147
+ @ipam_pool_id.setter
148
+ def ipam_pool_id(self, value: Optional[pulumi.Input[_builtins.str]]):
149
+ pulumi.set(self, "ipam_pool_id", value)
150
+
151
+ @_builtins.property
152
+ @pulumi.getter
153
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
154
+ """
155
+ The name which should be used for this Network Manager IPAM Pool Static CIDR. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
156
+ """
157
+ return pulumi.get(self, "name")
158
+
159
+ @name.setter
160
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
161
+ pulumi.set(self, "name", value)
162
+
163
+ @_builtins.property
164
+ @pulumi.getter(name="numberOfIpAddressesToAllocate")
165
+ def number_of_ip_addresses_to_allocate(self) -> Optional[pulumi.Input[_builtins.str]]:
166
+ """
167
+ The number of IP addresses to allocate to the Static CIDR. The value must be a string representing a positive integer which is a positive power of 2, e.g., `"16"`.
168
+
169
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
170
+ """
171
+ return pulumi.get(self, "number_of_ip_addresses_to_allocate")
172
+
173
+ @number_of_ip_addresses_to_allocate.setter
174
+ def number_of_ip_addresses_to_allocate(self, value: Optional[pulumi.Input[_builtins.str]]):
175
+ pulumi.set(self, "number_of_ip_addresses_to_allocate", value)
176
+
177
+
178
+ @pulumi.type_token("azure:network/networkManagerIpamPoolStaticCidr:NetworkManagerIpamPoolStaticCidr")
179
+ class NetworkManagerIpamPoolStaticCidr(pulumi.CustomResource):
180
+ @overload
181
+ def __init__(__self__,
182
+ resource_name: str,
183
+ opts: Optional[pulumi.ResourceOptions] = None,
184
+ address_prefixes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
185
+ ipam_pool_id: Optional[pulumi.Input[_builtins.str]] = None,
186
+ name: Optional[pulumi.Input[_builtins.str]] = None,
187
+ number_of_ip_addresses_to_allocate: Optional[pulumi.Input[_builtins.str]] = None,
188
+ __props__=None):
189
+ """
190
+ Manages a Network Manager IPAM Pool Static CIDR.
191
+
192
+ ## Example Usage
193
+
194
+ ```python
195
+ import pulumi
196
+ import pulumi_azure as azure
197
+
198
+ example = azure.core.ResourceGroup("example",
199
+ name="example-resources",
200
+ location="West Europe")
201
+ current = azure.core.get_subscription()
202
+ example_network_manager = azure.network.NetworkManager("example",
203
+ name="example-nm",
204
+ resource_group_name=example.name,
205
+ location=example.location,
206
+ scope={
207
+ "subscription_ids": [current.id],
208
+ })
209
+ example_network_manager_ipam_pool = azure.network.NetworkManagerIpamPool("example",
210
+ name="example-ipampool",
211
+ network_manager_id=example_network_manager.id,
212
+ location=example.location,
213
+ display_name="ipampool1",
214
+ address_prefixes=["10.0.0.0/24"])
215
+ example_network_manager_ipam_pool_static_cidr = azure.network.NetworkManagerIpamPoolStaticCidr("example",
216
+ name="example-ipsc",
217
+ ipam_pool_id=example_network_manager_ipam_pool.id,
218
+ address_prefixes=[
219
+ "10.0.0.0/26",
220
+ "10.0.0.128/27",
221
+ ])
222
+ ```
223
+
224
+ ## API Providers
225
+
226
+ <!-- This section is generated, changes will be overwritten -->
227
+ This resource uses the following Azure API Providers:
228
+
229
+ * `Microsoft.Network` - 2024-05-01
230
+
231
+ ## Import
232
+
233
+ Network Manager IPAM Pool Static CIDRs can be imported using the `resource id`, e.g.
234
+
235
+ ```sh
236
+ $ pulumi import azure:network/networkManagerIpamPoolStaticCidr:NetworkManagerIpamPoolStaticCidr example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/networkManagers/manager1/ipamPools/pool1/staticCidrs/cidr1
237
+ ```
238
+
239
+ :param str resource_name: The name of the resource.
240
+ :param pulumi.ResourceOptions opts: Options for the resource.
241
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] address_prefixes: Specifies a list of IPv4 or IPv6 IP address prefixes which will be allocated to the Static CIDR.
242
+
243
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
244
+ :param pulumi.Input[_builtins.str] ipam_pool_id: The ID of the Network Manager IP Address Management (IPAM) Pool. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
245
+ :param pulumi.Input[_builtins.str] name: The name which should be used for this Network Manager IPAM Pool Static CIDR. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
246
+ :param pulumi.Input[_builtins.str] number_of_ip_addresses_to_allocate: The number of IP addresses to allocate to the Static CIDR. The value must be a string representing a positive integer which is a positive power of 2, e.g., `"16"`.
247
+
248
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
249
+ """
250
+ ...
251
+ @overload
252
+ def __init__(__self__,
253
+ resource_name: str,
254
+ args: NetworkManagerIpamPoolStaticCidrArgs,
255
+ opts: Optional[pulumi.ResourceOptions] = None):
256
+ """
257
+ Manages a Network Manager IPAM Pool Static CIDR.
258
+
259
+ ## Example Usage
260
+
261
+ ```python
262
+ import pulumi
263
+ import pulumi_azure as azure
264
+
265
+ example = azure.core.ResourceGroup("example",
266
+ name="example-resources",
267
+ location="West Europe")
268
+ current = azure.core.get_subscription()
269
+ example_network_manager = azure.network.NetworkManager("example",
270
+ name="example-nm",
271
+ resource_group_name=example.name,
272
+ location=example.location,
273
+ scope={
274
+ "subscription_ids": [current.id],
275
+ })
276
+ example_network_manager_ipam_pool = azure.network.NetworkManagerIpamPool("example",
277
+ name="example-ipampool",
278
+ network_manager_id=example_network_manager.id,
279
+ location=example.location,
280
+ display_name="ipampool1",
281
+ address_prefixes=["10.0.0.0/24"])
282
+ example_network_manager_ipam_pool_static_cidr = azure.network.NetworkManagerIpamPoolStaticCidr("example",
283
+ name="example-ipsc",
284
+ ipam_pool_id=example_network_manager_ipam_pool.id,
285
+ address_prefixes=[
286
+ "10.0.0.0/26",
287
+ "10.0.0.128/27",
288
+ ])
289
+ ```
290
+
291
+ ## API Providers
292
+
293
+ <!-- This section is generated, changes will be overwritten -->
294
+ This resource uses the following Azure API Providers:
295
+
296
+ * `Microsoft.Network` - 2024-05-01
297
+
298
+ ## Import
299
+
300
+ Network Manager IPAM Pool Static CIDRs can be imported using the `resource id`, e.g.
301
+
302
+ ```sh
303
+ $ pulumi import azure:network/networkManagerIpamPoolStaticCidr:NetworkManagerIpamPoolStaticCidr example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/networkManagers/manager1/ipamPools/pool1/staticCidrs/cidr1
304
+ ```
305
+
306
+ :param str resource_name: The name of the resource.
307
+ :param NetworkManagerIpamPoolStaticCidrArgs args: The arguments to use to populate this resource's properties.
308
+ :param pulumi.ResourceOptions opts: Options for the resource.
309
+ """
310
+ ...
311
+ def __init__(__self__, resource_name: str, *args, **kwargs):
312
+ resource_args, opts = _utilities.get_resource_args_opts(NetworkManagerIpamPoolStaticCidrArgs, pulumi.ResourceOptions, *args, **kwargs)
313
+ if resource_args is not None:
314
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
315
+ else:
316
+ __self__._internal_init(resource_name, *args, **kwargs)
317
+
318
+ def _internal_init(__self__,
319
+ resource_name: str,
320
+ opts: Optional[pulumi.ResourceOptions] = None,
321
+ address_prefixes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
322
+ ipam_pool_id: Optional[pulumi.Input[_builtins.str]] = None,
323
+ name: Optional[pulumi.Input[_builtins.str]] = None,
324
+ number_of_ip_addresses_to_allocate: Optional[pulumi.Input[_builtins.str]] = None,
325
+ __props__=None):
326
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
327
+ if not isinstance(opts, pulumi.ResourceOptions):
328
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
329
+ if opts.id is None:
330
+ if __props__ is not None:
331
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
332
+ __props__ = NetworkManagerIpamPoolStaticCidrArgs.__new__(NetworkManagerIpamPoolStaticCidrArgs)
333
+
334
+ __props__.__dict__["address_prefixes"] = address_prefixes
335
+ if ipam_pool_id is None and not opts.urn:
336
+ raise TypeError("Missing required property 'ipam_pool_id'")
337
+ __props__.__dict__["ipam_pool_id"] = ipam_pool_id
338
+ __props__.__dict__["name"] = name
339
+ __props__.__dict__["number_of_ip_addresses_to_allocate"] = number_of_ip_addresses_to_allocate
340
+ super(NetworkManagerIpamPoolStaticCidr, __self__).__init__(
341
+ 'azure:network/networkManagerIpamPoolStaticCidr:NetworkManagerIpamPoolStaticCidr',
342
+ resource_name,
343
+ __props__,
344
+ opts)
345
+
346
+ @staticmethod
347
+ def get(resource_name: str,
348
+ id: pulumi.Input[str],
349
+ opts: Optional[pulumi.ResourceOptions] = None,
350
+ address_prefixes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
351
+ ipam_pool_id: Optional[pulumi.Input[_builtins.str]] = None,
352
+ name: Optional[pulumi.Input[_builtins.str]] = None,
353
+ number_of_ip_addresses_to_allocate: Optional[pulumi.Input[_builtins.str]] = None) -> 'NetworkManagerIpamPoolStaticCidr':
354
+ """
355
+ Get an existing NetworkManagerIpamPoolStaticCidr resource's state with the given name, id, and optional extra
356
+ properties used to qualify the lookup.
357
+
358
+ :param str resource_name: The unique name of the resulting resource.
359
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
360
+ :param pulumi.ResourceOptions opts: Options for the resource.
361
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] address_prefixes: Specifies a list of IPv4 or IPv6 IP address prefixes which will be allocated to the Static CIDR.
362
+
363
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
364
+ :param pulumi.Input[_builtins.str] ipam_pool_id: The ID of the Network Manager IP Address Management (IPAM) Pool. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
365
+ :param pulumi.Input[_builtins.str] name: The name which should be used for this Network Manager IPAM Pool Static CIDR. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
366
+ :param pulumi.Input[_builtins.str] number_of_ip_addresses_to_allocate: The number of IP addresses to allocate to the Static CIDR. The value must be a string representing a positive integer which is a positive power of 2, e.g., `"16"`.
367
+
368
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
369
+ """
370
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
371
+
372
+ __props__ = _NetworkManagerIpamPoolStaticCidrState.__new__(_NetworkManagerIpamPoolStaticCidrState)
373
+
374
+ __props__.__dict__["address_prefixes"] = address_prefixes
375
+ __props__.__dict__["ipam_pool_id"] = ipam_pool_id
376
+ __props__.__dict__["name"] = name
377
+ __props__.__dict__["number_of_ip_addresses_to_allocate"] = number_of_ip_addresses_to_allocate
378
+ return NetworkManagerIpamPoolStaticCidr(resource_name, opts=opts, __props__=__props__)
379
+
380
+ @_builtins.property
381
+ @pulumi.getter(name="addressPrefixes")
382
+ def address_prefixes(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
383
+ """
384
+ Specifies a list of IPv4 or IPv6 IP address prefixes which will be allocated to the Static CIDR.
385
+
386
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
387
+ """
388
+ return pulumi.get(self, "address_prefixes")
389
+
390
+ @_builtins.property
391
+ @pulumi.getter(name="ipamPoolId")
392
+ def ipam_pool_id(self) -> pulumi.Output[_builtins.str]:
393
+ """
394
+ The ID of the Network Manager IP Address Management (IPAM) Pool. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
395
+ """
396
+ return pulumi.get(self, "ipam_pool_id")
397
+
398
+ @_builtins.property
399
+ @pulumi.getter
400
+ def name(self) -> pulumi.Output[_builtins.str]:
401
+ """
402
+ The name which should be used for this Network Manager IPAM Pool Static CIDR. Changing this forces a new Network Manager IPAM Pool Static CIDR to be created.
403
+ """
404
+ return pulumi.get(self, "name")
405
+
406
+ @_builtins.property
407
+ @pulumi.getter(name="numberOfIpAddressesToAllocate")
408
+ def number_of_ip_addresses_to_allocate(self) -> pulumi.Output[Optional[_builtins.str]]:
409
+ """
410
+ The number of IP addresses to allocate to the Static CIDR. The value must be a string representing a positive integer which is a positive power of 2, e.g., `"16"`.
411
+
412
+ > **Note:** Exactly one of `address_prefixes` or `number_of_ip_addresses_to_allocate` must be specified.
413
+ """
414
+ return pulumi.get(self, "number_of_ip_addresses_to_allocate")
415
+
@@ -25,7 +25,7 @@ class NetworkManagerRoutingConfigurationArgs:
25
25
  """
26
26
  The set of arguments for constructing a NetworkManagerRoutingConfiguration resource.
27
27
  :param pulumi.Input[_builtins.str] network_manager_id: The ID of the Network Manager. Changing this forces a new Network Manager Routing Configuration to be created.
28
- :param pulumi.Input[_builtins.str] description: The description of the Network Manager.
28
+ :param pulumi.Input[_builtins.str] description: The description of the Network Manager Routing Configuration.
29
29
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Network Manager Routing Configuration. Changing this forces a new Network Manager Routing Configuration to be created.
30
30
  """
31
31
  pulumi.set(__self__, "network_manager_id", network_manager_id)
@@ -50,7 +50,7 @@ class NetworkManagerRoutingConfigurationArgs:
50
50
  @pulumi.getter
51
51
  def description(self) -> Optional[pulumi.Input[_builtins.str]]:
52
52
  """
53
- The description of the Network Manager.
53
+ The description of the Network Manager Routing Configuration.
54
54
  """
55
55
  return pulumi.get(self, "description")
56
56
 
@@ -79,7 +79,7 @@ class _NetworkManagerRoutingConfigurationState:
79
79
  network_manager_id: Optional[pulumi.Input[_builtins.str]] = None):
80
80
  """
81
81
  Input properties used for looking up and filtering NetworkManagerRoutingConfiguration resources.
82
- :param pulumi.Input[_builtins.str] description: The description of the Network Manager.
82
+ :param pulumi.Input[_builtins.str] description: The description of the Network Manager Routing Configuration.
83
83
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Network Manager Routing Configuration. Changing this forces a new Network Manager Routing Configuration to be created.
84
84
  :param pulumi.Input[_builtins.str] network_manager_id: The ID of the Network Manager. Changing this forces a new Network Manager Routing Configuration to be created.
85
85
  """
@@ -94,7 +94,7 @@ class _NetworkManagerRoutingConfigurationState:
94
94
  @pulumi.getter
95
95
  def description(self) -> Optional[pulumi.Input[_builtins.str]]:
96
96
  """
97
- The description of the Network Manager.
97
+ The description of the Network Manager Routing Configuration.
98
98
  """
99
99
  return pulumi.get(self, "description")
100
100
 
@@ -181,7 +181,7 @@ class NetworkManagerRoutingConfiguration(pulumi.CustomResource):
181
181
 
182
182
  :param str resource_name: The name of the resource.
183
183
  :param pulumi.ResourceOptions opts: Options for the resource.
184
- :param pulumi.Input[_builtins.str] description: The description of the Network Manager.
184
+ :param pulumi.Input[_builtins.str] description: The description of the Network Manager Routing Configuration.
185
185
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Network Manager Routing Configuration. Changing this forces a new Network Manager Routing Configuration to be created.
186
186
  :param pulumi.Input[_builtins.str] network_manager_id: The ID of the Network Manager. Changing this forces a new Network Manager Routing Configuration to be created.
187
187
  """
@@ -285,7 +285,7 @@ class NetworkManagerRoutingConfiguration(pulumi.CustomResource):
285
285
  :param str resource_name: The unique name of the resulting resource.
286
286
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
287
287
  :param pulumi.ResourceOptions opts: Options for the resource.
288
- :param pulumi.Input[_builtins.str] description: The description of the Network Manager.
288
+ :param pulumi.Input[_builtins.str] description: The description of the Network Manager Routing Configuration.
289
289
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Network Manager Routing Configuration. Changing this forces a new Network Manager Routing Configuration to be created.
290
290
  :param pulumi.Input[_builtins.str] network_manager_id: The ID of the Network Manager. Changing this forces a new Network Manager Routing Configuration to be created.
291
291
  """
@@ -302,7 +302,7 @@ class NetworkManagerRoutingConfiguration(pulumi.CustomResource):
302
302
  @pulumi.getter
303
303
  def description(self) -> pulumi.Output[Optional[_builtins.str]]:
304
304
  """
305
- The description of the Network Manager.
305
+ The description of the Network Manager Routing Configuration.
306
306
  """
307
307
  return pulumi.get(self, "description")
308
308