pulumi-azure-native 2.51.0a1721670234__py3-none-any.whl → 2.51.0a1721718685__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 (564) hide show
  1. pulumi_azure_native/__init__.py +98 -0
  2. pulumi_azure_native/azurefleet/_enums.py +328 -53
  3. pulumi_azure_native/azurefleet/_inputs.py +2361 -1827
  4. pulumi_azure_native/azurefleet/fleet.py +20 -0
  5. pulumi_azure_native/azurefleet/get_fleet.py +27 -1
  6. pulumi_azure_native/azurefleet/outputs.py +1348 -1126
  7. pulumi_azure_native/azurefleet/v20231101preview/_enums.py +328 -53
  8. pulumi_azure_native/azurefleet/v20231101preview/_inputs.py +2361 -1827
  9. pulumi_azure_native/azurefleet/v20231101preview/fleet.py +20 -0
  10. pulumi_azure_native/azurefleet/v20231101preview/get_fleet.py +27 -1
  11. pulumi_azure_native/azurefleet/v20231101preview/outputs.py +1348 -1126
  12. pulumi_azure_native/azurefleet/v20240501preview/_enums.py +328 -53
  13. pulumi_azure_native/azurefleet/v20240501preview/_inputs.py +2361 -1827
  14. pulumi_azure_native/azurefleet/v20240501preview/fleet.py +20 -0
  15. pulumi_azure_native/azurefleet/v20240501preview/get_fleet.py +27 -1
  16. pulumi_azure_native/azurefleet/v20240501preview/outputs.py +1348 -1126
  17. pulumi_azure_native/cognitiveservices/__init__.py +3 -0
  18. pulumi_azure_native/cognitiveservices/account.py +3 -3
  19. pulumi_azure_native/cognitiveservices/commitment_plan.py +3 -3
  20. pulumi_azure_native/cognitiveservices/commitment_plan_association.py +3 -3
  21. pulumi_azure_native/cognitiveservices/deployment.py +3 -3
  22. pulumi_azure_native/cognitiveservices/encryption_scope.py +3 -3
  23. pulumi_azure_native/cognitiveservices/get_account.py +2 -2
  24. pulumi_azure_native/cognitiveservices/get_commitment_plan.py +2 -2
  25. pulumi_azure_native/cognitiveservices/get_commitment_plan_association.py +2 -2
  26. pulumi_azure_native/cognitiveservices/get_deployment.py +2 -2
  27. pulumi_azure_native/cognitiveservices/get_encryption_scope.py +2 -2
  28. pulumi_azure_native/cognitiveservices/get_private_endpoint_connection.py +2 -2
  29. pulumi_azure_native/cognitiveservices/get_rai_blocklist.py +2 -2
  30. pulumi_azure_native/cognitiveservices/get_rai_blocklist_item.py +2 -2
  31. pulumi_azure_native/cognitiveservices/get_rai_policy.py +2 -2
  32. pulumi_azure_native/cognitiveservices/get_shared_commitment_plan.py +2 -2
  33. pulumi_azure_native/cognitiveservices/list_account_keys.py +2 -2
  34. pulumi_azure_native/cognitiveservices/private_endpoint_connection.py +3 -3
  35. pulumi_azure_native/cognitiveservices/rai_blocklist.py +3 -3
  36. pulumi_azure_native/cognitiveservices/rai_blocklist_item.py +3 -3
  37. pulumi_azure_native/cognitiveservices/rai_policy.py +3 -3
  38. pulumi_azure_native/cognitiveservices/shared_commitment_plan.py +3 -3
  39. pulumi_azure_native/cognitiveservices/v20170418/account.py +1 -1
  40. pulumi_azure_native/cognitiveservices/v20230501/account.py +1 -1
  41. pulumi_azure_native/cognitiveservices/v20230501/commitment_plan.py +1 -1
  42. pulumi_azure_native/cognitiveservices/v20230501/commitment_plan_association.py +1 -1
  43. pulumi_azure_native/cognitiveservices/v20230501/deployment.py +1 -1
  44. pulumi_azure_native/cognitiveservices/v20230501/private_endpoint_connection.py +1 -1
  45. pulumi_azure_native/cognitiveservices/v20230501/shared_commitment_plan.py +1 -1
  46. pulumi_azure_native/cognitiveservices/v20231001preview/account.py +1 -1
  47. pulumi_azure_native/cognitiveservices/v20231001preview/commitment_plan.py +1 -1
  48. pulumi_azure_native/cognitiveservices/v20231001preview/commitment_plan_association.py +1 -1
  49. pulumi_azure_native/cognitiveservices/v20231001preview/deployment.py +1 -1
  50. pulumi_azure_native/cognitiveservices/v20231001preview/encryption_scope.py +1 -1
  51. pulumi_azure_native/cognitiveservices/v20231001preview/private_endpoint_connection.py +1 -1
  52. pulumi_azure_native/cognitiveservices/v20231001preview/rai_blocklist.py +1 -1
  53. pulumi_azure_native/cognitiveservices/v20231001preview/rai_blocklist_item.py +1 -1
  54. pulumi_azure_native/cognitiveservices/v20231001preview/rai_policy.py +1 -1
  55. pulumi_azure_native/cognitiveservices/v20231001preview/shared_commitment_plan.py +1 -1
  56. pulumi_azure_native/cognitiveservices/v20240401preview/account.py +1 -1
  57. pulumi_azure_native/cognitiveservices/v20240401preview/commitment_plan.py +1 -1
  58. pulumi_azure_native/cognitiveservices/v20240401preview/commitment_plan_association.py +1 -1
  59. pulumi_azure_native/cognitiveservices/v20240401preview/deployment.py +1 -1
  60. pulumi_azure_native/cognitiveservices/v20240401preview/encryption_scope.py +1 -1
  61. pulumi_azure_native/cognitiveservices/v20240401preview/private_endpoint_connection.py +1 -1
  62. pulumi_azure_native/cognitiveservices/v20240401preview/rai_blocklist.py +1 -1
  63. pulumi_azure_native/cognitiveservices/v20240401preview/rai_blocklist_item.py +1 -1
  64. pulumi_azure_native/cognitiveservices/v20240401preview/rai_policy.py +1 -1
  65. pulumi_azure_native/cognitiveservices/v20240401preview/shared_commitment_plan.py +1 -1
  66. pulumi_azure_native/cognitiveservices/v20240601preview/__init__.py +31 -0
  67. pulumi_azure_native/cognitiveservices/v20240601preview/_enums.py +156 -0
  68. pulumi_azure_native/cognitiveservices/v20240601preview/_inputs.py +2517 -0
  69. pulumi_azure_native/cognitiveservices/v20240601preview/account.py +355 -0
  70. pulumi_azure_native/cognitiveservices/v20240601preview/commitment_plan.py +347 -0
  71. pulumi_azure_native/cognitiveservices/v20240601preview/commitment_plan_association.py +258 -0
  72. pulumi_azure_native/cognitiveservices/v20240601preview/deployment.py +289 -0
  73. pulumi_azure_native/cognitiveservices/v20240601preview/encryption_scope.py +260 -0
  74. pulumi_azure_native/cognitiveservices/v20240601preview/get_account.py +214 -0
  75. pulumi_azure_native/cognitiveservices/v20240601preview/get_commitment_plan.py +206 -0
  76. pulumi_azure_native/cognitiveservices/v20240601preview/get_commitment_plan_association.py +167 -0
  77. pulumi_azure_native/cognitiveservices/v20240601preview/get_deployment.py +180 -0
  78. pulumi_azure_native/cognitiveservices/v20240601preview/get_encryption_scope.py +167 -0
  79. pulumi_azure_native/cognitiveservices/v20240601preview/get_private_endpoint_connection.py +167 -0
  80. pulumi_azure_native/cognitiveservices/v20240601preview/get_rai_blocklist.py +167 -0
  81. pulumi_azure_native/cognitiveservices/v20240601preview/get_rai_blocklist_item.py +172 -0
  82. pulumi_azure_native/cognitiveservices/v20240601preview/get_rai_policy.py +167 -0
  83. pulumi_azure_native/cognitiveservices/v20240601preview/get_shared_commitment_plan.py +201 -0
  84. pulumi_azure_native/cognitiveservices/v20240601preview/list_account_keys.py +96 -0
  85. pulumi_azure_native/cognitiveservices/v20240601preview/outputs.py +3209 -0
  86. pulumi_azure_native/cognitiveservices/v20240601preview/private_endpoint_connection.py +260 -0
  87. pulumi_azure_native/cognitiveservices/v20240601preview/rai_blocklist.py +259 -0
  88. pulumi_azure_native/cognitiveservices/v20240601preview/rai_blocklist_item.py +280 -0
  89. pulumi_azure_native/cognitiveservices/v20240601preview/rai_policy.py +260 -0
  90. pulumi_azure_native/cognitiveservices/v20240601preview/shared_commitment_plan.py +326 -0
  91. pulumi_azure_native/compute/__init__.py +3 -0
  92. pulumi_azure_native/compute/disk.py +3 -3
  93. pulumi_azure_native/compute/disk_access.py +3 -3
  94. pulumi_azure_native/compute/disk_access_a_private_endpoint_connection.py +3 -3
  95. pulumi_azure_native/compute/disk_encryption_set.py +3 -3
  96. pulumi_azure_native/compute/get_disk.py +2 -2
  97. pulumi_azure_native/compute/get_disk_access.py +2 -2
  98. pulumi_azure_native/compute/get_disk_access_a_private_endpoint_connection.py +2 -2
  99. pulumi_azure_native/compute/get_disk_encryption_set.py +2 -2
  100. pulumi_azure_native/compute/get_snapshot.py +2 -2
  101. pulumi_azure_native/compute/snapshot.py +3 -3
  102. pulumi_azure_native/compute/v20220702/disk.py +1 -1
  103. pulumi_azure_native/compute/v20220702/disk_access.py +1 -1
  104. pulumi_azure_native/compute/v20220702/disk_access_a_private_endpoint_connection.py +1 -1
  105. pulumi_azure_native/compute/v20220702/disk_encryption_set.py +1 -1
  106. pulumi_azure_native/compute/v20220702/snapshot.py +1 -1
  107. pulumi_azure_native/compute/v20230102/disk.py +1 -1
  108. pulumi_azure_native/compute/v20230102/disk_access.py +1 -1
  109. pulumi_azure_native/compute/v20230102/disk_access_a_private_endpoint_connection.py +1 -1
  110. pulumi_azure_native/compute/v20230102/disk_encryption_set.py +1 -1
  111. pulumi_azure_native/compute/v20230102/snapshot.py +1 -1
  112. pulumi_azure_native/compute/v20230402/disk.py +1 -1
  113. pulumi_azure_native/compute/v20230402/disk_access.py +1 -1
  114. pulumi_azure_native/compute/v20230402/disk_access_a_private_endpoint_connection.py +1 -1
  115. pulumi_azure_native/compute/v20230402/disk_encryption_set.py +1 -1
  116. pulumi_azure_native/compute/v20230402/snapshot.py +1 -1
  117. pulumi_azure_native/compute/v20231002/disk.py +1 -1
  118. pulumi_azure_native/compute/v20231002/disk_access.py +1 -1
  119. pulumi_azure_native/compute/v20231002/disk_access_a_private_endpoint_connection.py +1 -1
  120. pulumi_azure_native/compute/v20231002/disk_encryption_set.py +1 -1
  121. pulumi_azure_native/compute/v20231002/snapshot.py +1 -1
  122. pulumi_azure_native/compute/v20240302/__init__.py +20 -0
  123. pulumi_azure_native/compute/v20240302/_enums.py +303 -0
  124. pulumi_azure_native/compute/v20240302/_inputs.py +1334 -0
  125. pulumi_azure_native/compute/v20240302/disk.py +1084 -0
  126. pulumi_azure_native/compute/v20240302/disk_access.py +278 -0
  127. pulumi_azure_native/compute/v20240302/disk_access_a_private_endpoint_connection.py +232 -0
  128. pulumi_azure_native/compute/v20240302/disk_encryption_set.py +404 -0
  129. pulumi_azure_native/compute/v20240302/get_disk.py +617 -0
  130. pulumi_azure_native/compute/v20240302/get_disk_access.py +188 -0
  131. pulumi_azure_native/compute/v20240302/get_disk_access_a_private_endpoint_connection.py +154 -0
  132. pulumi_azure_native/compute/v20240302/get_disk_encryption_set.py +253 -0
  133. pulumi_azure_native/compute/v20240302/get_snapshot.py +474 -0
  134. pulumi_azure_native/compute/v20240302/outputs.py +1568 -0
  135. pulumi_azure_native/compute/v20240302/snapshot.py +841 -0
  136. pulumi_azure_native/containerservice/__init__.py +3 -0
  137. pulumi_azure_native/containerservice/agent_pool.py +3 -3
  138. pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
  139. pulumi_azure_native/containerservice/get_load_balancer.py +2 -2
  140. pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
  141. pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
  142. pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
  143. pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
  144. pulumi_azure_native/containerservice/get_snapshot.py +2 -2
  145. pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
  146. pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
  147. pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
  148. pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
  149. pulumi_azure_native/containerservice/load_balancer.py +3 -3
  150. pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
  151. pulumi_azure_native/containerservice/managed_cluster.py +3 -3
  152. pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
  153. pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
  154. pulumi_azure_native/containerservice/snapshot.py +3 -3
  155. pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
  156. pulumi_azure_native/containerservice/v20190601/managed_cluster.py +1 -1
  157. pulumi_azure_native/containerservice/v20200601/agent_pool.py +1 -1
  158. pulumi_azure_native/containerservice/v20210201/agent_pool.py +1 -1
  159. pulumi_azure_native/containerservice/v20210501/managed_cluster.py +1 -1
  160. pulumi_azure_native/containerservice/v20210801/agent_pool.py +1 -1
  161. pulumi_azure_native/containerservice/v20220402preview/agent_pool.py +1 -1
  162. pulumi_azure_native/containerservice/v20230401/agent_pool.py +1 -1
  163. pulumi_azure_native/containerservice/v20230401/maintenance_configuration.py +1 -1
  164. pulumi_azure_native/containerservice/v20230401/managed_cluster.py +1 -1
  165. pulumi_azure_native/containerservice/v20230401/private_endpoint_connection.py +1 -1
  166. pulumi_azure_native/containerservice/v20230401/snapshot.py +1 -1
  167. pulumi_azure_native/containerservice/v20230502preview/agent_pool.py +1 -1
  168. pulumi_azure_native/containerservice/v20230502preview/maintenance_configuration.py +1 -1
  169. pulumi_azure_native/containerservice/v20230502preview/managed_cluster.py +1 -1
  170. pulumi_azure_native/containerservice/v20230502preview/managed_cluster_snapshot.py +1 -1
  171. pulumi_azure_native/containerservice/v20230502preview/private_endpoint_connection.py +1 -1
  172. pulumi_azure_native/containerservice/v20230502preview/snapshot.py +1 -1
  173. pulumi_azure_native/containerservice/v20230502preview/trusted_access_role_binding.py +1 -1
  174. pulumi_azure_native/containerservice/v20230601/agent_pool.py +1 -1
  175. pulumi_azure_native/containerservice/v20230601/maintenance_configuration.py +1 -1
  176. pulumi_azure_native/containerservice/v20230601/managed_cluster.py +1 -1
  177. pulumi_azure_native/containerservice/v20230601/private_endpoint_connection.py +1 -1
  178. pulumi_azure_native/containerservice/v20230601/snapshot.py +1 -1
  179. pulumi_azure_native/containerservice/v20230602preview/agent_pool.py +1 -1
  180. pulumi_azure_native/containerservice/v20230602preview/maintenance_configuration.py +1 -1
  181. pulumi_azure_native/containerservice/v20230602preview/managed_cluster.py +1 -1
  182. pulumi_azure_native/containerservice/v20230602preview/managed_cluster_snapshot.py +1 -1
  183. pulumi_azure_native/containerservice/v20230602preview/private_endpoint_connection.py +1 -1
  184. pulumi_azure_native/containerservice/v20230602preview/snapshot.py +1 -1
  185. pulumi_azure_native/containerservice/v20230602preview/trusted_access_role_binding.py +1 -1
  186. pulumi_azure_native/containerservice/v20230701/agent_pool.py +1 -1
  187. pulumi_azure_native/containerservice/v20230701/maintenance_configuration.py +1 -1
  188. pulumi_azure_native/containerservice/v20230701/managed_cluster.py +1 -1
  189. pulumi_azure_native/containerservice/v20230701/private_endpoint_connection.py +1 -1
  190. pulumi_azure_native/containerservice/v20230701/snapshot.py +1 -1
  191. pulumi_azure_native/containerservice/v20230702preview/agent_pool.py +1 -1
  192. pulumi_azure_native/containerservice/v20230702preview/maintenance_configuration.py +1 -1
  193. pulumi_azure_native/containerservice/v20230702preview/managed_cluster.py +1 -1
  194. pulumi_azure_native/containerservice/v20230702preview/managed_cluster_snapshot.py +1 -1
  195. pulumi_azure_native/containerservice/v20230702preview/private_endpoint_connection.py +1 -1
  196. pulumi_azure_native/containerservice/v20230702preview/snapshot.py +1 -1
  197. pulumi_azure_native/containerservice/v20230702preview/trusted_access_role_binding.py +1 -1
  198. pulumi_azure_native/containerservice/v20230801/agent_pool.py +1 -1
  199. pulumi_azure_native/containerservice/v20230801/maintenance_configuration.py +1 -1
  200. pulumi_azure_native/containerservice/v20230801/managed_cluster.py +1 -1
  201. pulumi_azure_native/containerservice/v20230801/private_endpoint_connection.py +1 -1
  202. pulumi_azure_native/containerservice/v20230801/snapshot.py +1 -1
  203. pulumi_azure_native/containerservice/v20230802preview/agent_pool.py +1 -1
  204. pulumi_azure_native/containerservice/v20230802preview/maintenance_configuration.py +1 -1
  205. pulumi_azure_native/containerservice/v20230802preview/managed_cluster.py +1 -1
  206. pulumi_azure_native/containerservice/v20230802preview/managed_cluster_snapshot.py +1 -1
  207. pulumi_azure_native/containerservice/v20230802preview/private_endpoint_connection.py +1 -1
  208. pulumi_azure_native/containerservice/v20230802preview/snapshot.py +1 -1
  209. pulumi_azure_native/containerservice/v20230802preview/trusted_access_role_binding.py +1 -1
  210. pulumi_azure_native/containerservice/v20230901/agent_pool.py +1 -1
  211. pulumi_azure_native/containerservice/v20230901/maintenance_configuration.py +1 -1
  212. pulumi_azure_native/containerservice/v20230901/managed_cluster.py +1 -1
  213. pulumi_azure_native/containerservice/v20230901/private_endpoint_connection.py +1 -1
  214. pulumi_azure_native/containerservice/v20230901/snapshot.py +1 -1
  215. pulumi_azure_native/containerservice/v20230901/trusted_access_role_binding.py +1 -1
  216. pulumi_azure_native/containerservice/v20230902preview/agent_pool.py +1 -1
  217. pulumi_azure_native/containerservice/v20230902preview/maintenance_configuration.py +1 -1
  218. pulumi_azure_native/containerservice/v20230902preview/managed_cluster.py +1 -1
  219. pulumi_azure_native/containerservice/v20230902preview/managed_cluster_snapshot.py +1 -1
  220. pulumi_azure_native/containerservice/v20230902preview/private_endpoint_connection.py +1 -1
  221. pulumi_azure_native/containerservice/v20230902preview/snapshot.py +1 -1
  222. pulumi_azure_native/containerservice/v20230902preview/trusted_access_role_binding.py +1 -1
  223. pulumi_azure_native/containerservice/v20231001/agent_pool.py +1 -1
  224. pulumi_azure_native/containerservice/v20231001/maintenance_configuration.py +1 -1
  225. pulumi_azure_native/containerservice/v20231001/managed_cluster.py +1 -1
  226. pulumi_azure_native/containerservice/v20231001/private_endpoint_connection.py +1 -1
  227. pulumi_azure_native/containerservice/v20231001/snapshot.py +1 -1
  228. pulumi_azure_native/containerservice/v20231001/trusted_access_role_binding.py +1 -1
  229. pulumi_azure_native/containerservice/v20231002preview/agent_pool.py +1 -1
  230. pulumi_azure_native/containerservice/v20231002preview/maintenance_configuration.py +1 -1
  231. pulumi_azure_native/containerservice/v20231002preview/managed_cluster.py +1 -1
  232. pulumi_azure_native/containerservice/v20231002preview/managed_cluster_snapshot.py +1 -1
  233. pulumi_azure_native/containerservice/v20231002preview/private_endpoint_connection.py +1 -1
  234. pulumi_azure_native/containerservice/v20231002preview/snapshot.py +1 -1
  235. pulumi_azure_native/containerservice/v20231002preview/trusted_access_role_binding.py +1 -1
  236. pulumi_azure_native/containerservice/v20231101/agent_pool.py +1 -1
  237. pulumi_azure_native/containerservice/v20231101/maintenance_configuration.py +1 -1
  238. pulumi_azure_native/containerservice/v20231101/managed_cluster.py +1 -1
  239. pulumi_azure_native/containerservice/v20231101/private_endpoint_connection.py +1 -1
  240. pulumi_azure_native/containerservice/v20231101/snapshot.py +1 -1
  241. pulumi_azure_native/containerservice/v20231101/trusted_access_role_binding.py +1 -1
  242. pulumi_azure_native/containerservice/v20231102preview/agent_pool.py +1 -1
  243. pulumi_azure_native/containerservice/v20231102preview/maintenance_configuration.py +1 -1
  244. pulumi_azure_native/containerservice/v20231102preview/managed_cluster.py +1 -1
  245. pulumi_azure_native/containerservice/v20231102preview/managed_cluster_snapshot.py +1 -1
  246. pulumi_azure_native/containerservice/v20231102preview/private_endpoint_connection.py +1 -1
  247. pulumi_azure_native/containerservice/v20231102preview/snapshot.py +1 -1
  248. pulumi_azure_native/containerservice/v20231102preview/trusted_access_role_binding.py +1 -1
  249. pulumi_azure_native/containerservice/v20240101/agent_pool.py +1 -1
  250. pulumi_azure_native/containerservice/v20240101/maintenance_configuration.py +1 -1
  251. pulumi_azure_native/containerservice/v20240101/managed_cluster.py +1 -1
  252. pulumi_azure_native/containerservice/v20240101/private_endpoint_connection.py +1 -1
  253. pulumi_azure_native/containerservice/v20240101/snapshot.py +1 -1
  254. pulumi_azure_native/containerservice/v20240101/trusted_access_role_binding.py +1 -1
  255. pulumi_azure_native/containerservice/v20240102preview/agent_pool.py +1 -1
  256. pulumi_azure_native/containerservice/v20240102preview/maintenance_configuration.py +1 -1
  257. pulumi_azure_native/containerservice/v20240102preview/managed_cluster.py +1 -1
  258. pulumi_azure_native/containerservice/v20240102preview/managed_cluster_snapshot.py +1 -1
  259. pulumi_azure_native/containerservice/v20240102preview/private_endpoint_connection.py +1 -1
  260. pulumi_azure_native/containerservice/v20240102preview/snapshot.py +1 -1
  261. pulumi_azure_native/containerservice/v20240102preview/trusted_access_role_binding.py +1 -1
  262. pulumi_azure_native/containerservice/v20240201/agent_pool.py +1 -1
  263. pulumi_azure_native/containerservice/v20240201/maintenance_configuration.py +1 -1
  264. pulumi_azure_native/containerservice/v20240201/managed_cluster.py +1 -1
  265. pulumi_azure_native/containerservice/v20240201/private_endpoint_connection.py +1 -1
  266. pulumi_azure_native/containerservice/v20240201/snapshot.py +1 -1
  267. pulumi_azure_native/containerservice/v20240201/trusted_access_role_binding.py +1 -1
  268. pulumi_azure_native/containerservice/v20240202preview/agent_pool.py +1 -1
  269. pulumi_azure_native/containerservice/v20240202preview/maintenance_configuration.py +1 -1
  270. pulumi_azure_native/containerservice/v20240202preview/managed_cluster.py +1 -1
  271. pulumi_azure_native/containerservice/v20240202preview/managed_cluster_snapshot.py +1 -1
  272. pulumi_azure_native/containerservice/v20240202preview/private_endpoint_connection.py +1 -1
  273. pulumi_azure_native/containerservice/v20240202preview/snapshot.py +1 -1
  274. pulumi_azure_native/containerservice/v20240202preview/trusted_access_role_binding.py +1 -1
  275. pulumi_azure_native/containerservice/v20240302preview/agent_pool.py +1 -1
  276. pulumi_azure_native/containerservice/v20240302preview/load_balancer.py +1 -1
  277. pulumi_azure_native/containerservice/v20240302preview/maintenance_configuration.py +1 -1
  278. pulumi_azure_native/containerservice/v20240302preview/managed_cluster.py +1 -1
  279. pulumi_azure_native/containerservice/v20240302preview/managed_cluster_snapshot.py +1 -1
  280. pulumi_azure_native/containerservice/v20240302preview/private_endpoint_connection.py +1 -1
  281. pulumi_azure_native/containerservice/v20240302preview/snapshot.py +1 -1
  282. pulumi_azure_native/containerservice/v20240302preview/trusted_access_role_binding.py +1 -1
  283. pulumi_azure_native/containerservice/v20240402preview/agent_pool.py +1 -1
  284. pulumi_azure_native/containerservice/v20240402preview/load_balancer.py +1 -1
  285. pulumi_azure_native/containerservice/v20240402preview/maintenance_configuration.py +1 -1
  286. pulumi_azure_native/containerservice/v20240402preview/managed_cluster.py +1 -1
  287. pulumi_azure_native/containerservice/v20240402preview/managed_cluster_snapshot.py +1 -1
  288. pulumi_azure_native/containerservice/v20240402preview/private_endpoint_connection.py +1 -1
  289. pulumi_azure_native/containerservice/v20240402preview/snapshot.py +1 -1
  290. pulumi_azure_native/containerservice/v20240402preview/trusted_access_role_binding.py +1 -1
  291. pulumi_azure_native/containerservice/v20240501/agent_pool.py +1 -1
  292. pulumi_azure_native/containerservice/v20240501/maintenance_configuration.py +1 -1
  293. pulumi_azure_native/containerservice/v20240501/managed_cluster.py +1 -1
  294. pulumi_azure_native/containerservice/v20240501/private_endpoint_connection.py +1 -1
  295. pulumi_azure_native/containerservice/v20240501/snapshot.py +1 -1
  296. pulumi_azure_native/containerservice/v20240501/trusted_access_role_binding.py +1 -1
  297. pulumi_azure_native/containerservice/v20240502preview/__init__.py +29 -0
  298. pulumi_azure_native/containerservice/v20240502preview/_enums.py +874 -0
  299. pulumi_azure_native/containerservice/v20240502preview/_inputs.py +9520 -0
  300. pulumi_azure_native/containerservice/v20240502preview/agent_pool.py +1691 -0
  301. pulumi_azure_native/containerservice/v20240502preview/get_agent_pool.py +817 -0
  302. pulumi_azure_native/containerservice/v20240502preview/get_load_balancer.py +206 -0
  303. pulumi_azure_native/containerservice/v20240502preview/get_maintenance_configuration.py +167 -0
  304. pulumi_azure_native/containerservice/v20240502preview/get_managed_cluster.py +838 -0
  305. pulumi_azure_native/containerservice/v20240502preview/get_managed_cluster_snapshot.py +188 -0
  306. pulumi_azure_native/containerservice/v20240502preview/get_private_endpoint_connection.py +154 -0
  307. pulumi_azure_native/containerservice/v20240502preview/get_snapshot.py +253 -0
  308. pulumi_azure_native/containerservice/v20240502preview/get_trusted_access_role_binding.py +167 -0
  309. pulumi_azure_native/containerservice/v20240502preview/list_managed_cluster_admin_credentials.py +89 -0
  310. pulumi_azure_native/containerservice/v20240502preview/list_managed_cluster_monitoring_user_credentials.py +89 -0
  311. pulumi_azure_native/containerservice/v20240502preview/list_managed_cluster_user_credentials.py +94 -0
  312. pulumi_azure_native/containerservice/v20240502preview/load_balancer.py +368 -0
  313. pulumi_azure_native/containerservice/v20240502preview/maintenance_configuration.py +279 -0
  314. pulumi_azure_native/containerservice/v20240502preview/managed_cluster.py +1595 -0
  315. pulumi_azure_native/containerservice/v20240502preview/managed_cluster_snapshot.py +297 -0
  316. pulumi_azure_native/containerservice/v20240502preview/outputs.py +8194 -0
  317. pulumi_azure_native/containerservice/v20240502preview/private_endpoint_connection.py +251 -0
  318. pulumi_azure_native/containerservice/v20240502preview/snapshot.py +347 -0
  319. pulumi_azure_native/containerservice/v20240502preview/trusted_access_role_binding.py +260 -0
  320. pulumi_azure_native/datafactory/_inputs.py +110 -10
  321. pulumi_azure_native/datafactory/outputs.py +69 -7
  322. pulumi_azure_native/datafactory/v20180601/_inputs.py +110 -10
  323. pulumi_azure_native/datafactory/v20180601/outputs.py +69 -7
  324. pulumi_azure_native/desktopvirtualization/__init__.py +1 -0
  325. pulumi_azure_native/desktopvirtualization/list_host_pool_registration_tokens.py +103 -0
  326. pulumi_azure_native/desktopvirtualization/outputs.py +36 -0
  327. pulumi_azure_native/desktopvirtualization/v20240403/__init__.py +1 -0
  328. pulumi_azure_native/desktopvirtualization/v20240403/list_host_pool_registration_tokens.py +97 -0
  329. pulumi_azure_native/desktopvirtualization/v20240403/outputs.py +36 -0
  330. pulumi_azure_native/desktopvirtualization/v20240408preview/__init__.py +1 -0
  331. pulumi_azure_native/desktopvirtualization/v20240408preview/list_host_pool_registration_tokens.py +97 -0
  332. pulumi_azure_native/desktopvirtualization/v20240408preview/outputs.py +36 -0
  333. pulumi_azure_native/documentdb/v20230915/database_account.py +4 -4
  334. pulumi_azure_native/documentdb/v20230915/get_database_account.py +1 -1
  335. pulumi_azure_native/documentdb/v20231115/database_account.py +4 -4
  336. pulumi_azure_native/documentdb/v20231115/get_database_account.py +1 -1
  337. pulumi_azure_native/documentdb/v20240515/database_account.py +4 -4
  338. pulumi_azure_native/documentdb/v20240515/get_database_account.py +1 -1
  339. pulumi_azure_native/healthdataaiservices/__init__.py +22 -0
  340. pulumi_azure_native/healthdataaiservices/_enums.py +44 -0
  341. pulumi_azure_native/healthdataaiservices/_inputs.py +232 -0
  342. pulumi_azure_native/healthdataaiservices/deid_service.py +289 -0
  343. pulumi_azure_native/healthdataaiservices/get_deid_service.py +177 -0
  344. pulumi_azure_native/healthdataaiservices/get_private_endpoint_connection.py +143 -0
  345. pulumi_azure_native/healthdataaiservices/outputs.py +637 -0
  346. pulumi_azure_native/healthdataaiservices/private_endpoint_connection.py +223 -0
  347. pulumi_azure_native/healthdataaiservices/v20240228preview/__init__.py +14 -0
  348. pulumi_azure_native/healthdataaiservices/v20240228preview/_enums.py +44 -0
  349. pulumi_azure_native/healthdataaiservices/v20240228preview/_inputs.py +232 -0
  350. pulumi_azure_native/healthdataaiservices/v20240228preview/deid_service.py +287 -0
  351. pulumi_azure_native/healthdataaiservices/v20240228preview/get_deid_service.py +175 -0
  352. pulumi_azure_native/healthdataaiservices/v20240228preview/get_private_endpoint_connection.py +141 -0
  353. pulumi_azure_native/healthdataaiservices/v20240228preview/outputs.py +637 -0
  354. pulumi_azure_native/healthdataaiservices/v20240228preview/private_endpoint_connection.py +221 -0
  355. pulumi_azure_native/netapp/__init__.py +4 -0
  356. pulumi_azure_native/netapp/account.py +3 -3
  357. pulumi_azure_native/netapp/backup.py +2 -2
  358. pulumi_azure_native/netapp/backup_policy.py +3 -3
  359. pulumi_azure_native/netapp/backup_vault.py +3 -3
  360. pulumi_azure_native/netapp/get_account.py +2 -2
  361. pulumi_azure_native/netapp/get_backup.py +2 -2
  362. pulumi_azure_native/netapp/get_backup_policy.py +2 -2
  363. pulumi_azure_native/netapp/get_backup_vault.py +2 -2
  364. pulumi_azure_native/netapp/get_pool.py +2 -2
  365. pulumi_azure_native/netapp/get_snapshot.py +2 -2
  366. pulumi_azure_native/netapp/get_snapshot_policy.py +2 -2
  367. pulumi_azure_native/netapp/get_subvolume.py +2 -2
  368. pulumi_azure_native/netapp/get_subvolume_metadata.py +2 -2
  369. pulumi_azure_native/netapp/get_volume.py +2 -2
  370. pulumi_azure_native/netapp/get_volume_group.py +2 -2
  371. pulumi_azure_native/netapp/get_volume_group_id_for_ldap_user.py +2 -2
  372. pulumi_azure_native/netapp/get_volume_quota_rule.py +2 -2
  373. pulumi_azure_native/netapp/list_volume_quota_report.py +109 -0
  374. pulumi_azure_native/netapp/list_volume_replications.py +2 -2
  375. pulumi_azure_native/netapp/outputs.py +84 -0
  376. pulumi_azure_native/netapp/pool.py +3 -3
  377. pulumi_azure_native/netapp/snapshot.py +3 -3
  378. pulumi_azure_native/netapp/snapshot_policy.py +3 -3
  379. pulumi_azure_native/netapp/subvolume.py +3 -3
  380. pulumi_azure_native/netapp/v20210401/backup_policy.py +1 -1
  381. pulumi_azure_native/netapp/v20210401preview/backup_policy.py +1 -1
  382. pulumi_azure_native/netapp/v20211001/volume.py +1 -1
  383. pulumi_azure_native/netapp/v20211001/volume_group.py +1 -1
  384. pulumi_azure_native/netapp/v20220501/account.py +1 -1
  385. pulumi_azure_native/netapp/v20221101/account.py +1 -1
  386. pulumi_azure_native/netapp/v20221101/backup_policy.py +1 -1
  387. pulumi_azure_native/netapp/v20221101/pool.py +1 -1
  388. pulumi_azure_native/netapp/v20221101/snapshot.py +1 -1
  389. pulumi_azure_native/netapp/v20221101/snapshot_policy.py +1 -1
  390. pulumi_azure_native/netapp/v20221101/subvolume.py +1 -1
  391. pulumi_azure_native/netapp/v20221101/volume.py +1 -1
  392. pulumi_azure_native/netapp/v20221101/volume_group.py +1 -1
  393. pulumi_azure_native/netapp/v20221101/volume_quota_rule.py +1 -1
  394. pulumi_azure_native/netapp/v20221101preview/account.py +1 -1
  395. pulumi_azure_native/netapp/v20221101preview/backup.py +1 -1
  396. pulumi_azure_native/netapp/v20221101preview/backup_policy.py +1 -1
  397. pulumi_azure_native/netapp/v20221101preview/backup_vault.py +1 -1
  398. pulumi_azure_native/netapp/v20221101preview/pool.py +1 -1
  399. pulumi_azure_native/netapp/v20221101preview/snapshot.py +1 -1
  400. pulumi_azure_native/netapp/v20221101preview/snapshot_policy.py +1 -1
  401. pulumi_azure_native/netapp/v20221101preview/subvolume.py +1 -1
  402. pulumi_azure_native/netapp/v20221101preview/volume.py +1 -1
  403. pulumi_azure_native/netapp/v20221101preview/volume_group.py +1 -1
  404. pulumi_azure_native/netapp/v20221101preview/volume_quota_rule.py +1 -1
  405. pulumi_azure_native/netapp/v20230501/account.py +1 -1
  406. pulumi_azure_native/netapp/v20230501/backup_policy.py +1 -1
  407. pulumi_azure_native/netapp/v20230501/pool.py +1 -1
  408. pulumi_azure_native/netapp/v20230501/snapshot.py +1 -1
  409. pulumi_azure_native/netapp/v20230501/snapshot_policy.py +1 -1
  410. pulumi_azure_native/netapp/v20230501/subvolume.py +1 -1
  411. pulumi_azure_native/netapp/v20230501/volume.py +1 -1
  412. pulumi_azure_native/netapp/v20230501/volume_group.py +1 -1
  413. pulumi_azure_native/netapp/v20230501/volume_quota_rule.py +1 -1
  414. pulumi_azure_native/netapp/v20230501preview/account.py +1 -1
  415. pulumi_azure_native/netapp/v20230501preview/backup.py +1 -1
  416. pulumi_azure_native/netapp/v20230501preview/backup_policy.py +1 -1
  417. pulumi_azure_native/netapp/v20230501preview/backup_vault.py +1 -1
  418. pulumi_azure_native/netapp/v20230501preview/pool.py +1 -1
  419. pulumi_azure_native/netapp/v20230501preview/snapshot.py +1 -1
  420. pulumi_azure_native/netapp/v20230501preview/snapshot_policy.py +1 -1
  421. pulumi_azure_native/netapp/v20230501preview/subvolume.py +1 -1
  422. pulumi_azure_native/netapp/v20230501preview/volume.py +1 -1
  423. pulumi_azure_native/netapp/v20230501preview/volume_group.py +1 -1
  424. pulumi_azure_native/netapp/v20230501preview/volume_quota_rule.py +1 -1
  425. pulumi_azure_native/netapp/v20230701/account.py +1 -1
  426. pulumi_azure_native/netapp/v20230701/backup_policy.py +1 -1
  427. pulumi_azure_native/netapp/v20230701/pool.py +1 -1
  428. pulumi_azure_native/netapp/v20230701/snapshot.py +1 -1
  429. pulumi_azure_native/netapp/v20230701/snapshot_policy.py +1 -1
  430. pulumi_azure_native/netapp/v20230701/subvolume.py +1 -1
  431. pulumi_azure_native/netapp/v20230701/volume.py +1 -1
  432. pulumi_azure_native/netapp/v20230701/volume_group.py +1 -1
  433. pulumi_azure_native/netapp/v20230701/volume_quota_rule.py +1 -1
  434. pulumi_azure_native/netapp/v20230701preview/account.py +1 -1
  435. pulumi_azure_native/netapp/v20230701preview/backup.py +1 -1
  436. pulumi_azure_native/netapp/v20230701preview/backup_policy.py +1 -1
  437. pulumi_azure_native/netapp/v20230701preview/backup_vault.py +1 -1
  438. pulumi_azure_native/netapp/v20230701preview/pool.py +1 -1
  439. pulumi_azure_native/netapp/v20230701preview/snapshot.py +1 -1
  440. pulumi_azure_native/netapp/v20230701preview/snapshot_policy.py +1 -1
  441. pulumi_azure_native/netapp/v20230701preview/subvolume.py +1 -1
  442. pulumi_azure_native/netapp/v20230701preview/volume.py +1 -1
  443. pulumi_azure_native/netapp/v20230701preview/volume_group.py +1 -1
  444. pulumi_azure_native/netapp/v20230701preview/volume_quota_rule.py +1 -1
  445. pulumi_azure_native/netapp/v20231101/account.py +1 -1
  446. pulumi_azure_native/netapp/v20231101/backup.py +1 -1
  447. pulumi_azure_native/netapp/v20231101/backup_policy.py +1 -1
  448. pulumi_azure_native/netapp/v20231101/backup_vault.py +1 -1
  449. pulumi_azure_native/netapp/v20231101/pool.py +1 -1
  450. pulumi_azure_native/netapp/v20231101/snapshot.py +1 -1
  451. pulumi_azure_native/netapp/v20231101/snapshot_policy.py +1 -1
  452. pulumi_azure_native/netapp/v20231101/subvolume.py +1 -1
  453. pulumi_azure_native/netapp/v20231101/volume.py +1 -1
  454. pulumi_azure_native/netapp/v20231101/volume_group.py +1 -1
  455. pulumi_azure_native/netapp/v20231101/volume_quota_rule.py +1 -1
  456. pulumi_azure_native/netapp/v20231101preview/account.py +1 -1
  457. pulumi_azure_native/netapp/v20231101preview/backup.py +1 -1
  458. pulumi_azure_native/netapp/v20231101preview/backup_policy.py +1 -1
  459. pulumi_azure_native/netapp/v20231101preview/backup_vault.py +1 -1
  460. pulumi_azure_native/netapp/v20231101preview/pool.py +1 -1
  461. pulumi_azure_native/netapp/v20231101preview/snapshot.py +1 -1
  462. pulumi_azure_native/netapp/v20231101preview/snapshot_policy.py +1 -1
  463. pulumi_azure_native/netapp/v20231101preview/subvolume.py +1 -1
  464. pulumi_azure_native/netapp/v20231101preview/volume.py +1 -1
  465. pulumi_azure_native/netapp/v20231101preview/volume_group.py +1 -1
  466. pulumi_azure_native/netapp/v20231101preview/volume_quota_rule.py +1 -1
  467. pulumi_azure_native/netapp/v20240301preview/__init__.py +36 -0
  468. pulumi_azure_native/netapp/v20240301preview/_enums.py +565 -0
  469. pulumi_azure_native/netapp/v20240301preview/_inputs.py +3100 -0
  470. pulumi_azure_native/netapp/v20240301preview/account.py +385 -0
  471. pulumi_azure_native/netapp/v20240301preview/backup.py +402 -0
  472. pulumi_azure_native/netapp/v20240301preview/backup_policy.py +414 -0
  473. pulumi_azure_native/netapp/v20240301preview/backup_vault.py +258 -0
  474. pulumi_azure_native/netapp/v20240301preview/get_account.py +253 -0
  475. pulumi_azure_native/netapp/v20240301preview/get_backup.py +276 -0
  476. pulumi_azure_native/netapp/v20240301preview/get_backup_policy.py +271 -0
  477. pulumi_azure_native/netapp/v20240301preview/get_backup_vault.py +167 -0
  478. pulumi_azure_native/netapp/v20240301preview/get_pool.py +284 -0
  479. pulumi_azure_native/netapp/v20240301preview/get_snapshot.py +190 -0
  480. pulumi_azure_native/netapp/v20240301preview/get_snapshot_policy.py +245 -0
  481. pulumi_azure_native/netapp/v20240301preview/get_subvolume.py +190 -0
  482. pulumi_azure_native/netapp/v20240301preview/get_subvolume_metadata.py +254 -0
  483. pulumi_azure_native/netapp/v20240301preview/get_volume.py +926 -0
  484. pulumi_azure_native/netapp/v20240301preview/get_volume_group.py +167 -0
  485. pulumi_azure_native/netapp/v20240301preview/get_volume_group_id_for_ldap_user.py +98 -0
  486. pulumi_azure_native/netapp/v20240301preview/get_volume_quota_rule.py +216 -0
  487. pulumi_azure_native/netapp/v20240301preview/list_volume_quota_report.py +107 -0
  488. pulumi_azure_native/netapp/v20240301preview/list_volume_replications.py +94 -0
  489. pulumi_azure_native/netapp/v20240301preview/outputs.py +3344 -0
  490. pulumi_azure_native/netapp/v20240301preview/pool.py +462 -0
  491. pulumi_azure_native/netapp/v20240301preview/snapshot.py +291 -0
  492. pulumi_azure_native/netapp/v20240301preview/snapshot_policy.py +414 -0
  493. pulumi_azure_native/netapp/v20240301preview/subvolume.py +329 -0
  494. pulumi_azure_native/netapp/v20240301preview/volume.py +1707 -0
  495. pulumi_azure_native/netapp/v20240301preview/volume_group.py +279 -0
  496. pulumi_azure_native/netapp/v20240301preview/volume_quota_rule.py +388 -0
  497. pulumi_azure_native/netapp/volume.py +3 -3
  498. pulumi_azure_native/netapp/volume_group.py +3 -3
  499. pulumi_azure_native/netapp/volume_quota_rule.py +3 -3
  500. pulumi_azure_native/pulumi-plugin.json +1 -1
  501. pulumi_azure_native/scvmm/__init__.py +3 -0
  502. pulumi_azure_native/scvmm/availability_set.py +3 -3
  503. pulumi_azure_native/scvmm/cloud.py +3 -3
  504. pulumi_azure_native/scvmm/get_availability_set.py +2 -2
  505. pulumi_azure_native/scvmm/get_cloud.py +2 -2
  506. pulumi_azure_native/scvmm/get_guest_agent.py +2 -2
  507. pulumi_azure_native/scvmm/get_inventory_item.py +2 -2
  508. pulumi_azure_native/scvmm/get_virtual_machine_instance.py +2 -2
  509. pulumi_azure_native/scvmm/get_virtual_machine_template.py +2 -2
  510. pulumi_azure_native/scvmm/get_virtual_network.py +2 -2
  511. pulumi_azure_native/scvmm/get_vmm_server.py +2 -2
  512. pulumi_azure_native/scvmm/guest_agent.py +2 -2
  513. pulumi_azure_native/scvmm/inventory_item.py +3 -3
  514. pulumi_azure_native/scvmm/v20220521preview/availability_set.py +1 -1
  515. pulumi_azure_native/scvmm/v20220521preview/cloud.py +1 -1
  516. pulumi_azure_native/scvmm/v20220521preview/inventory_item.py +1 -1
  517. pulumi_azure_native/scvmm/v20220521preview/virtual_machine_template.py +1 -1
  518. pulumi_azure_native/scvmm/v20220521preview/virtual_network.py +1 -1
  519. pulumi_azure_native/scvmm/v20220521preview/vmm_server.py +1 -1
  520. pulumi_azure_native/scvmm/v20230401preview/availability_set.py +1 -1
  521. pulumi_azure_native/scvmm/v20230401preview/cloud.py +1 -1
  522. pulumi_azure_native/scvmm/v20230401preview/inventory_item.py +1 -1
  523. pulumi_azure_native/scvmm/v20230401preview/virtual_machine_instance.py +1 -1
  524. pulumi_azure_native/scvmm/v20230401preview/virtual_machine_template.py +1 -1
  525. pulumi_azure_native/scvmm/v20230401preview/virtual_network.py +1 -1
  526. pulumi_azure_native/scvmm/v20230401preview/vm_instance_guest_agent.py +1 -1
  527. pulumi_azure_native/scvmm/v20230401preview/vmm_server.py +1 -1
  528. pulumi_azure_native/scvmm/v20231007/availability_set.py +1 -1
  529. pulumi_azure_native/scvmm/v20231007/cloud.py +1 -1
  530. pulumi_azure_native/scvmm/v20231007/guest_agent.py +1 -1
  531. pulumi_azure_native/scvmm/v20231007/inventory_item.py +1 -1
  532. pulumi_azure_native/scvmm/v20231007/virtual_machine_instance.py +1 -1
  533. pulumi_azure_native/scvmm/v20231007/virtual_machine_template.py +1 -1
  534. pulumi_azure_native/scvmm/v20231007/virtual_network.py +1 -1
  535. pulumi_azure_native/scvmm/v20231007/vmm_server.py +1 -1
  536. pulumi_azure_native/scvmm/v20240601/__init__.py +26 -0
  537. pulumi_azure_native/scvmm/v20240601/_enums.py +110 -0
  538. pulumi_azure_native/scvmm/v20240601/_inputs.py +1334 -0
  539. pulumi_azure_native/scvmm/v20240601/availability_set.py +326 -0
  540. pulumi_azure_native/scvmm/v20240601/cloud.py +385 -0
  541. pulumi_azure_native/scvmm/v20240601/get_availability_set.py +201 -0
  542. pulumi_azure_native/scvmm/v20240601/get_cloud.py +253 -0
  543. pulumi_azure_native/scvmm/v20240601/get_guest_agent.py +222 -0
  544. pulumi_azure_native/scvmm/v20240601/get_inventory_item.py +206 -0
  545. pulumi_azure_native/scvmm/v20240601/get_virtual_machine_instance.py +235 -0
  546. pulumi_azure_native/scvmm/v20240601/get_virtual_machine_template.py +396 -0
  547. pulumi_azure_native/scvmm/v20240601/get_virtual_network.py +227 -0
  548. pulumi_azure_native/scvmm/v20240601/get_vmm_server.py +266 -0
  549. pulumi_azure_native/scvmm/v20240601/guest_agent.py +307 -0
  550. pulumi_azure_native/scvmm/v20240601/inventory_item.py +290 -0
  551. pulumi_azure_native/scvmm/v20240601/outputs.py +1476 -0
  552. pulumi_azure_native/scvmm/v20240601/virtual_machine_instance.py +375 -0
  553. pulumi_azure_native/scvmm/v20240601/virtual_machine_template.py +495 -0
  554. pulumi_azure_native/scvmm/v20240601/virtual_network.py +365 -0
  555. pulumi_azure_native/scvmm/v20240601/vmm_server.py +396 -0
  556. pulumi_azure_native/scvmm/virtual_machine_instance.py +3 -3
  557. pulumi_azure_native/scvmm/virtual_machine_template.py +3 -3
  558. pulumi_azure_native/scvmm/virtual_network.py +3 -3
  559. pulumi_azure_native/scvmm/vm_instance_guest_agent.py +1 -1
  560. pulumi_azure_native/scvmm/vmm_server.py +3 -3
  561. {pulumi_azure_native-2.51.0a1721670234.dist-info → pulumi_azure_native-2.51.0a1721718685.dist-info}/METADATA +1 -1
  562. {pulumi_azure_native-2.51.0a1721670234.dist-info → pulumi_azure_native-2.51.0a1721718685.dist-info}/RECORD +564 -432
  563. {pulumi_azure_native-2.51.0a1721670234.dist-info → pulumi_azure_native-2.51.0a1721718685.dist-info}/WHEEL +0 -0
  564. {pulumi_azure_native-2.51.0a1721670234.dist-info → pulumi_azure_native-2.51.0a1721718685.dist-info}/top_level.txt +0 -0
