pulumi-azure-native 2.35.0__py3-none-any.whl → 2.36.0__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 (341) hide show
  1. pulumi_azure_native/__init__.py +73 -0
  2. pulumi_azure_native/azurearcdata/__init__.py +7 -0
  3. pulumi_azure_native/azurearcdata/_enums.py +12 -0
  4. pulumi_azure_native/azurearcdata/_inputs.py +399 -0
  5. pulumi_azure_native/azurearcdata/active_directory_connector.py +5 -1
  6. pulumi_azure_native/azurearcdata/data_controller.py +5 -1
  7. pulumi_azure_native/azurearcdata/failover_group.py +5 -1
  8. pulumi_azure_native/azurearcdata/get_active_directory_connector.py +4 -0
  9. pulumi_azure_native/azurearcdata/get_data_controller.py +4 -0
  10. pulumi_azure_native/azurearcdata/get_failover_group.py +4 -0
  11. pulumi_azure_native/azurearcdata/get_postgres_instance.py +4 -0
  12. pulumi_azure_native/azurearcdata/get_sql_managed_instance.py +4 -0
  13. pulumi_azure_native/azurearcdata/get_sql_server_availability_group.py +164 -0
  14. pulumi_azure_native/azurearcdata/get_sql_server_availability_group_detail_view.py +164 -0
  15. pulumi_azure_native/azurearcdata/get_sql_server_database.py +4 -0
  16. pulumi_azure_native/azurearcdata/get_sql_server_instance.py +4 -0
  17. pulumi_azure_native/azurearcdata/get_sql_server_instance_telemetry.py +138 -0
  18. pulumi_azure_native/azurearcdata/outputs.py +1047 -0
  19. pulumi_azure_native/azurearcdata/postgres_instance.py +5 -1
  20. pulumi_azure_native/azurearcdata/sql_managed_instance.py +5 -1
  21. pulumi_azure_native/azurearcdata/sql_server_availability_group.py +276 -0
  22. pulumi_azure_native/azurearcdata/sql_server_database.py +5 -1
  23. pulumi_azure_native/azurearcdata/sql_server_instance.py +5 -1
  24. pulumi_azure_native/azurearcdata/v20230115preview/active_directory_connector.py +1 -1
  25. pulumi_azure_native/azurearcdata/v20230115preview/data_controller.py +1 -1
  26. pulumi_azure_native/azurearcdata/v20230115preview/failover_group.py +1 -1
  27. pulumi_azure_native/azurearcdata/v20230115preview/postgres_instance.py +1 -1
  28. pulumi_azure_native/azurearcdata/v20230115preview/sql_managed_instance.py +1 -1
  29. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_database.py +1 -1
  30. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_instance.py +1 -1
  31. pulumi_azure_native/azurearcdata/v20240101/__init__.py +28 -0
  32. pulumi_azure_native/azurearcdata/v20240101/_enums.py +188 -0
  33. pulumi_azure_native/azurearcdata/v20240101/_inputs.py +3132 -0
  34. pulumi_azure_native/azurearcdata/v20240101/active_directory_connector.py +217 -0
  35. pulumi_azure_native/azurearcdata/v20240101/data_controller.py +283 -0
  36. pulumi_azure_native/azurearcdata/v20240101/failover_group.py +217 -0
  37. pulumi_azure_native/azurearcdata/v20240101/get_active_directory_connector.py +136 -0
  38. pulumi_azure_native/azurearcdata/v20240101/get_data_controller.py +170 -0
  39. pulumi_azure_native/azurearcdata/v20240101/get_failover_group.py +136 -0
  40. pulumi_azure_native/azurearcdata/v20240101/get_postgres_instance.py +183 -0
  41. pulumi_azure_native/azurearcdata/v20240101/get_sql_managed_instance.py +183 -0
  42. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_availability_group.py +162 -0
  43. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_availability_group_detail_view.py +162 -0
  44. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_database.py +162 -0
  45. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_instance.py +157 -0
  46. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_instance_telemetry.py +136 -0
  47. pulumi_azure_native/azurearcdata/v20240101/outputs.py +4225 -0
  48. pulumi_azure_native/azurearcdata/v20240101/postgres_instance.py +312 -0
  49. pulumi_azure_native/azurearcdata/v20240101/sql_managed_instance.py +312 -0
  50. pulumi_azure_native/azurearcdata/v20240101/sql_server_availability_group.py +274 -0
  51. pulumi_azure_native/azurearcdata/v20240101/sql_server_database.py +275 -0
  52. pulumi_azure_native/azurearcdata/v20240101/sql_server_instance.py +253 -0
  53. pulumi_azure_native/azuresphere/v20240401/list_catalog_deployments.py +1 -1
  54. pulumi_azure_native/azuresphere/v20240401/list_catalog_device_groups.py +1 -1
  55. pulumi_azure_native/azuresphere/v20240401/list_catalog_device_insights.py +1 -1
  56. pulumi_azure_native/azuresphere/v20240401/list_catalog_devices.py +1 -1
  57. pulumi_azure_native/eventhub/v20230101preview/outputs.py +14 -1
  58. pulumi_azure_native/insights/__init__.py +3 -0
  59. pulumi_azure_native/insights/data_collection_endpoint.py +5 -1
  60. pulumi_azure_native/insights/data_collection_rule.py +5 -1
  61. pulumi_azure_native/insights/data_collection_rule_association.py +5 -1
  62. pulumi_azure_native/insights/get_data_collection_endpoint.py +4 -0
  63. pulumi_azure_native/insights/get_data_collection_rule.py +4 -0
  64. pulumi_azure_native/insights/get_data_collection_rule_association.py +4 -0
  65. pulumi_azure_native/insights/v20220601/data_collection_endpoint.py +1 -1
  66. pulumi_azure_native/insights/v20220601/data_collection_rule.py +1 -1
  67. pulumi_azure_native/insights/v20220601/data_collection_rule_association.py +1 -1
  68. pulumi_azure_native/insights/v20230311/__init__.py +16 -0
  69. pulumi_azure_native/insights/v20230311/_enums.py +196 -0
  70. pulumi_azure_native/insights/v20230311/_inputs.py +2122 -0
  71. pulumi_azure_native/insights/v20230311/data_collection_endpoint.py +449 -0
  72. pulumi_azure_native/insights/v20230311/data_collection_rule.py +568 -0
  73. pulumi_azure_native/insights/v20230311/data_collection_rule_association.py +281 -0
  74. pulumi_azure_native/insights/v20230311/get_data_collection_endpoint.py +313 -0
  75. pulumi_azure_native/insights/v20230311/get_data_collection_rule.py +340 -0
  76. pulumi_azure_native/insights/v20230311/get_data_collection_rule_association.py +196 -0
  77. pulumi_azure_native/insights/v20230311/outputs.py +3280 -0
  78. pulumi_azure_native/loadtestservice/_enums.py +7 -1
  79. pulumi_azure_native/loadtestservice/_inputs.py +5 -5
  80. pulumi_azure_native/loadtestservice/get_load_test.py +7 -7
  81. pulumi_azure_native/loadtestservice/load_test.py +9 -9
  82. pulumi_azure_native/loadtestservice/outputs.py +49 -49
  83. pulumi_azure_native/loadtestservice/v20221201/_enums.py +7 -1
  84. pulumi_azure_native/loadtestservice/v20221201/_inputs.py +5 -5
  85. pulumi_azure_native/loadtestservice/v20221201/get_load_test.py +7 -7
  86. pulumi_azure_native/loadtestservice/v20221201/load_test.py +9 -9
  87. pulumi_azure_native/loadtestservice/v20221201/outputs.py +49 -49
  88. pulumi_azure_native/netapp/__init__.py +3 -0
  89. pulumi_azure_native/netapp/account.py +3 -3
  90. pulumi_azure_native/netapp/backup.py +2 -2
  91. pulumi_azure_native/netapp/backup_policy.py +3 -3
  92. pulumi_azure_native/netapp/backup_vault.py +3 -3
  93. pulumi_azure_native/netapp/get_account.py +2 -2
  94. pulumi_azure_native/netapp/get_backup.py +2 -2
  95. pulumi_azure_native/netapp/get_backup_policy.py +2 -2
  96. pulumi_azure_native/netapp/get_backup_vault.py +2 -2
  97. pulumi_azure_native/netapp/get_pool.py +2 -2
  98. pulumi_azure_native/netapp/get_snapshot.py +2 -2
  99. pulumi_azure_native/netapp/get_snapshot_policy.py +2 -2
  100. pulumi_azure_native/netapp/get_subvolume.py +2 -2
  101. pulumi_azure_native/netapp/get_subvolume_metadata.py +2 -2
  102. pulumi_azure_native/netapp/get_volume.py +2 -2
  103. pulumi_azure_native/netapp/get_volume_group.py +2 -2
  104. pulumi_azure_native/netapp/get_volume_group_id_for_ldap_user.py +2 -2
  105. pulumi_azure_native/netapp/get_volume_quota_rule.py +2 -2
  106. pulumi_azure_native/netapp/list_volume_replications.py +2 -2
  107. pulumi_azure_native/netapp/pool.py +3 -3
  108. pulumi_azure_native/netapp/snapshot.py +3 -3
  109. pulumi_azure_native/netapp/snapshot_policy.py +3 -3
  110. pulumi_azure_native/netapp/subvolume.py +3 -3
  111. pulumi_azure_native/netapp/v20210401/backup_policy.py +1 -1
  112. pulumi_azure_native/netapp/v20210401preview/backup_policy.py +1 -1
  113. pulumi_azure_native/netapp/v20211001/volume.py +1 -1
  114. pulumi_azure_native/netapp/v20211001/volume_group.py +1 -1
  115. pulumi_azure_native/netapp/v20220501/account.py +1 -1
  116. pulumi_azure_native/netapp/v20221101/account.py +1 -1
  117. pulumi_azure_native/netapp/v20221101/backup_policy.py +1 -1
  118. pulumi_azure_native/netapp/v20221101/pool.py +1 -1
  119. pulumi_azure_native/netapp/v20221101/snapshot.py +1 -1
  120. pulumi_azure_native/netapp/v20221101/snapshot_policy.py +1 -1
  121. pulumi_azure_native/netapp/v20221101/subvolume.py +1 -1
  122. pulumi_azure_native/netapp/v20221101/volume.py +1 -1
  123. pulumi_azure_native/netapp/v20221101/volume_group.py +1 -1
  124. pulumi_azure_native/netapp/v20221101/volume_quota_rule.py +1 -1
  125. pulumi_azure_native/netapp/v20221101preview/account.py +1 -1
  126. pulumi_azure_native/netapp/v20221101preview/backup.py +1 -1
  127. pulumi_azure_native/netapp/v20221101preview/backup_policy.py +1 -1
  128. pulumi_azure_native/netapp/v20221101preview/backup_vault.py +1 -1
  129. pulumi_azure_native/netapp/v20221101preview/pool.py +1 -1
  130. pulumi_azure_native/netapp/v20221101preview/snapshot.py +1 -1
  131. pulumi_azure_native/netapp/v20221101preview/snapshot_policy.py +1 -1
  132. pulumi_azure_native/netapp/v20221101preview/subvolume.py +1 -1
  133. pulumi_azure_native/netapp/v20221101preview/volume.py +1 -1
  134. pulumi_azure_native/netapp/v20221101preview/volume_group.py +1 -1
  135. pulumi_azure_native/netapp/v20221101preview/volume_quota_rule.py +1 -1
  136. pulumi_azure_native/netapp/v20230501/account.py +1 -1
  137. pulumi_azure_native/netapp/v20230501/backup_policy.py +1 -1
  138. pulumi_azure_native/netapp/v20230501/pool.py +1 -1
  139. pulumi_azure_native/netapp/v20230501/snapshot.py +1 -1
  140. pulumi_azure_native/netapp/v20230501/snapshot_policy.py +1 -1
  141. pulumi_azure_native/netapp/v20230501/subvolume.py +1 -1
  142. pulumi_azure_native/netapp/v20230501/volume.py +1 -1
  143. pulumi_azure_native/netapp/v20230501/volume_group.py +1 -1
  144. pulumi_azure_native/netapp/v20230501/volume_quota_rule.py +1 -1
  145. pulumi_azure_native/netapp/v20230501preview/account.py +1 -1
  146. pulumi_azure_native/netapp/v20230501preview/backup.py +1 -1
  147. pulumi_azure_native/netapp/v20230501preview/backup_policy.py +1 -1
  148. pulumi_azure_native/netapp/v20230501preview/backup_vault.py +1 -1
  149. pulumi_azure_native/netapp/v20230501preview/pool.py +1 -1
  150. pulumi_azure_native/netapp/v20230501preview/snapshot.py +1 -1
  151. pulumi_azure_native/netapp/v20230501preview/snapshot_policy.py +1 -1
  152. pulumi_azure_native/netapp/v20230501preview/subvolume.py +1 -1
  153. pulumi_azure_native/netapp/v20230501preview/volume.py +1 -1
  154. pulumi_azure_native/netapp/v20230501preview/volume_group.py +1 -1
  155. pulumi_azure_native/netapp/v20230501preview/volume_quota_rule.py +1 -1
  156. pulumi_azure_native/netapp/v20230701/account.py +1 -1
  157. pulumi_azure_native/netapp/v20230701/backup_policy.py +1 -1
  158. pulumi_azure_native/netapp/v20230701/pool.py +1 -1
  159. pulumi_azure_native/netapp/v20230701/snapshot.py +1 -1
  160. pulumi_azure_native/netapp/v20230701/snapshot_policy.py +1 -1
  161. pulumi_azure_native/netapp/v20230701/subvolume.py +1 -1
  162. pulumi_azure_native/netapp/v20230701/volume.py +1 -1
  163. pulumi_azure_native/netapp/v20230701/volume_group.py +1 -1
  164. pulumi_azure_native/netapp/v20230701/volume_quota_rule.py +1 -1
  165. pulumi_azure_native/netapp/v20230701preview/__init__.py +35 -0
  166. pulumi_azure_native/netapp/v20230701preview/_enums.py +267 -0
  167. pulumi_azure_native/netapp/v20230701preview/_inputs.py +2339 -0
  168. pulumi_azure_native/netapp/v20230701preview/account.py +380 -0
  169. pulumi_azure_native/netapp/v20230701preview/backup.py +397 -0
  170. pulumi_azure_native/netapp/v20230701preview/backup_policy.py +409 -0
  171. pulumi_azure_native/netapp/v20230701preview/backup_vault.py +253 -0
  172. pulumi_azure_native/netapp/v20230701preview/get_account.py +248 -0
  173. pulumi_azure_native/netapp/v20230701preview/get_backup.py +271 -0
  174. pulumi_azure_native/netapp/v20230701preview/get_backup_policy.py +266 -0
  175. pulumi_azure_native/netapp/v20230701preview/get_backup_vault.py +162 -0
  176. pulumi_azure_native/netapp/v20230701preview/get_pool.py +279 -0
  177. pulumi_azure_native/netapp/v20230701preview/get_snapshot.py +185 -0
  178. pulumi_azure_native/netapp/v20230701preview/get_snapshot_policy.py +240 -0
  179. pulumi_azure_native/netapp/v20230701preview/get_subvolume.py +185 -0
  180. pulumi_azure_native/netapp/v20230701preview/get_subvolume_metadata.py +249 -0
  181. pulumi_azure_native/netapp/v20230701preview/get_volume.py +895 -0
  182. pulumi_azure_native/netapp/v20230701preview/get_volume_group.py +162 -0
  183. pulumi_azure_native/netapp/v20230701preview/get_volume_group_id_for_ldap_user.py +93 -0
  184. pulumi_azure_native/netapp/v20230701preview/get_volume_quota_rule.py +211 -0
  185. pulumi_azure_native/netapp/v20230701preview/list_volume_replications.py +89 -0
  186. pulumi_azure_native/netapp/v20230701preview/outputs.py +3111 -0
  187. pulumi_azure_native/netapp/v20230701preview/pool.py +457 -0
  188. pulumi_azure_native/netapp/v20230701preview/snapshot.py +286 -0
  189. pulumi_azure_native/netapp/v20230701preview/snapshot_policy.py +409 -0
  190. pulumi_azure_native/netapp/v20230701preview/subvolume.py +324 -0
  191. pulumi_azure_native/netapp/v20230701preview/volume.py +1644 -0
  192. pulumi_azure_native/netapp/v20230701preview/volume_group.py +274 -0
  193. pulumi_azure_native/netapp/v20230701preview/volume_quota_rule.py +383 -0
  194. pulumi_azure_native/netapp/volume.py +3 -3
  195. pulumi_azure_native/netapp/volume_group.py +3 -3
  196. pulumi_azure_native/netapp/volume_quota_rule.py +3 -3
  197. pulumi_azure_native/quota/_enums.py +1 -1
  198. pulumi_azure_native/quota/_inputs.py +10 -10
  199. pulumi_azure_native/quota/get_group_quota.py +7 -7
  200. pulumi_azure_native/quota/get_group_quota_subscription.py +8 -8
  201. pulumi_azure_native/quota/group_quota.py +15 -15
  202. pulumi_azure_native/quota/group_quota_subscription.py +17 -17
  203. pulumi_azure_native/quota/outputs.py +12 -12
  204. pulumi_azure_native/quota/v20230601preview/_enums.py +1 -1
  205. pulumi_azure_native/quota/v20230601preview/_inputs.py +10 -10
  206. pulumi_azure_native/quota/v20230601preview/get_group_quota.py +7 -7
  207. pulumi_azure_native/quota/v20230601preview/get_group_quota_subscription.py +8 -8
  208. pulumi_azure_native/quota/v20230601preview/group_quota.py +15 -15
  209. pulumi_azure_native/quota/v20230601preview/group_quota_subscription.py +17 -17
  210. pulumi_azure_native/quota/v20230601preview/outputs.py +12 -12
  211. pulumi_azure_native/recoveryservices/get_private_endpoint_connection.py +2 -2
  212. pulumi_azure_native/recoveryservices/get_protected_item.py +2 -2
  213. pulumi_azure_native/recoveryservices/get_protection_container.py +2 -2
  214. pulumi_azure_native/recoveryservices/get_protection_intent.py +2 -2
  215. pulumi_azure_native/recoveryservices/get_protection_policy.py +2 -2
  216. pulumi_azure_native/recoveryservices/get_resource_guard_proxy.py +2 -2
  217. pulumi_azure_native/recoveryservices/private_endpoint_connection.py +3 -3
  218. pulumi_azure_native/recoveryservices/protected_item.py +3 -3
  219. pulumi_azure_native/recoveryservices/protection_container.py +3 -3
  220. pulumi_azure_native/recoveryservices/protection_intent.py +3 -3
  221. pulumi_azure_native/recoveryservices/protection_policy.py +3 -3
  222. pulumi_azure_native/recoveryservices/resource_guard_proxy.py +3 -3
  223. pulumi_azure_native/recoveryservices/v20230401/private_endpoint_connection.py +1 -1
  224. pulumi_azure_native/recoveryservices/v20230401/protected_item.py +1 -1
  225. pulumi_azure_native/recoveryservices/v20230401/protection_container.py +1 -1
  226. pulumi_azure_native/recoveryservices/v20230401/protection_intent.py +1 -1
  227. pulumi_azure_native/recoveryservices/v20230401/protection_policy.py +1 -1
  228. pulumi_azure_native/recoveryservices/v20230401/resource_guard_proxy.py +1 -1
  229. pulumi_azure_native/recoveryservices/v20230601/private_endpoint_connection.py +1 -1
  230. pulumi_azure_native/recoveryservices/v20230601/protected_item.py +1 -1
  231. pulumi_azure_native/recoveryservices/v20230601/protection_container.py +1 -1
  232. pulumi_azure_native/recoveryservices/v20230601/protection_intent.py +1 -1
  233. pulumi_azure_native/recoveryservices/v20230601/protection_policy.py +1 -1
  234. pulumi_azure_native/recoveryservices/v20230601/resource_guard_proxy.py +1 -1
  235. pulumi_azure_native/recoveryservices/v20230801/private_endpoint_connection.py +1 -1
  236. pulumi_azure_native/recoveryservices/v20230801/protected_item.py +1 -1
  237. pulumi_azure_native/recoveryservices/v20230801/protection_container.py +1 -1
  238. pulumi_azure_native/recoveryservices/v20230801/protection_intent.py +1 -1
  239. pulumi_azure_native/recoveryservices/v20230801/protection_policy.py +1 -1
  240. pulumi_azure_native/recoveryservices/v20230801/resource_guard_proxy.py +1 -1
  241. pulumi_azure_native/recoveryservices/v20240101/private_endpoint_connection.py +1 -1
  242. pulumi_azure_native/recoveryservices/v20240101/protected_item.py +1 -1
  243. pulumi_azure_native/recoveryservices/v20240101/protection_container.py +1 -1
  244. pulumi_azure_native/recoveryservices/v20240101/protection_intent.py +1 -1
  245. pulumi_azure_native/recoveryservices/v20240101/protection_policy.py +1 -1
  246. pulumi_azure_native/recoveryservices/v20240101/resource_guard_proxy.py +1 -1
  247. pulumi_azure_native/recoveryservices/v20240201/__init__.py +12 -0
  248. pulumi_azure_native/recoveryservices/v20240201/_enums.py +368 -0
  249. pulumi_azure_native/recoveryservices/v20240201/_inputs.py +11655 -197
  250. pulumi_azure_native/recoveryservices/v20240201/get_private_endpoint_connection.py +162 -0
  251. pulumi_azure_native/recoveryservices/v20240201/get_protected_item.py +179 -0
  252. pulumi_azure_native/recoveryservices/v20240201/get_protection_container.py +167 -0
  253. pulumi_azure_native/recoveryservices/v20240201/get_protection_intent.py +169 -0
  254. pulumi_azure_native/recoveryservices/v20240201/get_protection_policy.py +164 -0
  255. pulumi_azure_native/recoveryservices/v20240201/get_resource_guard_proxy.py +157 -0
  256. pulumi_azure_native/recoveryservices/v20240201/outputs.py +13072 -317
  257. pulumi_azure_native/recoveryservices/v20240201/private_endpoint_connection.py +293 -0
  258. pulumi_azure_native/recoveryservices/v20240201/protected_item.py +335 -0
  259. pulumi_azure_native/recoveryservices/v20240201/protection_container.py +314 -0
  260. pulumi_azure_native/recoveryservices/v20240201/protection_intent.py +314 -0
  261. pulumi_azure_native/recoveryservices/v20240201/protection_policy.py +293 -0
  262. pulumi_azure_native/recoveryservices/v20240201/resource_guard_proxy.py +285 -0
  263. pulumi_azure_native/resources/__init__.py +3 -0
  264. pulumi_azure_native/resources/deployment.py +3 -3
  265. pulumi_azure_native/resources/deployment_at_management_group_scope.py +3 -3
  266. pulumi_azure_native/resources/deployment_at_scope.py +3 -3
  267. pulumi_azure_native/resources/deployment_at_subscription_scope.py +3 -3
  268. pulumi_azure_native/resources/deployment_at_tenant_scope.py +3 -3
  269. pulumi_azure_native/resources/get_deployment.py +2 -2
  270. pulumi_azure_native/resources/get_deployment_at_management_group_scope.py +2 -2
  271. pulumi_azure_native/resources/get_deployment_at_scope.py +2 -2
  272. pulumi_azure_native/resources/get_deployment_at_subscription_scope.py +2 -2
  273. pulumi_azure_native/resources/get_deployment_at_tenant_scope.py +2 -2
  274. pulumi_azure_native/resources/get_resource.py +2 -2
  275. pulumi_azure_native/resources/get_resource_group.py +2 -2
  276. pulumi_azure_native/resources/get_tag_at_scope.py +2 -2
  277. pulumi_azure_native/resources/resource.py +3 -3
  278. pulumi_azure_native/resources/resource_group.py +3 -3
  279. pulumi_azure_native/resources/tag_at_scope.py +3 -3
  280. pulumi_azure_native/resources/v20220901/deployment.py +1 -1
  281. pulumi_azure_native/resources/v20220901/deployment_at_management_group_scope.py +1 -1
  282. pulumi_azure_native/resources/v20220901/deployment_at_scope.py +1 -1
  283. pulumi_azure_native/resources/v20220901/deployment_at_subscription_scope.py +1 -1
  284. pulumi_azure_native/resources/v20220901/deployment_at_tenant_scope.py +1 -1
  285. pulumi_azure_native/resources/v20220901/resource.py +1 -1
  286. pulumi_azure_native/resources/v20220901/resource_group.py +1 -1
  287. pulumi_azure_native/resources/v20220901/tag_at_scope.py +1 -1
  288. pulumi_azure_native/resources/v20230701/deployment.py +1 -1
  289. pulumi_azure_native/resources/v20230701/deployment_at_management_group_scope.py +1 -1
  290. pulumi_azure_native/resources/v20230701/deployment_at_scope.py +1 -1
  291. pulumi_azure_native/resources/v20230701/deployment_at_subscription_scope.py +1 -1
  292. pulumi_azure_native/resources/v20230701/deployment_at_tenant_scope.py +1 -1
  293. pulumi_azure_native/resources/v20230701/resource.py +1 -1
  294. pulumi_azure_native/resources/v20230701/resource_group.py +1 -1
  295. pulumi_azure_native/resources/v20230701/tag_at_scope.py +1 -1
  296. pulumi_azure_native/resources/v20240301/__init__.py +26 -0
  297. pulumi_azure_native/resources/v20240301/_enums.py +55 -0
  298. pulumi_azure_native/resources/v20240301/_inputs.py +788 -0
  299. pulumi_azure_native/resources/v20240301/deployment.py +244 -0
  300. pulumi_azure_native/resources/v20240301/deployment_at_management_group_scope.py +244 -0
  301. pulumi_azure_native/resources/v20240301/deployment_at_scope.py +244 -0
  302. pulumi_azure_native/resources/v20240301/deployment_at_subscription_scope.py +223 -0
  303. pulumi_azure_native/resources/v20240301/deployment_at_tenant_scope.py +223 -0
  304. pulumi_azure_native/resources/v20240301/get_deployment.py +144 -0
  305. pulumi_azure_native/resources/v20240301/get_deployment_at_management_group_scope.py +144 -0
  306. pulumi_azure_native/resources/v20240301/get_deployment_at_scope.py +144 -0
  307. pulumi_azure_native/resources/v20240301/get_deployment_at_subscription_scope.py +139 -0
  308. pulumi_azure_native/resources/v20240301/get_deployment_at_tenant_scope.py +139 -0
  309. pulumi_azure_native/resources/v20240301/get_resource.py +237 -0
  310. pulumi_azure_native/resources/v20240301/get_resource_group.py +152 -0
  311. pulumi_azure_native/resources/v20240301/get_tag_at_scope.py +113 -0
  312. pulumi_azure_native/resources/v20240301/outputs.py +1842 -0
  313. pulumi_azure_native/resources/v20240301/resource.py +480 -0
  314. pulumi_azure_native/resources/v20240301/resource_group.py +230 -0
  315. pulumi_azure_native/resources/v20240301/tag_at_scope.py +165 -0
  316. pulumi_azure_native/security/__init__.py +3 -0
  317. pulumi_azure_native/security/dev_ops_configuration.py +5 -1
  318. pulumi_azure_native/security/get_dev_ops_configuration.py +4 -0
  319. pulumi_azure_native/security/list_azure_dev_ops_org_available.py +4 -0
  320. pulumi_azure_native/security/list_git_hub_owner_available.py +4 -0
  321. pulumi_azure_native/security/list_git_lab_group_available.py +4 -0
  322. pulumi_azure_native/security/list_git_lab_subgroup.py +4 -0
  323. pulumi_azure_native/security/v20230901preview/dev_ops_configuration.py +1 -1
  324. pulumi_azure_native/security/v20240401/__init__.py +16 -0
  325. pulumi_azure_native/security/v20240401/_enums.py +40 -0
  326. pulumi_azure_native/security/v20240401/_inputs.py +135 -0
  327. pulumi_azure_native/security/v20240401/dev_ops_configuration.py +196 -0
  328. pulumi_azure_native/security/v20240401/get_dev_ops_configuration.py +131 -0
  329. pulumi_azure_native/security/v20240401/list_azure_dev_ops_org_available.py +92 -0
  330. pulumi_azure_native/security/v20240401/list_git_hub_owner_available.py +92 -0
  331. pulumi_azure_native/security/v20240401/list_git_lab_group_available.py +92 -0
  332. pulumi_azure_native/security/v20240401/list_git_lab_subgroup.py +97 -0
  333. pulumi_azure_native/security/v20240401/outputs.py +1018 -0
  334. pulumi_azure_native/standbypool/_inputs.py +2 -2
  335. pulumi_azure_native/standbypool/outputs.py +2 -2
  336. pulumi_azure_native/standbypool/v20231201preview/_inputs.py +2 -2
  337. pulumi_azure_native/standbypool/v20231201preview/outputs.py +2 -2
  338. {pulumi_azure_native-2.35.0.dist-info → pulumi_azure_native-2.36.0.dist-info}/METADATA +1 -1
  339. {pulumi_azure_native-2.35.0.dist-info → pulumi_azure_native-2.36.0.dist-info}/RECORD +341 -234
  340. {pulumi_azure_native-2.35.0.dist-info → pulumi_azure_native-2.36.0.dist-info}/WHEEL +0 -0
  341. {pulumi_azure_native-2.35.0.dist-info → pulumi_azure_native-2.36.0.dist-info}/top_level.txt +0 -0