@@ -17934,6 +17934,8 @@ class AzureTableStorageLinkedServiceResponse(dict):
17934
17934
  suggest = "sas_token"
17935
17935
  elif key == "sasUri":
17936
17936
  suggest = "sas_uri"
17937
+ elif key == "serviceEndpoint":
17938
+ suggest = "service_endpoint"
17937
17939
 
17938
17940
  if suggest:
17939
17941
  pulumi.log.warn(f"Key '{key}' not found in AzureTableStorageLinkedServiceResponse. Access the value via the '{suggest}' property getter instead.")
@@ -17952,11 +17954,13 @@ class AzureTableStorageLinkedServiceResponse(dict):
17952
17954
  annotations: Optional[Sequence[Any]] = None,
17953
17955
  connect_via: Optional['outputs.IntegrationRuntimeReferenceResponse'] = None,
17954
17956
  connection_string: Optional[Any] = None,
17957
+ credential: Optional['outputs.CredentialReferenceResponse'] = None,
17955
17958
  description: Optional[str] = None,
17956
17959
  encrypted_credential: Optional[str] = None,
17957
17960
  parameters: Optional[Mapping[str, 'outputs.ParameterSpecificationResponse']] = None,
17958
17961
  sas_token: Optional['outputs.AzureKeyVaultSecretReferenceResponse'] = None,
17959
- sas_uri: Optional[Any] = None):
17962
+ sas_uri: Optional[Any] = None,
17963
+ service_endpoint: Optional[Any] = None):
17960
17964
  """
17961
17965
  The azure table storage linked service.
17962
17966
  :param str type: Type of linked service.
@@ -17965,11 +17969,13 @@ class AzureTableStorageLinkedServiceResponse(dict):
17965
17969
  :param Sequence[Any] annotations: List of tags that can be used for describing the linked service.
17966
17970
  :param 'IntegrationRuntimeReferenceResponse' connect_via: The integration runtime reference.
17967
17971
  :param Any connection_string: The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
17972
+ :param 'CredentialReferenceResponse' credential: The credential reference containing authentication information.
17968
17973
  :param str description: Linked service description.
17969
17974
  :param str encrypted_credential: The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
17970
17975
  :param Mapping[str, 'ParameterSpecificationResponse'] parameters: Parameters for linked service.
17971
17976
  :param 'AzureKeyVaultSecretReferenceResponse' sas_token: The Azure key vault secret reference of sasToken in sas uri.
17972
17977
  :param Any sas_uri: SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
17978
+ :param Any service_endpoint: Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
17973
17979
  """
17974
17980
  pulumi.set(__self__, "type", 'AzureTableStorage')