@@ -804,7 +804,7 @@ class Volume(pulumi.CustomResource):
804
804
  Volume resource
805
805
  Azure REST API version: 2022-11-01. Prior API version in Azure Native 1.x: 2020-12-01.
806
806
 
807
- Other available API versions: 2017-08-15, 2019-05-01, 2019-07-01, 2019-08-01, 2020-02-01, 2021-10-01, 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01.
807
+ Other available API versions: 2017-08-15, 2019-05-01, 2019-07-01, 2019-08-01, 2020-02-01, 2021-10-01, 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01, 2023-07-01-preview.
808
808
 
809
809
  :param str resource_name: The name of the resource.
810
810
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -862,7 +862,7 @@ class Volume(pulumi.CustomResource):
862
862
  Volume resource
863
863
  Azure REST API version: 2022-11-01. Prior API version in Azure Native 1.x: 2020-12-01.
864
864
 
865
- Other available API versions: 2017-08-15, 2019-05-01, 2019-07-01, 2019-08-01, 2020-02-01, 2021-10-01, 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01.
865
+ Other available API versions: 2017-08-15, 2019-05-01, 2019-07-01, 2019-08-01, 2020-02-01, 2021-10-01, 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01, 2023-07-01-preview.
866
866
 
867
867
  :param str resource_name: The name of the resource.