17975
17981
  if account_key is not None:
@@ -17980,6 +17986,8 @@ class AzureTableStorageLinkedServiceResponse(dict):
17980
17986
  pulumi.set(__self__, "connect_via", connect_via)
17981
17987
  if connection_string is not None:
17982
17988
  pulumi.set(__self__, "connection_string", connection_string)
17989
+ if credential is not None:
17990
+ pulumi.set(__self__, "credential", credential)
17983
17991
  if description is not None:
17984
17992
  pulumi.set(__self__, "description", description)
17985
17993
  if encrypted_credential is not None:
@@ -17990,6 +17998,8 @@ class AzureTableStorageLinkedServiceResponse(dict):
17990
17998
  pulumi.set(__self__, "sas_token", sas_token)
17991
17999
  if sas_uri is not None:
17992
18000
  pulumi.set(__self__, "sas_uri", sas_uri)
18001
+ if service_endpoint is not None:
18002
+ pulumi.set(__self__, "service_endpoint", service_endpoint)
17993
18003
 
17994
18004
  @property
17995
18005
  @pulumi.getter
@@ -18032,6 +18042,14 @@ class AzureTableStorageLinkedServiceResponse(dict):
18032
18042
  """
18033
18043
  return pulumi.get(self, "connection_string")
18034
18044
 
18045
+ @property
18046
+ @pulumi.getter
18047
+ def credential(self) -> Optional['outputs.CredentialReferenceResponse']:
18048
+ """
18049
+ The credential reference containing authentication information.
18050
+ """
18051
+ return pulumi.get(self, "credential")
18052
+
18035
18053
  @property
18036
18054
  @pulumi.getter
18037
18055
  def description(self) -> Optional[str]:
@@ -18072,6 +18090,14 @@ class AzureTableStorageLinkedServiceResponse(dict):
18072
18090
  """
18073
18091
  return pulumi.get(self, "sas_uri")
18074
18092
 
18093
+ @property
18094
+ @pulumi.getter(name="serviceEndpoint")
18095
+ def service_endpoint(self) -> Optional[Any]:
18096
+ """
18097
+ Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
18098
+ """
18099
+ return pulumi.get(self, "service_endpoint")
18100
+
18075
18101
 
18076
18102
  @pulumi.output_type
18077
18103
  class BigDataPoolParametrizationReferenceResponse(dict):
@@ -20088,6 +20114,7 @@ class CommonDataServiceForAppsLinkedServiceResponse(dict):
20088
20114
  annotations: Optional[Sequence[Any]] = None,
20089
20115
  connect_via: Optional['outputs.IntegrationRuntimeReferenceResponse'] = None,
20090
20116
  description: Optional[str] = None,
20117
+ domain: Optional[Any] = None,
20091
20118
  encrypted_credential: Optional[str] = None,
20092
20119
  host_name: Optional[Any] = None,
20093
20120
  organization_name: Optional[Any] = None,
@@ -20101,13 +20128,14 @@ class CommonDataServiceForAppsLinkedServiceResponse(dict):
20101
20128
  username: Optional[Any] = None):
20102
20129
  """
20103
20130
  Common Data Service for Apps linked service.
20104
- :param Any authentication_type: The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string).
20131
+ :param Any authentication_type: The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
20105
20132
  :param Any deployment_type: The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
20106
20133
  :param str type: Type of linked service.
20107
20134
  Expected value is 'CommonDataServiceForApps'.
20108
20135
  :param Sequence[Any] annotations: List of tags that can be used for describing the linked service.
20109
20136
  :param 'IntegrationRuntimeReferenceResponse' connect_via: The integration runtime reference.
20110
20137
  :param str description: Linked service description.
20138
+ :param Any domain: The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
20111
20139
  :param str encrypted_credential: The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
20112
20140
  :param Any host_name: The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
20113
20141
  :param Any organization_name: The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
@@ -20129,6 +20157,8 @@ class CommonDataServiceForAppsLinkedServiceResponse(dict):
20129
20157
  pulumi.set(__self__, "connect_via", connect_via)
20130
20158
  if description is not None:
20131
20159
  pulumi.set(__self__, "description", description)
20160
+ if domain is not None:
20161
+ pulumi.set(__self__, "domain", domain)
20132
20162
  if encrypted_credential is not None:
20133
20163
  pulumi.set(__self__, "encrypted_credential", encrypted_credential)
20134
20164
  if host_name is not None:
@@ -20156,7 +20186,7 @@ class CommonDataServiceForAppsLinkedServiceResponse(dict):
20156
20186
  @pulumi.getter(name="authenticationType")
20157
20187
  def authentication_type(self) -> Any:
20158
20188
  """