868
868
  :param VolumeArgs args: The arguments to use to populate this resource's properties.
@@ -1042,7 +1042,7 @@ class Volume(pulumi.CustomResource):
1042
1042
  __props__.__dict__["t2_network"] = None
1043
1043
  __props__.__dict__["type"] = None
1044
1044
  __props__.__dict__["volume_group_name"] = None
1045
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:netapp/v20170815:Volume"), pulumi.Alias(type_="azure-native:netapp/v20190501:Volume"), pulumi.Alias(type_="azure-native:netapp/v20190601:Volume"), pulumi.Alias(type_="azure-native:netapp/v20190701:Volume"), pulumi.Alias(type_="azure-native:netapp/v20190801:Volume"), pulumi.Alias(type_="azure-native:netapp/v20191001:Volume"), pulumi.Alias(type_="azure-native:netapp/v20191101:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200201:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200301:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200501:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200601:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200701:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200801:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200901:Volume"), pulumi.Alias(type_="azure-native:netapp/v20201101:Volume"), pulumi.Alias(type_="azure-native:netapp/v20201201:Volume"), pulumi.Alias(type_="azure-native:netapp/v20210201:Volume"), pulumi.Alias(type_="azure-native:netapp/v20210401:Volume"), pulumi.Alias(type_="azure-native:netapp/v20210401preview:Volume"), pulumi.Alias(type_="azure-native:netapp/v20210601:Volume"), pulumi.Alias(type_="azure-native:netapp/v20210801:Volume"), pulumi.Alias(type_="azure-native:netapp/v20211001:Volume"), pulumi.Alias(type_="azure-native:netapp/v20220101:Volume"), pulumi.Alias(type_="azure-native:netapp/v20220301:Volume"), pulumi.Alias(type_="azure-native:netapp/v20220501:Volume"), pulumi.Alias(type_="azure-native:netapp/v20220901:Volume"), pulumi.Alias(type_="azure-native:netapp/v20221101:Volume"), pulumi.Alias(type_="azure-native:netapp/v20221101preview:Volume"), pulumi.Alias(type_="azure-native:netapp/v20230501:Volume"), pulumi.Alias(type_="azure-native:netapp/v20230501preview:Volume"), pulumi.Alias(type_="azure-native:netapp/v20230701:Volume")])
1045
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:netapp/v20170815:Volume"), pulumi.Alias(type_="azure-native:netapp/v20190501:Volume"), pulumi.Alias(type_="azure-native:netapp/v20190601:Volume"), pulumi.Alias(type_="azure-native:netapp/v20190701:Volume"), pulumi.Alias(type_="azure-native:netapp/v20190801:Volume"), pulumi.Alias(type_="azure-native:netapp/v20191001:Volume"), pulumi.Alias(type_="azure-native:netapp/v20191101:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200201:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200301:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200501:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200601:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200701:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200801:Volume"), pulumi.Alias(type_="azure-native:netapp/v20200901:Volume"), pulumi.Alias(type_="azure-native:netapp/v20201101:Volume"), pulumi.Alias(type_="azure-native:netapp/v20201201:Volume"), pulumi.Alias(type_="azure-native:netapp/v20210201:Volume"), pulumi.Alias(type_="azure-native:netapp/v20210401:Volume"), pulumi.Alias(type_="azure-native:netapp/v20210401preview:Volume"), pulumi.Alias(type_="azure-native:netapp/v20210601:Volume"), pulumi.Alias(type_="azure-native:netapp/v20210801:Volume"), pulumi.Alias(type_="azure-native:netapp/v20211001:Volume"), pulumi.Alias(type_="azure-native:netapp/v20220101:Volume"), pulumi.Alias(type_="azure-native:netapp/v20220301:Volume"), pulumi.Alias(type_="azure-native:netapp/v20220501:Volume"), pulumi.Alias(type_="azure-native:netapp/v20220901:Volume"), pulumi.Alias(type_="azure-native:netapp/v20221101:Volume"), pulumi.Alias(type_="azure-native:netapp/v20221101preview:Volume"), pulumi.Alias(type_="azure-native:netapp/v20230501:Volume"), pulumi.Alias(type_="azure-native:netapp/v20230501preview:Volume"), pulumi.Alias(type_="azure-native:netapp/v20230701:Volume"), pulumi.Alias(type_="azure-native:netapp/v20230701preview:Volume")])
1046
1046
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
1047
1047
  super(Volume, __self__).__init__(
1048
1048
  'azure-native:netapp:Volume',
@@ -132,7 +132,7 @@ class VolumeGroup(pulumi.CustomResource):
132
132
  Volume group resource for create
133
133
  Azure REST API version: 2022-11-01. Prior API version in Azure Native 1.x: 2021-10-01.
134
134
 
135
- Other available API versions: 2021-10-01, 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01.
135
+ Other available API versions: 2021-10-01, 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01, 2023-07-01-preview.
136
136
 
137
137
  :param str resource_name: The name of the resource.
138
138
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -153,7 +153,7 @@ class VolumeGroup(pulumi.CustomResource):
153
153
  Volume group resource for create
154
154
  Azure REST API version: 2022-11-01. Prior API version in Azure Native 1.x: 2021-10-01.
155
155
 
156
- Other available API versions: 2021-10-01, 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01.
156
+ Other available API versions: 2021-10-01, 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01, 2023-07-01-preview.
157
157
 
158
158
  :param str resource_name: The name of the resource.
159
159
  :param VolumeGroupArgs args: The arguments to use to populate this resource's properties.
@@ -198,7 +198,7 @@ class VolumeGroup(pulumi.CustomResource):
198
198
  __props__.__dict__["name"] = None
199
199
  __props__.__dict__["provisioning_state"] = None
200
200
  __props__.__dict__["type"] = None
201
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:netapp/v20210801:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20211001:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20220101:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20220301:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20220501:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20220901:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20221101:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20221101preview:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20230501:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20230501preview:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20230701:VolumeGroup")])
201
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:netapp/v20210801:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20211001:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20220101:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20220301:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20220501:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20220901:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20221101:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20221101preview:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20230501:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20230501preview:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20230701:VolumeGroup"), pulumi.Alias(type_="azure-native:netapp/v20230701preview:VolumeGroup")])
202
202
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
203
203
  super(VolumeGroup, __self__).__init__(
204
204
  'azure-native:netapp:VolumeGroup',
@@ -197,7 +197,7 @@ class VolumeQuotaRule(pulumi.CustomResource):
197
197
  Quota Rule of a Volume
198
198
  Azure REST API version: 2022-11-01. Prior API version in Azure Native 1.x: 2022-01-01.
199
199
 
200
- Other available API versions: 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01.
200
+ Other available API versions: 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01, 2023-07-01-preview.
201
201
 
202
202
  :param str resource_name: The name of the resource.
203
203
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -222,7 +222,7 @@ class VolumeQuotaRule(pulumi.CustomResource):
222
222
  Quota Rule of a Volume
223
223
  Azure REST API version: 2022-11-01. Prior API version in Azure Native 1.x: 2022-01-01.
224
224
 
225
- Other available API versions: 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01.
225
+ Other available API versions: 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01, 2023-07-01-preview.
226
226
 
227
227
  :param str resource_name: The name of the resource.
228
228
  :param VolumeQuotaRuleArgs args: The arguments to use to populate this resource's properties.
@@ -280,7 +280,7 @@ class VolumeQuotaRule(pulumi.CustomResource):
280
280
  __props__.__dict__["provisioning_state"] = None
281
281
  __props__.__dict__["system_data"] = None
282
282
  __props__.__dict__["type"] = None
283
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:netapp/v20220101:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20220301:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20220501:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20220901:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20221101:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20221101preview:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20230501:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20230501preview:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20230701:VolumeQuotaRule")])
283
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:netapp/v20220101:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20220301:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20220501:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20220901:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20221101:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20221101preview:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20230501:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20230501preview:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20230701:VolumeQuotaRule"), pulumi.Alias(type_="azure-native:netapp/v20230701preview:VolumeQuotaRule")])
284
284
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
285
285
  super(VolumeQuotaRule, __self__).__init__(
286
286
  'azure-native:netapp:VolumeQuotaRule',
@@ -11,7 +11,7 @@ __all__ = [
11
11
 
12
12
  class GroupingIdType(str, Enum):
13
13
  """
14
- GroupingId type. It is a required property. More types of groupIds can be supported in future. MGID is already in the URI, so it's not needed.'
14
+ GroupingId type. It is a required property. More types of groupIds can be supported in future.
15
15
  """
16
16
  SERVICE_TREE_ID = "ServiceTreeId"
17
17
  BILLING_ID = "BillingId"
@@ -22,8 +22,8 @@ class AdditionalAttributesArgs:
22
22
  group_id: pulumi.Input['GroupingIdArgs'],
23
23
  environment: Optional[Any] = None):
24
24
  """
25
- Additional attribute to allow subscriptions to be part of the GroupQuota.
26
- :param pulumi.Input['GroupingIdArgs'] group_id: The grouping Id for the group quota. It can be management Group Id or ServiceTreeId if applicable.
25
+ Additional attribute or filter to allow subscriptions meeting the requirements to be part of the GroupQuota.
26
+ :param pulumi.Input['GroupingIdArgs'] group_id: The grouping Id for the group quota. It can be Billing Id or ServiceTreeId if applicable.
27
27
  """
28
28
  pulumi.set(__self__, "group_id", group_id)
29
29
  if environment is not None:
@@ -33,7 +33,7 @@ class AdditionalAttributesArgs:
33
33
  @pulumi.getter(name="groupId")
34
34
  def group_id(self) -> pulumi.Input['GroupingIdArgs']:
35
35
  """
36
- The grouping Id for the group quota. It can be management Group Id or ServiceTreeId if applicable.
36
+ The grouping Id for the group quota. It can be Billing Id or ServiceTreeId if applicable.
37
37
  """
38
38
  return pulumi.get(self, "group_id")
39
39
 
@@ -58,7 +58,7 @@ class GroupQuotasEntityBaseArgs:
58
58
  display_name: Optional[pulumi.Input[str]] = None):
59
59
  """
60
60
  Properties and filters for ShareQuota. The request parameter is optional, if there are no filters specified.
61
- :param pulumi.Input['AdditionalAttributesArgs'] additional_attributes: Additional attributes to allow subscription, which can be added to the subscriptionIds.
61
+ :param pulumi.Input['AdditionalAttributesArgs'] additional_attributes: Additional attributes to filter/restrict the subscriptions, which can be added to the subscriptionIds.
62
62
  :param pulumi.Input[str] display_name: Display name of the GroupQuota entity.
63
63
  """
64
64
  if additional_attributes is not None:
@@ -70,7 +70,7 @@ class GroupQuotasEntityBaseArgs:
70
70
  @pulumi.getter(name="additionalAttributes")
71
71
  def additional_attributes(self) -> Optional[pulumi.Input['AdditionalAttributesArgs']]:
72
72
  """
73
- Additional attributes to allow subscription, which can be added to the subscriptionIds.
73
+ Additional attributes to filter/restrict the subscriptions, which can be added to the subscriptionIds.
74
74
  """
75
75
  return pulumi.get(self, "additional_attributes")
76
76
 
@@ -97,9 +97,9 @@ class GroupingIdArgs:
97
97
  grouping_id_type: Optional[pulumi.Input[Union[str, 'GroupingIdType']]] = None,
98
98
  value: Optional[pulumi.Input[str]] = None):
99
99
  """
100
- The grouping Id for the group quota. It can be management Group Id or ServiceTreeId if applicable.
101
- :param pulumi.Input[Union[str, 'GroupingIdType']] grouping_id_type: GroupingId type. It is a required property. More types of groupIds can be supported in future. MGID is already in the URI, so it's not needed.'
102
- :param pulumi.Input[str] value: GroupId value based on the groupingType selected - management Group Id or ServiceTreeId.
100
+ The grouping Id for the group quota. It can be Billing Id or ServiceTreeId if applicable.
101
+ :param pulumi.Input[Union[str, 'GroupingIdType']] grouping_id_type: GroupingId type. It is a required property. More types of groupIds can be supported in future.
102
+ :param pulumi.Input[str] value: GroupId value based on the groupingType selected - Billing Id or ServiceTreeId.
103
103
  """
104
104
  if grouping_id_type is not None:
105
105
  pulumi.set(__self__, "grouping_id_type", grouping_id_type)
@@ -110,7 +110,7 @@ class GroupingIdArgs:
110
110
  @pulumi.getter(name="groupingIdType")
111
111
  def grouping_id_type(self) -> Optional[pulumi.Input[Union[str, 'GroupingIdType']]]:
112
112
  """
113
- GroupingId type. It is a required property. More types of groupIds can be supported in future. MGID is already in the URI, so it's not needed.'
113
+ GroupingId type. It is a required property. More types of groupIds can be supported in future.
114
114
  """
115
115
  return pulumi.get(self, "grouping_id_type")
116
116
 
@@ -122,7 +122,7 @@ class GroupingIdArgs:
122
122
  @pulumi.getter
123
123
  def value(self) -> Optional[pulumi.Input[str]]:
124
124
  """
125
- GroupId value based on the groupingType selected - management Group Id or ServiceTreeId.
125
+ GroupId value based on the groupingType selected - Billing Id or ServiceTreeId.
126
126
  """
127
127
  return pulumi.get(self, "value")
128
128
 
@@ -94,19 +94,19 @@ class AwaitableGetGroupQuotaResult(GetGroupQuotaResult):
94
94
 
95
95
 
96
96
  def get_group_quota(group_quota_name: Optional[str] = None,
97
- mg_id: Optional[str] = None,
97
+ management_group_id: Optional[str] = None,
98
98
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetGroupQuotaResult:
99
99
  """
100
- Gets the GroupQuotas for the name passed. It will return the GroupQuotas properties only. The details on groupQuota can be access from the groupQuota APIs.
100
+ Gets the GroupQuotas for the name passed. It will return the GroupQuotas properties only. The details on group quota can be access from the group quota APIs.
101
101
  Azure REST API version: 2023-06-01-preview.
102
102
 
103
103
 
104
104
  :param str group_quota_name: The GroupQuota name. The name should be unique for the provided context tenantId/MgId.
105
- :param str mg_id: Management Group Id.
105
+ :param str management_group_id: Management Group Id.
106
106
  """
107
107
  __args__ = dict()
108
108
  __args__['groupQuotaName'] = group_quota_name
109
- __args__['mgId'] = mg_id
109
+ __args__['managementGroupId'] = management_group_id
110
110
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
111
111
  __ret__ = pulumi.runtime.invoke('azure-native:quota:getGroupQuota', __args__, opts=opts, typ=GetGroupQuotaResult).value
112
112
 
@@ -120,14 +120,14 @@ def get_group_quota(group_quota_name: Optional[str] = None,
120
120
 
121
121
  @_utilities.lift_output_func(get_group_quota)
122
122
  def get_group_quota_output(group_quota_name: Optional[pulumi.Input[str]] = None,
123
- mg_id: Optional[pulumi.Input[str]] = None,
123
+ management_group_id: Optional[pulumi.Input[str]] = None,
124
124
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetGroupQuotaResult]:
125
125
  """
126
- Gets the GroupQuotas for the name passed. It will return the GroupQuotas properties only. The details on groupQuota can be access from the groupQuota APIs.
126
+ Gets the GroupQuotas for the name passed. It will return the GroupQuotas properties only. The details on group quota can be access from the group quota APIs.
127
127
  Azure REST API version: 2023-06-01-preview.
128
128
 
129
129
 
130
130
  :param str group_quota_name: The GroupQuota name. The name should be unique for the provided context tenantId/MgId.
131
- :param str mg_id: Management Group Id.
131
+ :param str management_group_id: Management Group Id.
132
132
  """
133
133
  ...
@@ -20,7 +20,7 @@ __all__ = [
20
20
  @pulumi.output_type
21
21
  class GetGroupQuotaSubscriptionResult:
22
22
  """
23
- This represents a Azure subscriptionId that is associated with a GroupQuotaSEntity.
23
+ This represents a Azure subscriptionId that is associated with a GroupQuotasEntity.
24
24
  """
25
25
  def __init__(__self__, id=None, name=None, properties=None, system_data=None, type=None):
26
26
  if id and not isinstance(id, str):
@@ -91,19 +91,19 @@ class AwaitableGetGroupQuotaSubscriptionResult(GetGroupQuotaSubscriptionResult):
91
91
 
92
92
 
93
93
  def get_group_quota_subscription(group_quota_name: Optional[str] = None,
94
- mg_id: Optional[str] = None,
94
+ management_group_id: Optional[str] = None,
95
95
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetGroupQuotaSubscriptionResult:
96
96
  """
97
- Returns the subscriptionId along with its provisioning state for being associated with the GroupQuotasEntity.
97
+ Returns the subscriptionIds along with its provisioning state for being associated with the GroupQuota. If the subscription is not a member of GroupQuota, it will return 404, else 200.
98
98
  Azure REST API version: 2023-06-01-preview.
99
99
 
100
100
 
101
101
  :param str group_quota_name: The GroupQuota name. The name should be unique for the provided context tenantId/MgId.
102
- :param str mg_id: Management Group Id.
102
+ :param str management_group_id: Management Group Id.
103
103
  """
104
104
  __args__ = dict()
105
105
  __args__['groupQuotaName'] = group_quota_name
106
- __args__['mgId'] = mg_id
106
+ __args__['managementGroupId'] = management_group_id
107
107
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
108
108
  __ret__ = pulumi.runtime.invoke('azure-native:quota:getGroupQuotaSubscription', __args__, opts=opts, typ=GetGroupQuotaSubscriptionResult).value
109
109
 
@@ -117,14 +117,14 @@ def get_group_quota_subscription(group_quota_name: Optional[str] = None,
117
117
 
118
118
  @_utilities.lift_output_func(get_group_quota_subscription)
119
119
  def get_group_quota_subscription_output(group_quota_name: Optional[pulumi.Input[str]] = None,
120
- mg_id: Optional[pulumi.Input[str]] = None,
120
+ management_group_id: Optional[pulumi.Input[str]] = None,
121
121
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetGroupQuotaSubscriptionResult]:
122
122
  """
123
- Returns the subscriptionId along with its provisioning state for being associated with the GroupQuotasEntity.
123
+ Returns the subscriptionIds along with its provisioning state for being associated with the GroupQuota. If the subscription is not a member of GroupQuota, it will return 404, else 200.
124
124
  Azure REST API version: 2023-06-01-preview.
125
125
 
126
126
 
127
127
  :param str group_quota_name: The GroupQuota name. The name should be unique for the provided context tenantId/MgId.
128
- :param str mg_id: Management Group Id.
128
+ :param str management_group_id: Management Group Id.
129
129
  """
130
130
  ...
@@ -17,32 +17,32 @@ __all__ = ['GroupQuotaArgs', 'GroupQuota']
17
17
  @pulumi.input_type
18
18
  class GroupQuotaArgs:
19
19
  def __init__(__self__, *,
20
- mg_id: pulumi.Input[str],
20
+ management_group_id: pulumi.Input[str],
21
21
  group_quota_name: Optional[pulumi.Input[str]] = None,
22
22
  properties: Optional[pulumi.Input['GroupQuotasEntityBaseArgs']] = None):
23
23
  """
24
24
  The set of arguments for constructing a GroupQuota resource.
25
- :param pulumi.Input[str] mg_id: Management Group Id.
25
+ :param pulumi.Input[str] management_group_id: Management Group Id.
26
26
  :param pulumi.Input[str] group_quota_name: The GroupQuota name. The name should be unique for the provided context tenantId/MgId.
27
27
  :param pulumi.Input['GroupQuotasEntityBaseArgs'] properties: Properties and filters for ShareQuota. The request parameter is optional, if there are no filters specified.
28
28
  """
29
- pulumi.set(__self__, "mg_id", mg_id)
29
+ pulumi.set(__self__, "management_group_id", management_group_id)
30
30
  if group_quota_name is not None:
31
31
  pulumi.set(__self__, "group_quota_name", group_quota_name)
32
32
  if properties is not None:
33
33
  pulumi.set(__self__, "properties", properties)
34
34
 
35
35
  @property
36
- @pulumi.getter(name="mgId")
37
- def mg_id(self) -> pulumi.Input[str]:
36
+ @pulumi.getter(name="managementGroupId")
37
+ def management_group_id(self) -> pulumi.Input[str]:
38
38
  """
39
39
  Management Group Id.
40
40
  """
41
- return pulumi.get(self, "mg_id")
41
+ return pulumi.get(self, "management_group_id")
42
42
 
43
- @mg_id.setter
44
- def mg_id(self, value: pulumi.Input[str]):
45
- pulumi.set(self, "mg_id", value)
43
+ @management_group_id.setter
44
+ def management_group_id(self, value: pulumi.Input[str]):
45
+ pulumi.set(self, "management_group_id", value)
46
46
 
47
47
  @property
48
48
  @pulumi.getter(name="groupQuotaName")
@@ -75,7 +75,7 @@ class GroupQuota(pulumi.CustomResource):
75
75
  resource_name: str,
76
76
  opts: Optional[pulumi.ResourceOptions] = None,
77
77
  group_quota_name: Optional[pulumi.Input[str]] = None,
78
- mg_id: Optional[pulumi.Input[str]] = None,
78
+ management_group_id: Optional[pulumi.Input[str]] = None,
79
79
  properties: Optional[pulumi.Input[pulumi.InputType['GroupQuotasEntityBaseArgs']]] = None,
80
80
  __props__=None):
81
81
  """
@@ -85,7 +85,7 @@ class GroupQuota(pulumi.CustomResource):
85
85
  :param str resource_name: The name of the resource.
86
86
  :param pulumi.ResourceOptions opts: Options for the resource.
87
87
  :param pulumi.Input[str] group_quota_name: The GroupQuota name. The name should be unique for the provided context tenantId/MgId.
88
- :param pulumi.Input[str] mg_id: Management Group Id.
88
+ :param pulumi.Input[str] management_group_id: Management Group Id.
89
89
  :param pulumi.Input[pulumi.InputType['GroupQuotasEntityBaseArgs']] properties: Properties and filters for ShareQuota. The request parameter is optional, if there are no filters specified.
90
90
  """
91
91
  ...
@@ -114,7 +114,7 @@ class GroupQuota(pulumi.CustomResource):
114
114
  resource_name: str,
115
115
  opts: Optional[pulumi.ResourceOptions] = None,
116
116
  group_quota_name: Optional[pulumi.Input[str]] = None,
117
- mg_id: Optional[pulumi.Input[str]] = None,
117
+ management_group_id: Optional[pulumi.Input[str]] = None,
118
118
  properties: Optional[pulumi.Input[pulumi.InputType['GroupQuotasEntityBaseArgs']]] = None,
119
119
  __props__=None):
120
120
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -126,9 +126,9 @@ class GroupQuota(pulumi.CustomResource):
126
126
  __props__ = GroupQuotaArgs.__new__(GroupQuotaArgs)
127
127
 
128
128
  __props__.__dict__["group_quota_name"] = group_quota_name
129
- if mg_id is None and not opts.urn:
130
- raise TypeError("Missing required property 'mg_id'")
131
- __props__.__dict__["mg_id"] = mg_id
129
+ if management_group_id is None and not opts.urn:
130
+ raise TypeError("Missing required property 'management_group_id'")
131
+ __props__.__dict__["management_group_id"] = management_group_id
132
132
  __props__.__dict__["properties"] = properties
133
133
  __props__.__dict__["name"] = None
134
134
  __props__.__dict__["system_data"] = None
@@ -16,14 +16,14 @@ __all__ = ['GroupQuotaSubscriptionArgs', 'GroupQuotaSubscription']
16
16
  class GroupQuotaSubscriptionArgs:
17
17
  def __init__(__self__, *,
18
18
  group_quota_name: pulumi.Input[str],
19
- mg_id: pulumi.Input[str]):
19
+ management_group_id: pulumi.Input[str]):
20
20
  """
21
21
  The set of arguments for constructing a GroupQuotaSubscription resource.
22
22
  :param pulumi.Input[str] group_quota_name: The GroupQuota name. The name should be unique for the provided context tenantId/MgId.
23
- :param pulumi.Input[str] mg_id: Management Group Id.
23
+ :param pulumi.Input[str] management_group_id: Management Group Id.
24
24
  """
25
25
  pulumi.set(__self__, "group_quota_name", group_quota_name)
26
- pulumi.set(__self__, "mg_id", mg_id)
26
+ pulumi.set(__self__, "management_group_id", management_group_id)
27
27
 
28
28
  @property
29
29
  @pulumi.getter(name="groupQuotaName")
@@ -38,16 +38,16 @@ class GroupQuotaSubscriptionArgs:
38
38
  pulumi.set(self, "group_quota_name", value)
39
39
 
40
40
  @property
41
- @pulumi.getter(name="mgId")
42
- def mg_id(self) -> pulumi.Input[str]:
41
+ @pulumi.getter(name="managementGroupId")
42
+ def management_group_id(self) -> pulumi.Input[str]:
43
43
  """
44
44
  Management Group Id.
45
45
  """
46
- return pulumi.get(self, "mg_id")
46
+ return pulumi.get(self, "management_group_id")
47
47
 
48
- @mg_id.setter
49
- def mg_id(self, value: pulumi.Input[str]):
50
- pulumi.set(self, "mg_id", value)
48
+ @management_group_id.setter
49
+ def management_group_id(self, value: pulumi.Input[str]):
50
+ pulumi.set(self, "management_group_id", value)
51
51
 
52
52
 
53
53
  class GroupQuotaSubscription(pulumi.CustomResource):
@@ -56,16 +56,16 @@ class GroupQuotaSubscription(pulumi.CustomResource):
56
56
  resource_name: str,
57
57
  opts: Optional[pulumi.ResourceOptions] = None,
58
58
  group_quota_name: Optional[pulumi.Input[str]] = None,
59
- mg_id: Optional[pulumi.Input[str]] = None,
59
+ management_group_id: Optional[pulumi.Input[str]] = None,
60
60
  __props__=None):
61
61
  """
62
- This represents a Azure subscriptionId that is associated with a GroupQuotaSEntity.
62
+ This represents a Azure subscriptionId that is associated with a GroupQuotasEntity.
63
63
  Azure REST API version: 2023-06-01-preview.
64
64
 
65
65
  :param str resource_name: The name of the resource.
66
66
  :param pulumi.ResourceOptions opts: Options for the resource.
67
67
  :param pulumi.Input[str] group_quota_name: The GroupQuota name. The name should be unique for the provided context tenantId/MgId.
68
- :param pulumi.Input[str] mg_id: Management Group Id.
68
+ :param pulumi.Input[str] management_group_id: Management Group Id.
69
69
  """
70
70
  ...
71
71
  @overload
@@ -74,7 +74,7 @@ class GroupQuotaSubscription(pulumi.CustomResource):
74
74
  args: GroupQuotaSubscriptionArgs,
75
75
  opts: Optional[pulumi.ResourceOptions] = None):
76
76
  """
77
- This represents a Azure subscriptionId that is associated with a GroupQuotaSEntity.
77
+ This represents a Azure subscriptionId that is associated with a GroupQuotasEntity.
78
78
  Azure REST API version: 2023-06-01-preview.
79
79
 
80
80
  :param str resource_name: The name of the resource.
@@ -93,7 +93,7 @@ class GroupQuotaSubscription(pulumi.CustomResource):
93
93
  resource_name: str,
94
94
  opts: Optional[pulumi.ResourceOptions] = None,
95
95
  group_quota_name: Optional[pulumi.Input[str]] = None,
96
- mg_id: Optional[pulumi.Input[str]] = None,
96
+ management_group_id: Optional[pulumi.Input[str]] = None,
97
97
  __props__=None):
98
98
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
99
99
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -106,9 +106,9 @@ class GroupQuotaSubscription(pulumi.CustomResource):
106
106
  if group_quota_name is None and not opts.urn:
107
107
  raise TypeError("Missing required property 'group_quota_name'")
108
108
  __props__.__dict__["group_quota_name"] = group_quota_name
109
- if mg_id is None and not opts.urn:
110
- raise TypeError("Missing required property 'mg_id'")
111
- __props__.__dict__["mg_id"] = mg_id
109
+ if management_group_id is None and not opts.urn:
110
+ raise TypeError("Missing required property 'management_group_id'")
111
+ __props__.__dict__["management_group_id"] = management_group_id
112
112
  __props__.__dict__["name"] = None
113
113
  __props__.__dict__["properties"] = None
114
114
  __props__.__dict__["system_data"] = None
@@ -22,7 +22,7 @@ __all__ = [
22
22
  @pulumi.output_type
23
23
  class AdditionalAttributesResponse(dict):
24
24
  """
25
- Additional attribute to allow subscriptions to be part of the GroupQuota.
25
+ Additional attribute or filter to allow subscriptions meeting the requirements to be part of the GroupQuota.
26
26
  """
27
27
  @staticmethod
28
28
  def __key_warning(key: str):
@@ -45,8 +45,8 @@ class AdditionalAttributesResponse(dict):
45
45
  group_id: 'outputs.GroupingIdResponse',
46
46
  environment: Optional[Any] = None):
47
47
  """
48
- Additional attribute to allow subscriptions to be part of the GroupQuota.
49
- :param 'GroupingIdResponse' group_id: The grouping Id for the group quota. It can be management Group Id or ServiceTreeId if applicable.
48
+ Additional attribute or filter to allow subscriptions meeting the requirements to be part of the GroupQuota.
49
+ :param 'GroupingIdResponse' group_id: The grouping Id for the group quota. It can be Billing Id or ServiceTreeId if applicable.
50
50
  """
51
51
  pulumi.set(__self__, "group_id", group_id)
52
52
  if environment is not None:
@@ -56,7 +56,7 @@ class AdditionalAttributesResponse(dict):
56
56
  @pulumi.getter(name="groupId")
57
57
  def group_id(self) -> 'outputs.GroupingIdResponse':
58
58
  """
59
- The grouping Id for the group quota. It can be management Group Id or ServiceTreeId if applicable.
59
+ The grouping Id for the group quota. It can be Billing Id or ServiceTreeId if applicable.
60
60
  """
61
61
  return pulumi.get(self, "group_id")
62
62
 
@@ -147,7 +147,7 @@ class GroupQuotasEntityBaseResponse(dict):
147
147
  """
148
148
  Properties and filters for ShareQuota. The request parameter is optional, if there are no filters specified.
149
149
  :param str provisioning_state: Provisioning state of the operation.
150
- :param 'AdditionalAttributesResponse' additional_attributes: Additional attributes to allow subscription, which can be added to the subscriptionIds.
150
+ :param 'AdditionalAttributesResponse' additional_attributes: Additional attributes to filter/restrict the subscriptions, which can be added to the subscriptionIds.
151
151
  :param str display_name: Display name of the GroupQuota entity.
152
152
  """
153
153
  pulumi.set(__self__, "provisioning_state", provisioning_state)
@@ -168,7 +168,7 @@ class GroupQuotasEntityBaseResponse(dict):
168
168
  @pulumi.getter(name="additionalAttributes")
169
169
  def additional_attributes(self) -> Optional['outputs.AdditionalAttributesResponse']:
170
170
  """
171
- Additional attributes to allow subscription, which can be added to the subscriptionIds.
171
+ Additional attributes to filter/restrict the subscriptions, which can be added to the subscriptionIds.
172
172
  """
173
173
  return pulumi.get(self, "additional_attributes")
174
174
 
@@ -184,7 +184,7 @@ class GroupQuotasEntityBaseResponse(dict):
184
184
  @pulumi.output_type
185
185
  class GroupingIdResponse(dict):
186
186
  """
187
- The grouping Id for the group quota. It can be management Group Id or ServiceTreeId if applicable.
187
+ The grouping Id for the group quota. It can be Billing Id or ServiceTreeId if applicable.
188
188
  """
189
189
  @staticmethod
190
190
  def __key_warning(key: str):
@@ -207,9 +207,9 @@ class GroupingIdResponse(dict):
207
207
  grouping_id_type: Optional[str] = None,
208
208
  value: Optional[str] = None):
209
209
  """
210
- The grouping Id for the group quota. It can be management Group Id or ServiceTreeId if applicable.
211
- :param str grouping_id_type: GroupingId type. It is a required property. More types of groupIds can be supported in future. MGID is already in the URI, so it's not needed.'
212
- :param str value: GroupId value based on the groupingType selected - management Group Id or ServiceTreeId.
210
+ The grouping Id for the group quota. It can be Billing Id or ServiceTreeId if applicable.
211
+ :param str grouping_id_type: GroupingId type. It is a required property. More types of groupIds can be supported in future.
212
+ :param str value: GroupId value based on the groupingType selected - Billing Id or ServiceTreeId.
213
213
  """
214
214
  if grouping_id_type is not None:
215
215
  pulumi.set(__self__, "grouping_id_type", grouping_id_type)
@@ -220,7 +220,7 @@ class GroupingIdResponse(dict):
220
220
  @pulumi.getter(name="groupingIdType")
221
221
  def grouping_id_type(self) -> Optional[str]:
222
222
  """
223
- GroupingId type. It is a required property. More types of groupIds can be supported in future. MGID is already in the URI, so it's not needed.'
223
+ GroupingId type. It is a required property. More types of groupIds can be supported in future.
224
224
  """
225
225
  return pulumi.get(self, "grouping_id_type")
226
226
 
@@ -228,7 +228,7 @@ class GroupingIdResponse(dict):
228
228
  @pulumi.getter
229
229
  def value(self) -> Optional[str]:
230
230
  """
231
- GroupId value based on the groupingType selected - management Group Id or ServiceTreeId.
231
+ GroupId value based on the groupingType selected - Billing Id or ServiceTreeId.
232
232
  """
233
233
  return pulumi.get(self, "value")
234
234
 
@@ -11,7 +11,7 @@ __all__ = [
11
11
 
12
12
  class GroupingIdType(str, Enum):
13
13
  """
14
- GroupingId type. It is a required property. More types of groupIds can be supported in future. MGID is already in the URI, so it's not needed.'
14
+ GroupingId type. It is a required property. More types of groupIds can be supported in future.
15
15
  """
16
16
  SERVICE_TREE_ID = "ServiceTreeId"
17
17
  BILLING_ID = "BillingId"
@@ -22,8 +22,8 @@ class AdditionalAttributesArgs:
22
22
  group_id: pulumi.Input['GroupingIdArgs'],
23
23
  environment: Optional[Any] = None):
24
24
  """
25
- Additional attribute to allow subscriptions to be part of the GroupQuota.
26
- :param pulumi.Input['GroupingIdArgs'] group_id: The grouping Id for the group quota. It can be management Group Id or ServiceTreeId if applicable.
25
+ Additional attribute or filter to allow subscriptions meeting the requirements to be part of the GroupQuota.
26
+ :param pulumi.Input['GroupingIdArgs'] group_id: The grouping Id for the group quota. It can be Billing Id or ServiceTreeId if applicable.
27
27
  """
28
28
  pulumi.set(__self__, "group_id", group_id)
29
29
  if environment is not None:
@@ -33,7 +33,7 @@ class AdditionalAttributesArgs:
33
33
  @pulumi.getter(name="groupId")
34
34
  def group_id(self) -> pulumi.Input['GroupingIdArgs']:
35
35
  """
36
- The grouping Id for the group quota. It can be management Group Id or ServiceTreeId if applicable.
36
+ The grouping Id for the group quota. It can be Billing Id or ServiceTreeId if applicable.
37
37
  """
38
38
  return pulumi.get(self, "group_id")
39
39
 
@@ -58,7 +58,7 @@ class GroupQuotasEntityBaseArgs:
58
58
  display_name: Optional[pulumi.Input[str]] = None):
59
59
  """
60
60
  Properties and filters for ShareQuota. The request parameter is optional, if there are no filters specified.
61
- :param pulumi.Input['AdditionalAttributesArgs'] additional_attributes: Additional attributes to allow subscription, which can be added to the subscriptionIds.
61
+ :param pulumi.Input['AdditionalAttributesArgs'] additional_attributes: Additional attributes to filter/restrict the subscriptions, which can be added to the subscriptionIds.
62
62
  :param pulumi.Input[str] display_name: Display name of the GroupQuota entity.
63
63
  """
64
64
  if additional_attributes is not None:
@@ -70,7 +70,7 @@ class GroupQuotasEntityBaseArgs:
70
70
  @pulumi.getter(name="additionalAttributes")
71
71
  def additional_attributes(self) -> Optional[pulumi.Input['AdditionalAttributesArgs']]:
72
72
  """
73
- Additional attributes to allow subscription, which can be added to the subscriptionIds.
73
+ Additional attributes to filter/restrict the subscriptions, which can be added to the subscriptionIds.
74
74
  """
75
75
  return pulumi.get(self, "additional_attributes")
76
76
 
@@ -97,9 +97,9 @@ class GroupingIdArgs:
97
97
  grouping_id_type: Optional[pulumi.Input[Union[str, 'GroupingIdType']]] = None,
98
98
  value: Optional[pulumi.Input[str]] = None):
99
99
  """
100
- The grouping Id for the group quota. It can be management Group Id or ServiceTreeId if applicable.
101
- :param pulumi.Input[Union[str, 'GroupingIdType']] grouping_id_type: GroupingId type. It is a required property. More types of groupIds can be supported in future. MGID is already in the URI, so it's not needed.'
102
- :param pulumi.Input[str] value: GroupId value based on the groupingType selected - management Group Id or ServiceTreeId.
100
+ The grouping Id for the group quota. It can be Billing Id or ServiceTreeId if applicable.
101
+ :param pulumi.Input[Union[str, 'GroupingIdType']] grouping_id_type: GroupingId type. It is a required property. More types of groupIds can be supported in future.
102
+ :param pulumi.Input[str] value: GroupId value based on the groupingType selected - Billing Id or ServiceTreeId.
103
103
  """
104
104
  if grouping_id_type is not None:
105
105
  pulumi.set(__self__, "grouping_id_type", grouping_id_type)
@@ -110,7 +110,7 @@ class GroupingIdArgs:
110
110
  @pulumi.getter(name="groupingIdType")
111
111
  def grouping_id_type(self) -> Optional[pulumi.Input[Union[str, 'GroupingIdType']]]:
112
112
  """
113
- GroupingId type. It is a required property. More types of groupIds can be supported in future. MGID is already in the URI, so it's not needed.'
113
+ GroupingId type. It is a required property. More types of groupIds can be supported in future.
114
114
  """
115
115
  return pulumi.get(self, "grouping_id_type")
116
116
 
@@ -122,7 +122,7 @@ class GroupingIdArgs:
122
122
  @pulumi.getter
123
123
  def value(self) -> Optional[pulumi.Input[str]]:
124
124
  """
125
- GroupId value based on the groupingType selected - management Group Id or ServiceTreeId.
125
+ GroupId value based on the groupingType selected - Billing Id or ServiceTreeId.
126
126
  """
127
127
  return pulumi.get(self, "value")
128
128