20159
- The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string).
20189
+ The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
20160
20190
  """
20161
20191
  return pulumi.get(self, "authentication_type")
20162
20192
 
@@ -20201,6 +20231,14 @@ class CommonDataServiceForAppsLinkedServiceResponse(dict):
20201
20231
  """
20202
20232
  return pulumi.get(self, "description")
20203
20233
 
20234
+ @property
20235
+ @pulumi.getter
20236
+ def domain(self) -> Optional[Any]:
20237
+ """
20238
+ The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
20239
+ """
20240
+ return pulumi.get(self, "domain")
20241
+
20204
20242
  @property
20205
20243
  @pulumi.getter(name="encryptedCredential")
20206
20244
  def encrypted_credential(self) -> Optional[str]:
@@ -28727,6 +28765,7 @@ class DynamicsCrmLinkedServiceResponse(dict):
28727
28765
  connect_via: Optional['outputs.IntegrationRuntimeReferenceResponse'] = None,
28728
28766
  credential: Optional['outputs.CredentialReferenceResponse'] = None,
28729
28767
  description: Optional[str] = None,
28768
+ domain: Optional[Any] = None,
28730
28769
  encrypted_credential: Optional[str] = None,
28731
28770
  host_name: Optional[Any] = None,
28732
28771
  organization_name: Optional[Any] = None,
@@ -28740,7 +28779,7 @@ class DynamicsCrmLinkedServiceResponse(dict):
28740
28779
  username: Optional[Any] = None):
28741
28780
  """
28742
28781
  Dynamics CRM linked service.
28743
- :param Any authentication_type: The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string).
28782
+ :param Any authentication_type: The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
28744
28783
  :param Any deployment_type: The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
28745
28784
  :param str type: Type of linked service.
28746
28785
  Expected value is 'DynamicsCrm'.
@@ -28748,6 +28787,7 @@ class DynamicsCrmLinkedServiceResponse(dict):
28748
28787
  :param 'IntegrationRuntimeReferenceResponse' connect_via: The integration runtime reference.
28749
28788
  :param 'CredentialReferenceResponse' credential: The credential reference containing authentication information.
28750
28789
  :param str description: Linked service description.
28790
+ :param Any domain: The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
28751
28791
  :param str encrypted_credential: The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
28752
28792
  :param Any host_name: The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
28753
28793
  :param Any organization_name: The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
@@ -28771,6 +28811,8 @@ class DynamicsCrmLinkedServiceResponse(dict):
28771
28811
  pulumi.set(__self__, "credential", credential)
28772
28812
  if description is not None:
28773
28813
  pulumi.set(__self__, "description", description)
28814
+ if domain is not None:
28815
+ pulumi.set(__self__, "domain", domain)
28774
28816
  if encrypted_credential is not None:
28775
28817
  pulumi.set(__self__, "encrypted_credential", encrypted_credential)
28776
28818
  if host_name is not None:
@@ -28798,7 +28840,7 @@ class DynamicsCrmLinkedServiceResponse(dict):
28798
28840
  @pulumi.getter(name="authenticationType")
28799
28841
  def authentication_type(self) -> Any:
28800
28842
  """
28801
- The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string).
28843
+ The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
28802
28844
  """
28803
28845
  return pulumi.get(self, "authentication_type")
28804
28846
 
@@ -28851,6 +28893,14 @@ class DynamicsCrmLinkedServiceResponse(dict):
28851
28893
  """
28852
28894
  return pulumi.get(self, "description")
28853
28895
 
28896
+ @property
28897
+ @pulumi.getter
28898
+ def domain(self) -> Optional[Any]:
28899
+ """
28900
+ The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
28901
+ """
28902
+ return pulumi.get(self, "domain")
28903
+
28854
28904
  @property
28855
28905
  @pulumi.getter(name="encryptedCredential")
28856
28906
  def encrypted_credential(self) -> Optional[str]:
@@ -29411,6 +29461,7 @@ class DynamicsLinkedServiceResponse(dict):
29411
29461
  connect_via: Optional['outputs.IntegrationRuntimeReferenceResponse'] = None,
29412
29462
  credential: Optional['outputs.CredentialReferenceResponse'] = None,
29413
29463
  description: Optional[str] = None,
29464
+ domain: Optional[Any] = None,
29414
29465
  encrypted_credential: Optional[str] = None,
29415
29466
  host_name: Optional[Any] = None,
29416
29467
  organization_name: Optional[Any] = None,
@@ -29424,7 +29475,7 @@ class DynamicsLinkedServiceResponse(dict):
29424
29475
  username: Optional[Any] = None):
29425
29476
  """
29426
29477
  Dynamics linked service.
29427
- :param Any authentication_type: The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string).
29478
+ :param Any authentication_type: The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
29428
29479
  :param Any deployment_type: The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
29429
29480
  :param str type: Type of linked service.
29430
29481
  Expected value is 'Dynamics'.
@@ -29432,6 +29483,7 @@ class DynamicsLinkedServiceResponse(dict):
29432
29483
  :param 'IntegrationRuntimeReferenceResponse' connect_via: The integration runtime reference.
29433
29484
  :param 'CredentialReferenceResponse' credential: The credential reference containing authentication information.
29434
29485
  :param str description: Linked service description.
29486
+ :param Any domain: The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
29435
29487
  :param str encrypted_credential: The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
29436
29488
  :param Any host_name: The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
29437
29489
  :param Any organization_name: The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
@@ -29455,6 +29507,8 @@ class DynamicsLinkedServiceResponse(dict):
29455
29507
  pulumi.set(__self__, "credential", credential)
29456
29508
  if description is not None:
29457
29509
  pulumi.set(__self__, "description", description)
29510
+ if domain is not None:
29511
+ pulumi.set(__self__, "domain", domain)
29458
29512
  if encrypted_credential is not None:
29459
29513
  pulumi.set(__self__, "encrypted_credential", encrypted_credential)
29460
29514
  if host_name is not None:
@@ -29482,7 +29536,7 @@ class DynamicsLinkedServiceResponse(dict):
29482
29536
  @pulumi.getter(name="authenticationType")
29483
29537
  def authentication_type(self) -> Any:
29484
29538
  """
29485
- The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string).
29539
+ The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
29486
29540
  """
29487
29541
  return pulumi.get(self, "authentication_type")
29488
29542
 
@@ -29535,6 +29589,14 @@ class DynamicsLinkedServiceResponse(dict):
29535
29589
  """
29536
29590
  return pulumi.get(self, "description")
29537
29591
 
29592
+ @property
29593
+ @pulumi.getter
29594
+ def domain(self) -> Optional[Any]:
29595
+ """
29596
+ The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
29597
+ """
29598
+ return pulumi.get(self, "domain")
29599
+
29538
29600
  @property
29539
29601
  @pulumi.getter(name="encryptedCredential")
29540
29602
  def encrypted_credential(self) -> Optional[str]:
@@ -22,6 +22,7 @@ from .get_scaling_plan_personal_schedule import *
22
22
  from .get_scaling_plan_pooled_schedule import *
23
23
  from .get_workspace import *
24
24
  from .host_pool import *
25
+ from .list_host_pool_registration_tokens import *
25
26
  from .msix_package import *
26
27
  from .private_endpoint_connection_by_host_pool import *
27
28
  from .private_endpoint_connection_by_workspace import *
@@ -0,0 +1,103 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import 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
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'ListHostPoolRegistrationTokensResult',
20
+ 'AwaitableListHostPoolRegistrationTokensResult',
21
+ 'list_host_pool_registration_tokens',
22
+ 'list_host_pool_registration_tokens_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class ListHostPoolRegistrationTokensResult:
27
+ """
28
+ List of RegistrationToken definitions.
29
+ """
30
+ def __init__(__self__, next_link=None, value=None):
31
+ if next_link and not isinstance(next_link, str):
32
+ raise TypeError("Expected argument 'next_link' to be a str")
33
+ pulumi.set(__self__, "next_link", next_link)
34
+ if value and not isinstance(value, list):
35
+ raise TypeError("Expected argument 'value' to be a list")
36
+ pulumi.set(__self__, "value", value)
37
+
38
+ @property
39
+ @pulumi.getter(name="nextLink")
40
+ def next_link(self) -> str:
41
+ """
42
+ Link to the next page of results.
43
+ """
44
+ return pulumi.get(self, "next_link")
45
+
46
+ @property
47
+ @pulumi.getter
48
+ def value(self) -> Optional[Sequence['outputs.RegistrationTokenMinimalResponse']]:
49
+ """
50
+ List of RegistrationToken definitions.
51
+ """
52
+ return pulumi.get(self, "value")
53
+
54
+
55
+ class AwaitableListHostPoolRegistrationTokensResult(ListHostPoolRegistrationTokensResult):
56
+ # pylint: disable=using-constant-test
57
+ def __await__(self):
58
+ if False:
59
+ yield self
60
+ return ListHostPoolRegistrationTokensResult(
61
+ next_link=self.next_link,
62
+ value=self.value)
63
+
64
+
65
+ def list_host_pool_registration_tokens(host_pool_name: Optional[str] = None,
66
+ resource_group_name: Optional[str] = None,
67
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListHostPoolRegistrationTokensResult:
68
+ """
69
+ Operation to list the RegistrationTokens associated with the HostPool.
70
+ Azure REST API version: 2024-04-08-preview.
71
+
72
+ Other available API versions: 2024-04-03.
73
+
74
+
75
+ :param str host_pool_name: The name of the host pool within the specified resource group
76
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
77
+ """
78
+ __args__ = dict()
79
+ __args__['hostPoolName'] = host_pool_name
80
+ __args__['resourceGroupName'] = resource_group_name
81
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
82
+ __ret__ = pulumi.runtime.invoke('azure-native:desktopvirtualization:listHostPoolRegistrationTokens', __args__, opts=opts, typ=ListHostPoolRegistrationTokensResult).value
83
+
84
+ return AwaitableListHostPoolRegistrationTokensResult(
85
+ next_link=pulumi.get(__ret__, 'next_link'),
86
+ value=pulumi.get(__ret__, 'value'))
87
+
88
+
89
+ @_utilities.lift_output_func(list_host_pool_registration_tokens)
90
+ def list_host_pool_registration_tokens_output(host_pool_name: Optional[pulumi.Input[str]] = None,
91
+ resource_group_name: Optional[pulumi.Input[str]] = None,
92
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[ListHostPoolRegistrationTokensResult]:
93
+ """
94
+ Operation to list the RegistrationTokens associated with the HostPool.
95
+ Azure REST API version: 2024-04-08-preview.
96
+
97
+ Other available API versions: 2024-04-03.
98
+
99
+
100
+ :param str host_pool_name: The name of the host pool within the specified resource group
101
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
102
+ """
103
+ ...
@@ -26,6 +26,7 @@ __all__ = [
26
26
  'PrivateEndpointResponse',
27
27
  'PrivateLinkServiceConnectionStateResponse',
28
28
  'RegistrationInfoResponse',
29
+ 'RegistrationTokenMinimalResponse',
29
30
  'ResourceModelWithAllowedPropertySetResponseIdentity',
30
31
  'ResourceModelWithAllowedPropertySetResponsePlan',
31
32
  'ResourceModelWithAllowedPropertySetResponseSku',
@@ -848,6 +849,41 @@ class RegistrationInfoResponse(dict):
848
849
  return pulumi.get(self, "token")
849
850
 
850
851
 
852
+ @pulumi.output_type
853
+ class RegistrationTokenMinimalResponse(dict):
854
+ """
855
+ Represents a Minimal set of properties for RegistrationToken definition.
856
+ """
857
+ def __init__(__self__, *,
858
+ expiration_time: Optional[str] = None,
859
+ token: Optional[str] = None):
860
+ """
861
+ Represents a Minimal set of properties for RegistrationToken definition.
862
+ :param str expiration_time: Expiration time of registration token.
863
+ :param str token: The registration token base64 encoded string.
864
+ """
865
+ if expiration_time is not None:
866
+ pulumi.set(__self__, "expiration_time", expiration_time)
867
+ if token is not None:
868
+ pulumi.set(__self__, "token", token)
869
+
870
+ @property
871
+ @pulumi.getter(name="expirationTime")
872
+ def expiration_time(self) -> Optional[str]:
873
+ """
874
+ Expiration time of registration token.
875
+ """
876
+ return pulumi.get(self, "expiration_time")
877
+
878
+ @property
879
+ @pulumi.getter
880
+ def token(self) -> Optional[str]:
881
+ """
882
+ The registration token base64 encoded string.
883
+ """
884
+ return pulumi.get(self, "token")
885
+
886
+
851
887
  @pulumi.output_type
852
888
  class ResourceModelWithAllowedPropertySetResponseIdentity(dict):
853
889
  @staticmethod
@@ -22,6 +22,7 @@ from .get_scaling_plan_personal_schedule import *
22
22
  from .get_scaling_plan_pooled_schedule import *
23
23
  from .get_workspace import *
24
24
  from .host_pool import *
25
+ from .list_host_pool_registration_tokens import *
25
26
  from .msix_package import *
26
27
  from .private_endpoint_connection_by_host_pool import *
27
28
  from .private_endpoint_connection_by_workspace import *
@@ -0,0 +1,97 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import 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
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'ListHostPoolRegistrationTokensResult',
20
+ 'AwaitableListHostPoolRegistrationTokensResult',
21
+ 'list_host_pool_registration_tokens',
22
+ 'list_host_pool_registration_tokens_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class ListHostPoolRegistrationTokensResult:
27
+ """
28
+ List of RegistrationToken definitions.
29
+ """
30
+ def __init__(__self__, next_link=None, value=None):
31
+ if next_link and not isinstance(next_link, str):
32
+ raise TypeError("Expected argument 'next_link' to be a str")
33
+ pulumi.set(__self__, "next_link", next_link)
34
+ if value and not isinstance(value, list):
35
+ raise TypeError("Expected argument 'value' to be a list")
36
+ pulumi.set(__self__, "value", value)
37
+
38
+ @property
39
+ @pulumi.getter(name="nextLink")
40
+ def next_link(self) -> str:
41
+ """
42
+ Link to the next page of results.
43
+ """
44
+ return pulumi.get(self, "next_link")
45
+
46
+ @property
47
+ @pulumi.getter
48
+ def value(self) -> Optional[Sequence['outputs.RegistrationTokenMinimalResponse']]:
49
+ """
50
+ List of RegistrationToken definitions.
51
+ """
52
+ return pulumi.get(self, "value")
53
+
54
+
55
+ class AwaitableListHostPoolRegistrationTokensResult(ListHostPoolRegistrationTokensResult):
56
+ # pylint: disable=using-constant-test
57
+ def __await__(self):
58
+ if False:
59
+ yield self
60
+ return ListHostPoolRegistrationTokensResult(
61
+ next_link=self.next_link,
62
+ value=self.value)
63
+
64
+
65
+ def list_host_pool_registration_tokens(host_pool_name: Optional[str] = None,
66
+ resource_group_name: Optional[str] = None,
67
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListHostPoolRegistrationTokensResult:
68
+ """
69
+ Operation to list the RegistrationTokens associated with the HostPool
70
+
71
+
72
+ :param str host_pool_name: The name of the host pool within the specified resource group
73
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
74
+ """
75
+ __args__ = dict()
76
+ __args__['hostPoolName'] = host_pool_name
77
+ __args__['resourceGroupName'] = resource_group_name
78
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
79
+ __ret__ = pulumi.runtime.invoke('azure-native:desktopvirtualization/v20240403:listHostPoolRegistrationTokens', __args__, opts=opts, typ=ListHostPoolRegistrationTokensResult).value
80
+
81
+ return AwaitableListHostPoolRegistrationTokensResult(
82
+ next_link=pulumi.get(__ret__, 'next_link'),
83
+ value=pulumi.get(__ret__, 'value'))
84
+
85
+
86
+ @_utilities.lift_output_func(list_host_pool_registration_tokens)
87
+ def list_host_pool_registration_tokens_output(host_pool_name: Optional[pulumi.Input[str]] = None,
88
+ resource_group_name: Optional[pulumi.Input[str]] = None,
89
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[ListHostPoolRegistrationTokensResult]:
90
+ """
91
+ Operation to list the RegistrationTokens associated with the HostPool
92
+
93
+
94
+ :param str host_pool_name: The name of the host pool within the specified resource group
95
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
96
+ """
97
+ ...
@@ -27,6 +27,7 @@ __all__ = [
27
27
  'PrivateEndpointResponse',
28
28
  'PrivateLinkServiceConnectionStateResponse',
29
29
  'RegistrationInfoResponse',
30
+ 'RegistrationTokenMinimalResponse',
30
31
  'ResourceModelWithAllowedPropertySetResponseIdentity',
31
32
  'ResourceModelWithAllowedPropertySetResponsePlan',
32
33
  'ResourceModelWithAllowedPropertySetResponseSku',
@@ -974,6 +975,41 @@ class RegistrationInfoResponse(dict):
974
975
  return pulumi.get(self, "token")
975
976
 
976
977
 
978
+ @pulumi.output_type
979
+ class RegistrationTokenMinimalResponse(dict):
980
+ """
981
+ Represents a Minimal set of properties for RegistrationToken definition.
982
+ """
983
+ def __init__(__self__, *,
984
+ expiration_time: Optional[str] = None,
985
+ token: Optional[str] = None):
986
+ """
987
+ Represents a Minimal set of properties for RegistrationToken definition.
988
+ :param str expiration_time: Expiration time of registration token.
989
+ :param str token: The registration token base64 encoded string.
990
+ """
991
+ if expiration_time is not None:
992
+ pulumi.set(__self__, "expiration_time", expiration_time)
993
+ if token is not None:
994
+ pulumi.set(__self__, "token", token)
995
+
996
+ @property
997
+ @pulumi.getter(name="expirationTime")
998
+ def expiration_time(self) -> Optional[str]:
999
+ """
1000
+ Expiration time of registration token.
1001
+ """
1002
+ return pulumi.get(self, "expiration_time")
1003
+
1004
+ @property
1005
+ @pulumi.getter
1006
+ def token(self) -> Optional[str]:
1007
+ """
1008
+ The registration token base64 encoded string.
1009
+ """
1010
+ return pulumi.get(self, "token")
1011
+
1012
+
977
1013
  @pulumi.output_type
978
1014
  class ResourceModelWithAllowedPropertySetResponseIdentity(dict):
979
1015
  @staticmethod
@@ -22,6 +22,7 @@ from .get_scaling_plan_personal_schedule import *
22
22
  from .get_scaling_plan_pooled_schedule import *
23
23
  from .get_workspace import *
24
24
  from .host_pool import *
25
+ from .list_host_pool_registration_tokens import *
25
26
  from .msix_package import *
26
27
  from .private_endpoint_connection_by_host_pool import *
27
28
  from .private_endpoint_connection_by_workspace import *