pulumi-azure-native 2.21.2a1702068757__py3-none-any.whl → 2.21.3a1702685082__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 (377) hide show
  1. pulumi_azure_native/__init__.py +90 -12
  2. pulumi_azure_native/app/_inputs.py +2 -2
  3. pulumi_azure_native/app/outputs.py +2 -2
  4. pulumi_azure_native/app/v20230801preview/_inputs.py +2 -2
  5. pulumi_azure_native/app/v20230801preview/outputs.py +2 -2
  6. pulumi_azure_native/appconfiguration/__init__.py +3 -0
  7. pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
  8. pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
  9. pulumi_azure_native/appconfiguration/get_key_value.py +4 -0
  10. pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +4 -0
  11. pulumi_azure_native/appconfiguration/get_replica.py +4 -0
  12. pulumi_azure_native/appconfiguration/key_value.py +5 -1
  13. pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
  14. pulumi_azure_native/appconfiguration/private_endpoint_connection.py +5 -1
  15. pulumi_azure_native/appconfiguration/replica.py +5 -1
  16. pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
  17. pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
  18. pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
  19. pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
  20. pulumi_azure_native/appconfiguration/v20230801preview/__init__.py +19 -0
  21. pulumi_azure_native/appconfiguration/v20230801preview/_enums.py +78 -0
  22. pulumi_azure_native/appconfiguration/v20230801preview/_inputs.py +253 -0
  23. pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +529 -0
  24. pulumi_azure_native/appconfiguration/v20230801preview/get_configuration_store.py +300 -0
  25. pulumi_azure_native/appconfiguration/v20230801preview/get_key_value.py +217 -0
  26. pulumi_azure_native/appconfiguration/v20230801preview/get_private_endpoint_connection.py +149 -0
  27. pulumi_azure_native/appconfiguration/v20230801preview/get_replica.py +162 -0
  28. pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +318 -0
  29. pulumi_azure_native/appconfiguration/v20230801preview/list_configuration_store_keys.py +97 -0
  30. pulumi_azure_native/appconfiguration/v20230801preview/outputs.py +699 -0
  31. pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +246 -0
  32. pulumi_azure_native/appconfiguration/v20230801preview/replica.py +234 -0
  33. pulumi_azure_native/azurestackhci/__init__.py +5 -0
  34. pulumi_azure_native/azurestackhci/_enums.py +15 -0
  35. pulumi_azure_native/azurestackhci/arc_setting.py +3 -3
  36. pulumi_azure_native/azurestackhci/cluster.py +3 -3
  37. pulumi_azure_native/azurestackhci/deployment_setting.py +5 -1
  38. pulumi_azure_native/azurestackhci/edge_device.py +5 -1
  39. pulumi_azure_native/azurestackhci/extension.py +3 -3
  40. pulumi_azure_native/azurestackhci/get_arc_setting.py +2 -2
  41. pulumi_azure_native/azurestackhci/get_cluster.py +2 -2
  42. pulumi_azure_native/azurestackhci/get_deployment_setting.py +4 -0
  43. pulumi_azure_native/azurestackhci/get_edge_device.py +4 -0
  44. pulumi_azure_native/azurestackhci/get_extension.py +2 -2
  45. pulumi_azure_native/azurestackhci/get_security_setting.py +164 -0
  46. pulumi_azure_native/azurestackhci/get_update.py +2 -2
  47. pulumi_azure_native/azurestackhci/get_update_run.py +2 -2
  48. pulumi_azure_native/azurestackhci/get_update_summary.py +2 -2
  49. pulumi_azure_native/azurestackhci/outputs.py +92 -0
  50. pulumi_azure_native/azurestackhci/security_setting.py +241 -0
  51. pulumi_azure_native/azurestackhci/update.py +3 -3
  52. pulumi_azure_native/azurestackhci/update_run.py +3 -3
  53. pulumi_azure_native/azurestackhci/update_summary.py +3 -3
  54. pulumi_azure_native/azurestackhci/v20210901preview/arc_setting.py +1 -1
  55. pulumi_azure_native/azurestackhci/v20220101/cluster.py +1 -1
  56. pulumi_azure_native/azurestackhci/v20220901/cluster.py +1 -1
  57. pulumi_azure_native/azurestackhci/v20221215preview/arc_setting.py +1 -1
  58. pulumi_azure_native/azurestackhci/v20221215preview/cluster.py +1 -1
  59. pulumi_azure_native/azurestackhci/v20221215preview/extension.py +1 -1
  60. pulumi_azure_native/azurestackhci/v20221215preview/update.py +1 -1
  61. pulumi_azure_native/azurestackhci/v20221215preview/update_run.py +1 -1
  62. pulumi_azure_native/azurestackhci/v20221215preview/update_summary.py +1 -1
  63. pulumi_azure_native/azurestackhci/v20230301/arc_setting.py +1 -1
  64. pulumi_azure_native/azurestackhci/v20230301/cluster.py +1 -1
  65. pulumi_azure_native/azurestackhci/v20230301/extension.py +1 -1
  66. pulumi_azure_native/azurestackhci/v20230301/update.py +1 -1
  67. pulumi_azure_native/azurestackhci/v20230301/update_run.py +1 -1
  68. pulumi_azure_native/azurestackhci/v20230301/update_summary.py +1 -1
  69. pulumi_azure_native/azurestackhci/v20230601/arc_setting.py +1 -1
  70. pulumi_azure_native/azurestackhci/v20230601/cluster.py +1 -1
  71. pulumi_azure_native/azurestackhci/v20230601/extension.py +1 -1
  72. pulumi_azure_native/azurestackhci/v20230601/update.py +1 -1
  73. pulumi_azure_native/azurestackhci/v20230601/update_run.py +1 -1
  74. pulumi_azure_native/azurestackhci/v20230601/update_summary.py +1 -1
  75. pulumi_azure_native/azurestackhci/v20230801/arc_setting.py +1 -1
  76. pulumi_azure_native/azurestackhci/v20230801/cluster.py +1 -1
  77. pulumi_azure_native/azurestackhci/v20230801/extension.py +1 -1
  78. pulumi_azure_native/azurestackhci/v20230801/update.py +1 -1
  79. pulumi_azure_native/azurestackhci/v20230801/update_run.py +1 -1
  80. pulumi_azure_native/azurestackhci/v20230801/update_summary.py +1 -1
  81. pulumi_azure_native/azurestackhci/v20230801preview/arc_setting.py +1 -1
  82. pulumi_azure_native/azurestackhci/v20230801preview/cluster.py +1 -1
  83. pulumi_azure_native/azurestackhci/v20230801preview/deployment_setting.py +1 -1
  84. pulumi_azure_native/azurestackhci/v20230801preview/edge_device.py +1 -1
  85. pulumi_azure_native/azurestackhci/v20230801preview/extension.py +1 -1
  86. pulumi_azure_native/azurestackhci/v20230801preview/update.py +1 -1
  87. pulumi_azure_native/azurestackhci/v20230801preview/update_run.py +1 -1
  88. pulumi_azure_native/azurestackhci/v20230801preview/update_summary.py +1 -1
  89. pulumi_azure_native/azurestackhci/v20231101preview/__init__.py +28 -0
  90. pulumi_azure_native/azurestackhci/v20231101preview/_enums.py +147 -0
  91. pulumi_azure_native/azurestackhci/v20231101preview/_inputs.py +1824 -0
  92. pulumi_azure_native/azurestackhci/v20231101preview/arc_setting.py +401 -0
  93. pulumi_azure_native/azurestackhci/v20231101preview/cluster.py +626 -0
  94. pulumi_azure_native/azurestackhci/v20231101preview/deployment_setting.py +297 -0
  95. pulumi_azure_native/azurestackhci/v20231101preview/edge_device.py +205 -0
  96. pulumi_azure_native/azurestackhci/v20231101preview/extension.py +468 -0
  97. pulumi_azure_native/azurestackhci/v20231101preview/get_arc_setting.py +253 -0
  98. pulumi_azure_native/azurestackhci/v20231101preview/get_cluster.py +443 -0
  99. pulumi_azure_native/azurestackhci/v20231101preview/get_deployment_setting.py +188 -0
  100. pulumi_azure_native/azurestackhci/v20231101preview/get_edge_device.py +144 -0
  101. pulumi_azure_native/azurestackhci/v20231101preview/get_extension.py +271 -0
  102. pulumi_azure_native/azurestackhci/v20231101preview/get_security_setting.py +162 -0
  103. pulumi_azure_native/azurestackhci/v20231101preview/get_update.py +357 -0
  104. pulumi_azure_native/azurestackhci/v20231101preview/get_update_run.py +297 -0
  105. pulumi_azure_native/azurestackhci/v20231101preview/get_update_summary.py +235 -0
  106. pulumi_azure_native/azurestackhci/v20231101preview/outputs.py +3394 -0
  107. pulumi_azure_native/azurestackhci/v20231101preview/security_setting.py +239 -0
  108. pulumi_azure_native/azurestackhci/v20231101preview/update.py +690 -0
  109. pulumi_azure_native/azurestackhci/v20231101preview/update_run.py +585 -0
  110. pulumi_azure_native/azurestackhci/v20231101preview/update_summary.py +408 -0
  111. pulumi_azure_native/compute/__init__.py +3 -0
  112. pulumi_azure_native/compute/availability_set.py +3 -3
  113. pulumi_azure_native/compute/capacity_reservation.py +3 -3
  114. pulumi_azure_native/compute/capacity_reservation_group.py +3 -3
  115. pulumi_azure_native/compute/dedicated_host.py +3 -3
  116. pulumi_azure_native/compute/dedicated_host_group.py +3 -3
  117. pulumi_azure_native/compute/get_availability_set.py +2 -2
  118. pulumi_azure_native/compute/get_capacity_reservation.py +2 -2
  119. pulumi_azure_native/compute/get_capacity_reservation_group.py +2 -2
  120. pulumi_azure_native/compute/get_dedicated_host.py +2 -2
  121. pulumi_azure_native/compute/get_dedicated_host_group.py +2 -2
  122. pulumi_azure_native/compute/get_image.py +2 -2
  123. pulumi_azure_native/compute/get_log_analytic_export_request_rate_by_interval.py +2 -2
  124. pulumi_azure_native/compute/get_log_analytic_export_throttled_requests.py +2 -2
  125. pulumi_azure_native/compute/get_proximity_placement_group.py +2 -2
  126. pulumi_azure_native/compute/get_restore_point.py +2 -2
  127. pulumi_azure_native/compute/get_restore_point_collection.py +2 -2
  128. pulumi_azure_native/compute/get_ssh_public_key.py +2 -2
  129. pulumi_azure_native/compute/get_virtual_machine.py +2 -2
  130. pulumi_azure_native/compute/get_virtual_machine_extension.py +2 -2
  131. pulumi_azure_native/compute/get_virtual_machine_run_command_by_virtual_machine.py +2 -2
  132. pulumi_azure_native/compute/get_virtual_machine_scale_set.py +2 -2
  133. pulumi_azure_native/compute/get_virtual_machine_scale_set_extension.py +2 -2
  134. pulumi_azure_native/compute/get_virtual_machine_scale_set_vm.py +2 -2
  135. pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_extension.py +2 -2
  136. pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_run_command.py +2 -2
  137. pulumi_azure_native/compute/image.py +3 -3
  138. pulumi_azure_native/compute/proximity_placement_group.py +3 -3
  139. pulumi_azure_native/compute/restore_point.py +3 -3
  140. pulumi_azure_native/compute/restore_point_collection.py +3 -3
  141. pulumi_azure_native/compute/ssh_public_key.py +3 -3
  142. pulumi_azure_native/compute/v20211101/restore_point.py +1 -1
  143. pulumi_azure_native/compute/v20211101/virtual_machine_extension.py +1 -1
  144. pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_extension.py +1 -1
  145. pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_vm_extension.py +1 -1
  146. pulumi_azure_native/compute/v20221101/restore_point.py +1 -1
  147. pulumi_azure_native/compute/v20230301/availability_set.py +1 -1
  148. pulumi_azure_native/compute/v20230301/capacity_reservation.py +1 -1
  149. pulumi_azure_native/compute/v20230301/capacity_reservation_group.py +1 -1
  150. pulumi_azure_native/compute/v20230301/dedicated_host.py +1 -1
  151. pulumi_azure_native/compute/v20230301/dedicated_host_group.py +1 -1
  152. pulumi_azure_native/compute/v20230301/image.py +1 -1
  153. pulumi_azure_native/compute/v20230301/proximity_placement_group.py +1 -1
  154. pulumi_azure_native/compute/v20230301/restore_point.py +1 -1
  155. pulumi_azure_native/compute/v20230301/restore_point_collection.py +1 -1
  156. pulumi_azure_native/compute/v20230301/ssh_public_key.py +1 -1
  157. pulumi_azure_native/compute/v20230301/virtual_machine.py +1 -1
  158. pulumi_azure_native/compute/v20230301/virtual_machine_extension.py +1 -1
  159. pulumi_azure_native/compute/v20230301/virtual_machine_run_command_by_virtual_machine.py +1 -1
  160. pulumi_azure_native/compute/v20230301/virtual_machine_scale_set.py +1 -1
  161. pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_extension.py +1 -1
  162. pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm.py +1 -1
  163. pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_extension.py +1 -1
  164. pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_run_command.py +1 -1
  165. pulumi_azure_native/compute/v20230701/availability_set.py +1 -1
  166. pulumi_azure_native/compute/v20230701/capacity_reservation.py +1 -1
  167. pulumi_azure_native/compute/v20230701/capacity_reservation_group.py +1 -1
  168. pulumi_azure_native/compute/v20230701/dedicated_host.py +1 -1
  169. pulumi_azure_native/compute/v20230701/dedicated_host_group.py +1 -1
  170. pulumi_azure_native/compute/v20230701/image.py +1 -1
  171. pulumi_azure_native/compute/v20230701/proximity_placement_group.py +1 -1
  172. pulumi_azure_native/compute/v20230701/restore_point.py +1 -1
  173. pulumi_azure_native/compute/v20230701/restore_point_collection.py +1 -1
  174. pulumi_azure_native/compute/v20230701/ssh_public_key.py +1 -1
  175. pulumi_azure_native/compute/v20230701/virtual_machine.py +1 -1
  176. pulumi_azure_native/compute/v20230701/virtual_machine_extension.py +1 -1
  177. pulumi_azure_native/compute/v20230701/virtual_machine_run_command_by_virtual_machine.py +1 -1
  178. pulumi_azure_native/compute/v20230701/virtual_machine_scale_set.py +1 -1
  179. pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_extension.py +1 -1
  180. pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm.py +1 -1
  181. pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_extension.py +1 -1
  182. pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_run_command.py +1 -1
  183. pulumi_azure_native/compute/v20230901/__init__.py +48 -0
  184. pulumi_azure_native/compute/v20230901/_enums.py +650 -0
  185. pulumi_azure_native/compute/v20230901/_inputs.py +7313 -0
  186. pulumi_azure_native/compute/v20230901/availability_set.py +368 -0
  187. pulumi_azure_native/compute/v20230901/capacity_reservation.py +363 -0
  188. pulumi_azure_native/compute/v20230901/capacity_reservation_group.py +301 -0
  189. pulumi_azure_native/compute/v20230901/dedicated_host.py +412 -0
  190. pulumi_azure_native/compute/v20230901/dedicated_host_group.py +350 -0
  191. pulumi_azure_native/compute/v20230901/get_availability_set.py +209 -0
  192. pulumi_azure_native/compute/v20230901/get_capacity_reservation.py +258 -0
  193. pulumi_azure_native/compute/v20230901/get_capacity_reservation_group.py +201 -0
  194. pulumi_azure_native/compute/v20230901/get_dedicated_host.py +271 -0
  195. pulumi_azure_native/compute/v20230901/get_dedicated_host_group.py +214 -0
  196. pulumi_azure_native/compute/v20230901/get_image.py +201 -0
  197. pulumi_azure_native/compute/v20230901/get_log_analytic_export_request_rate_by_interval.py +120 -0
  198. pulumi_azure_native/compute/v20230901/get_log_analytic_export_throttled_requests.py +114 -0
  199. pulumi_azure_native/compute/v20230901/get_proximity_placement_group.py +227 -0
  200. pulumi_azure_native/compute/v20230901/get_restore_point.py +206 -0
  201. pulumi_azure_native/compute/v20230901/get_restore_point_collection.py +188 -0
  202. pulumi_azure_native/compute/v20230901/get_ssh_public_key.py +143 -0
  203. pulumi_azure_native/compute/v20230901/get_virtual_machine.py +565 -0
  204. pulumi_azure_native/compute/v20230901/get_virtual_machine_extension.py +297 -0
  205. pulumi_azure_native/compute/v20230901/get_virtual_machine_run_command_by_virtual_machine.py +323 -0
  206. pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set.py +474 -0
  207. pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_extension.py +258 -0
  208. pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm.py +466 -0
  209. pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_extension.py +289 -0
  210. pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_run_command.py +328 -0
  211. pulumi_azure_native/compute/v20230901/image.py +340 -0
  212. pulumi_azure_native/compute/v20230901/outputs.py +10926 -0
  213. pulumi_azure_native/compute/v20230901/proximity_placement_group.py +360 -0
  214. pulumi_azure_native/compute/v20230901/restore_point.py +342 -0
  215. pulumi_azure_native/compute/v20230901/restore_point_collection.py +272 -0
  216. pulumi_azure_native/compute/v20230901/ssh_public_key.py +240 -0
  217. pulumi_azure_native/compute/v20230901/virtual_machine.py +1038 -0
  218. pulumi_azure_native/compute/v20230901/virtual_machine_extension.py +583 -0
  219. pulumi_azure_native/compute/v20230901/virtual_machine_run_command_by_virtual_machine.py +610 -0
  220. pulumi_azure_native/compute/v20230901/virtual_machine_scale_set.py +892 -0
  221. pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_extension.py +514 -0
  222. pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm.py +750 -0
  223. pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_extension.py +575 -0
  224. pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_run_command.py +631 -0
  225. pulumi_azure_native/compute/virtual_machine.py +3 -3
  226. pulumi_azure_native/compute/virtual_machine_extension.py +3 -3
  227. pulumi_azure_native/compute/virtual_machine_run_command_by_virtual_machine.py +3 -3
  228. pulumi_azure_native/compute/virtual_machine_scale_set.py +3 -3
  229. pulumi_azure_native/compute/virtual_machine_scale_set_extension.py +3 -3
  230. pulumi_azure_native/compute/virtual_machine_scale_set_vm.py +3 -3
  231. pulumi_azure_native/compute/virtual_machine_scale_set_vm_extension.py +3 -3
  232. pulumi_azure_native/compute/virtual_machine_scale_set_vm_run_command.py +3 -3
  233. pulumi_azure_native/databox/__init__.py +3 -0
  234. pulumi_azure_native/databox/get_job.py +2 -2
  235. pulumi_azure_native/databox/job.py +3 -3
  236. pulumi_azure_native/databox/list_job_credentials.py +2 -2
  237. pulumi_azure_native/databox/v20221201/job.py +1 -1
  238. pulumi_azure_native/databox/v20230301/job.py +1 -1
  239. pulumi_azure_native/databox/v20231201/__init__.py +13 -0
  240. pulumi_azure_native/databox/v20231201/_enums.py +270 -0
  241. pulumi_azure_native/databox/v20231201/_inputs.py +2350 -0
  242. pulumi_azure_native/databox/v20231201/get_job.py +383 -0
  243. pulumi_azure_native/databox/v20231201/job.py +524 -0
  244. pulumi_azure_native/databox/v20231201/list_job_credentials.py +92 -0
  245. pulumi_azure_native/databox/v20231201/outputs.py +6380 -0
  246. pulumi_azure_native/dataprotection/__init__.py +0 -3
  247. pulumi_azure_native/dataprotection/backup_instance.py +3 -3
  248. pulumi_azure_native/dataprotection/backup_policy.py +3 -3
  249. pulumi_azure_native/dataprotection/backup_vault.py +3 -3
  250. pulumi_azure_native/dataprotection/dpp_resource_guard_proxy.py +3 -3
  251. pulumi_azure_native/dataprotection/get_backup_instance.py +2 -2
  252. pulumi_azure_native/dataprotection/get_backup_policy.py +2 -2
  253. pulumi_azure_native/dataprotection/get_backup_vault.py +2 -2
  254. pulumi_azure_native/dataprotection/get_dpp_resource_guard_proxy.py +2 -2
  255. pulumi_azure_native/dataprotection/get_resource_guard.py +2 -2
  256. pulumi_azure_native/dataprotection/resource_guard.py +3 -3
  257. pulumi_azure_native/dataprotection/v20221101preview/resource_guard.py +1 -1
  258. pulumi_azure_native/dataprotection/v20230101/backup_instance.py +1 -1
  259. pulumi_azure_native/dataprotection/v20230101/backup_policy.py +1 -1
  260. pulumi_azure_native/dataprotection/v20230101/backup_vault.py +1 -1
  261. pulumi_azure_native/dataprotection/v20230101/dpp_resource_guard_proxy.py +1 -1
  262. pulumi_azure_native/dataprotection/v20230101/resource_guard.py +1 -1
  263. pulumi_azure_native/dataprotection/v20230401preview/backup_instance.py +1 -1
  264. pulumi_azure_native/dataprotection/v20230401preview/backup_policy.py +1 -1
  265. pulumi_azure_native/dataprotection/v20230401preview/backup_vault.py +1 -1
  266. pulumi_azure_native/dataprotection/v20230401preview/dpp_resource_guard_proxy.py +1 -1
  267. pulumi_azure_native/dataprotection/v20230401preview/resource_guard.py +1 -1
  268. pulumi_azure_native/dataprotection/v20230501/backup_instance.py +1 -1
  269. pulumi_azure_native/dataprotection/v20230501/backup_policy.py +1 -1
  270. pulumi_azure_native/dataprotection/v20230501/backup_vault.py +1 -1
  271. pulumi_azure_native/dataprotection/v20230501/dpp_resource_guard_proxy.py +1 -1
  272. pulumi_azure_native/dataprotection/v20230501/resource_guard.py +1 -1
  273. pulumi_azure_native/dataprotection/v20230601preview/backup_instance.py +1 -1
  274. pulumi_azure_native/dataprotection/v20230601preview/backup_policy.py +1 -1
  275. pulumi_azure_native/dataprotection/v20230601preview/backup_vault.py +1 -1
  276. pulumi_azure_native/dataprotection/v20230601preview/dpp_resource_guard_proxy.py +1 -1
  277. pulumi_azure_native/dataprotection/v20230601preview/resource_guard.py +1 -1
  278. pulumi_azure_native/dataprotection/v20230801preview/backup_instance.py +1 -1
  279. pulumi_azure_native/dataprotection/v20230801preview/backup_policy.py +1 -1
  280. pulumi_azure_native/dataprotection/v20230801preview/backup_vault.py +1 -1
  281. pulumi_azure_native/dataprotection/v20230801preview/dpp_resource_guard_proxy.py +1 -1
  282. pulumi_azure_native/dataprotection/v20230801preview/resource_guard.py +1 -1
  283. pulumi_azure_native/dataprotection/v20231101/backup_instance.py +1 -1
  284. pulumi_azure_native/dataprotection/v20231101/backup_policy.py +1 -1
  285. pulumi_azure_native/dataprotection/v20231101/backup_vault.py +1 -1
  286. pulumi_azure_native/dataprotection/v20231101/dpp_resource_guard_proxy.py +1 -1
  287. pulumi_azure_native/dataprotection/v20231101/resource_guard.py +1 -1
  288. pulumi_azure_native/kubernetes/__init__.py +3 -0
  289. pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
  290. pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
  291. pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
  292. pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
  293. pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
  294. pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
  295. pulumi_azure_native/kubernetes/v20240101/__init__.py +13 -0
  296. pulumi_azure_native/kubernetes/v20240101/_enums.py +76 -0
  297. pulumi_azure_native/kubernetes/v20240101/_inputs.py +141 -0
  298. pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +672 -0
  299. pulumi_azure_native/kubernetes/v20240101/get_connected_cluster.py +417 -0
  300. pulumi_azure_native/kubernetes/v20240101/list_connected_cluster_user_credential.py +103 -0
  301. pulumi_azure_native/kubernetes/v20240101/outputs.py +408 -0
  302. pulumi_azure_native/maintenance/__init__.py +3 -0
  303. pulumi_azure_native/maintenance/configuration_assignment.py +3 -3
  304. pulumi_azure_native/maintenance/configuration_assignment_parent.py +3 -3
  305. pulumi_azure_native/maintenance/configuration_assignments_for_resource_group.py +3 -3
  306. pulumi_azure_native/maintenance/configuration_assignments_for_subscription.py +3 -3
  307. pulumi_azure_native/maintenance/get_configuration_assignment.py +2 -2
  308. pulumi_azure_native/maintenance/get_configuration_assignment_parent.py +2 -2
  309. pulumi_azure_native/maintenance/get_configuration_assignments_for_resource_group.py +2 -2
  310. pulumi_azure_native/maintenance/get_configuration_assignments_for_subscription.py +2 -2
  311. pulumi_azure_native/maintenance/get_maintenance_configuration.py +2 -2
  312. pulumi_azure_native/maintenance/maintenance_configuration.py +3 -3
  313. pulumi_azure_native/maintenance/v20221101preview/configuration_assignment.py +1 -1
  314. pulumi_azure_native/maintenance/v20221101preview/configuration_assignment_parent.py +1 -1
  315. pulumi_azure_native/maintenance/v20221101preview/maintenance_configuration.py +1 -1
  316. pulumi_azure_native/maintenance/v20230401/configuration_assignment.py +1 -1
  317. pulumi_azure_native/maintenance/v20230401/configuration_assignment_parent.py +1 -1
  318. pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_resource_group.py +1 -1
  319. pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_subscription.py +1 -1
  320. pulumi_azure_native/maintenance/v20230401/maintenance_configuration.py +1 -1
  321. pulumi_azure_native/maintenance/v20230901preview/configuration_assignment.py +1 -1
  322. pulumi_azure_native/maintenance/v20230901preview/configuration_assignment_parent.py +1 -1
  323. pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_resource_group.py +1 -1
  324. pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_subscription.py +1 -1
  325. pulumi_azure_native/maintenance/v20230901preview/maintenance_configuration.py +1 -1
  326. pulumi_azure_native/maintenance/v20231001preview/__init__.py +20 -0
  327. pulumi_azure_native/maintenance/v20231001preview/_enums.py +77 -0
  328. pulumi_azure_native/maintenance/v20231001preview/_inputs.py +334 -0
  329. pulumi_azure_native/maintenance/v20231001preview/configuration_assignment.py +345 -0
  330. pulumi_azure_native/maintenance/v20231001preview/configuration_assignment_parent.py +387 -0
  331. pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_resource_group.py +282 -0
  332. pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_subscription.py +261 -0
  333. pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment.py +185 -0
  334. pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment_parent.py +195 -0
  335. pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_resource_group.py +170 -0
  336. pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_subscription.py +165 -0
  337. pulumi_azure_native/maintenance/v20231001preview/get_maintenance_configuration.py +274 -0
  338. pulumi_azure_native/maintenance/v20231001preview/maintenance_configuration.py +514 -0
  339. pulumi_azure_native/maintenance/v20231001preview/outputs.py +498 -0
  340. pulumi_azure_native/security/__init__.py +5 -0
  341. pulumi_azure_native/security/_enums.py +45 -0
  342. pulumi_azure_native/security/_inputs.py +63 -0
  343. pulumi_azure_native/security/get_pricing.py +250 -0
  344. pulumi_azure_native/security/outputs.py +122 -0
  345. pulumi_azure_native/security/pricing.py +345 -0
  346. pulumi_azure_native/security/v20240101/__init__.py +12 -0
  347. pulumi_azure_native/security/v20240101/_enums.py +53 -0
  348. pulumi_azure_native/security/v20240101/_inputs.py +78 -0
  349. pulumi_azure_native/security/v20240101/get_pricing.py +248 -0
  350. pulumi_azure_native/security/v20240101/outputs.py +138 -0
  351. pulumi_azure_native/security/v20240101/pricing.py +343 -0
  352. pulumi_azure_native/sql/v20230501preview/get_long_term_retention_policy.py +27 -1
  353. pulumi_azure_native/sql/v20230501preview/long_term_retention_policy.py +59 -0
  354. pulumi_azure_native/synapse/big_data_pool.py +21 -2
  355. pulumi_azure_native/synapse/get_big_data_pool.py +1 -1
  356. pulumi_azure_native/synapse/v20210601/big_data_pool.py +21 -2
  357. pulumi_azure_native/synapse/v20210601/get_big_data_pool.py +1 -1
  358. pulumi_azure_native/synapse/v20210601preview/big_data_pool.py +21 -2
  359. pulumi_azure_native/synapse/v20210601preview/get_big_data_pool.py +1 -1
  360. {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/METADATA +1 -1
  361. {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/RECORD +363 -262
  362. pulumi_azure_native/dataprotection/v20230801/__init__.py +0 -20
  363. pulumi_azure_native/dataprotection/v20230801/_enums.py +0 -163
  364. pulumi_azure_native/dataprotection/v20230801/_inputs.py +0 -2383
  365. pulumi_azure_native/dataprotection/v20230801/backup_instance.py +0 -245
  366. pulumi_azure_native/dataprotection/v20230801/backup_policy.py +0 -216
  367. pulumi_azure_native/dataprotection/v20230801/backup_vault.py +0 -312
  368. pulumi_azure_native/dataprotection/v20230801/dpp_resource_guard_proxy.py +0 -215
  369. pulumi_azure_native/dataprotection/v20230801/get_backup_instance.py +0 -149
  370. pulumi_azure_native/dataprotection/v20230801/get_backup_policy.py +0 -134
  371. pulumi_azure_native/dataprotection/v20230801/get_backup_vault.py +0 -183
  372. pulumi_azure_native/dataprotection/v20230801/get_dpp_resource_guard_proxy.py +0 -136
  373. pulumi_azure_native/dataprotection/v20230801/get_resource_guard.py +0 -165
  374. pulumi_azure_native/dataprotection/v20230801/outputs.py +0 -3648
  375. pulumi_azure_native/dataprotection/v20230801/resource_guard.py +0 -279
  376. {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/WHEEL +0 -0
  377. {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,162 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetReplicaResult',
15
+ 'AwaitableGetReplicaResult',
16
+ 'get_replica',
17
+ 'get_replica_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetReplicaResult:
22
+ """
23
+ The replica resource.
24
+ """
25
+ def __init__(__self__, endpoint=None, id=None, location=None, name=None, provisioning_state=None, system_data=None, type=None):
26
+ if endpoint and not isinstance(endpoint, str):
27
+ raise TypeError("Expected argument 'endpoint' to be a str")
28
+ pulumi.set(__self__, "endpoint", endpoint)
29
+ if id and not isinstance(id, str):
30
+ raise TypeError("Expected argument 'id' to be a str")
31
+ pulumi.set(__self__, "id", id)
32
+ if location and not isinstance(location, str):
33
+ raise TypeError("Expected argument 'location' to be a str")
34
+ pulumi.set(__self__, "location", location)
35
+ if name and not isinstance(name, str):
36
+ raise TypeError("Expected argument 'name' to be a str")
37
+ pulumi.set(__self__, "name", name)
38
+ if provisioning_state and not isinstance(provisioning_state, str):
39
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
40
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
41
+ if system_data and not isinstance(system_data, dict):
42
+ raise TypeError("Expected argument 'system_data' to be a dict")
43
+ pulumi.set(__self__, "system_data", system_data)
44
+ if type and not isinstance(type, str):
45
+ raise TypeError("Expected argument 'type' to be a str")
46
+ pulumi.set(__self__, "type", type)
47
+
48
+ @property
49
+ @pulumi.getter
50
+ def endpoint(self) -> str:
51
+ """
52
+ The URI of the replica where the replica API will be available.
53
+ """
54
+ return pulumi.get(self, "endpoint")
55
+
56
+ @property
57
+ @pulumi.getter
58
+ def id(self) -> str:
59
+ """
60
+ The resource ID.
61
+ """
62
+ return pulumi.get(self, "id")
63
+
64
+ @property
65
+ @pulumi.getter
66
+ def location(self) -> Optional[str]:
67
+ """
68
+ The location of the replica.
69
+ """
70
+ return pulumi.get(self, "location")
71
+
72
+ @property
73
+ @pulumi.getter
74
+ def name(self) -> str:
75
+ """
76
+ The name of the replica.
77
+ """
78
+ return pulumi.get(self, "name")
79
+
80
+ @property
81
+ @pulumi.getter(name="provisioningState")
82
+ def provisioning_state(self) -> str:
83
+ """
84
+ The provisioning state of the replica.
85
+ """
86
+ return pulumi.get(self, "provisioning_state")
87
+
88
+ @property
89
+ @pulumi.getter(name="systemData")
90
+ def system_data(self) -> 'outputs.SystemDataResponse':
91
+ """
92
+ Resource system metadata.
93
+ """
94
+ return pulumi.get(self, "system_data")
95
+
96
+ @property
97
+ @pulumi.getter
98
+ def type(self) -> str:
99
+ """
100
+ The type of the resource.
101
+ """
102
+ return pulumi.get(self, "type")
103
+
104
+
105
+ class AwaitableGetReplicaResult(GetReplicaResult):
106
+ # pylint: disable=using-constant-test
107
+ def __await__(self):
108
+ if False:
109
+ yield self
110
+ return GetReplicaResult(
111
+ endpoint=self.endpoint,
112
+ id=self.id,
113
+ location=self.location,
114
+ name=self.name,
115
+ provisioning_state=self.provisioning_state,
116
+ system_data=self.system_data,
117
+ type=self.type)
118
+
119
+
120
+ def get_replica(config_store_name: Optional[str] = None,
121
+ replica_name: Optional[str] = None,
122
+ resource_group_name: Optional[str] = None,
123
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetReplicaResult:
124
+ """
125
+ Gets the properties of the specified replica.
126
+
127
+
128
+ :param str config_store_name: The name of the configuration store.
129
+ :param str replica_name: The name of the replica.
130
+ :param str resource_group_name: The name of the resource group to which the container registry belongs.
131
+ """
132
+ __args__ = dict()
133
+ __args__['configStoreName'] = config_store_name
134
+ __args__['replicaName'] = replica_name
135
+ __args__['resourceGroupName'] = resource_group_name
136
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
137
+ __ret__ = pulumi.runtime.invoke('azure-native:appconfiguration/v20230801preview:getReplica', __args__, opts=opts, typ=GetReplicaResult).value
138
+
139
+ return AwaitableGetReplicaResult(
140
+ endpoint=pulumi.get(__ret__, 'endpoint'),
141
+ id=pulumi.get(__ret__, 'id'),
142
+ location=pulumi.get(__ret__, 'location'),
143
+ name=pulumi.get(__ret__, 'name'),
144
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
145
+ system_data=pulumi.get(__ret__, 'system_data'),
146
+ type=pulumi.get(__ret__, 'type'))
147
+
148
+
149
+ @_utilities.lift_output_func(get_replica)
150
+ def get_replica_output(config_store_name: Optional[pulumi.Input[str]] = None,
151
+ replica_name: Optional[pulumi.Input[str]] = None,
152
+ resource_group_name: Optional[pulumi.Input[str]] = None,
153
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetReplicaResult]:
154
+ """
155
+ Gets the properties of the specified replica.
156
+
157
+
158
+ :param str config_store_name: The name of the configuration store.
159
+ :param str replica_name: The name of the replica.
160
+ :param str resource_group_name: The name of the resource group to which the container registry belongs.
161
+ """
162
+ ...
@@ -0,0 +1,318 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+
12
+ __all__ = ['KeyValueArgs', 'KeyValue']
13
+
14
+ @pulumi.input_type
15
+ class KeyValueArgs:
16
+ def __init__(__self__, *,
17
+ config_store_name: pulumi.Input[str],
18
+ resource_group_name: pulumi.Input[str],
19
+ content_type: Optional[pulumi.Input[str]] = None,
20
+ key_value_name: Optional[pulumi.Input[str]] = None,
21
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
22
+ value: Optional[pulumi.Input[str]] = None):
23
+ """
24
+ The set of arguments for constructing a KeyValue resource.
25
+ :param pulumi.Input[str] config_store_name: The name of the configuration store.
26
+ :param pulumi.Input[str] resource_group_name: The name of the resource group to which the container registry belongs.
27
+ :param pulumi.Input[str] content_type: The content type of the key-value's value.
28
+ Providing a proper content-type can enable transformations of values when they are retrieved by applications.
29
+ :param pulumi.Input[str] key_value_name: Identifier of key and label combination. Key and label are joined by $ character. Label is optional.
30
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A dictionary of tags that can help identify what a key-value may be applicable for.
31
+ :param pulumi.Input[str] value: The value of the key-value.
32
+ """
33
+ pulumi.set(__self__, "config_store_name", config_store_name)
34
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
35
+ if content_type is not None:
36
+ pulumi.set(__self__, "content_type", content_type)
37
+ if key_value_name is not None:
38
+ pulumi.set(__self__, "key_value_name", key_value_name)
39
+ if tags is not None:
40
+ pulumi.set(__self__, "tags", tags)
41
+ if value is not None:
42
+ pulumi.set(__self__, "value", value)
43
+
44
+ @property
45
+ @pulumi.getter(name="configStoreName")
46
+ def config_store_name(self) -> pulumi.Input[str]:
47
+ """
48
+ The name of the configuration store.
49
+ """
50
+ return pulumi.get(self, "config_store_name")
51
+
52
+ @config_store_name.setter
53
+ def config_store_name(self, value: pulumi.Input[str]):
54
+ pulumi.set(self, "config_store_name", value)
55
+
56
+ @property
57
+ @pulumi.getter(name="resourceGroupName")
58
+ def resource_group_name(self) -> pulumi.Input[str]:
59
+ """
60
+ The name of the resource group to which the container registry belongs.
61
+ """
62
+ return pulumi.get(self, "resource_group_name")
63
+
64
+ @resource_group_name.setter
65
+ def resource_group_name(self, value: pulumi.Input[str]):
66
+ pulumi.set(self, "resource_group_name", value)
67
+
68
+ @property
69
+ @pulumi.getter(name="contentType")
70
+ def content_type(self) -> Optional[pulumi.Input[str]]:
71
+ """
72
+ The content type of the key-value's value.
73
+ Providing a proper content-type can enable transformations of values when they are retrieved by applications.
74
+ """
75
+ return pulumi.get(self, "content_type")
76
+
77
+ @content_type.setter
78
+ def content_type(self, value: Optional[pulumi.Input[str]]):
79
+ pulumi.set(self, "content_type", value)
80
+
81
+ @property
82
+ @pulumi.getter(name="keyValueName")
83
+ def key_value_name(self) -> Optional[pulumi.Input[str]]:
84
+ """
85
+ Identifier of key and label combination. Key and label are joined by $ character. Label is optional.
86
+ """
87
+ return pulumi.get(self, "key_value_name")
88
+
89
+ @key_value_name.setter
90
+ def key_value_name(self, value: Optional[pulumi.Input[str]]):
91
+ pulumi.set(self, "key_value_name", value)
92
+
93
+ @property
94
+ @pulumi.getter
95
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
96
+ """
97
+ A dictionary of tags that can help identify what a key-value may be applicable for.
98
+ """
99
+ return pulumi.get(self, "tags")
100
+
101
+ @tags.setter
102
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
103
+ pulumi.set(self, "tags", value)
104
+
105
+ @property
106
+ @pulumi.getter
107
+ def value(self) -> Optional[pulumi.Input[str]]:
108
+ """
109
+ The value of the key-value.
110
+ """
111
+ return pulumi.get(self, "value")
112
+
113
+ @value.setter
114
+ def value(self, value: Optional[pulumi.Input[str]]):
115
+ pulumi.set(self, "value", value)
116
+
117
+
118
+ class KeyValue(pulumi.CustomResource):
119
+ @overload
120
+ def __init__(__self__,
121
+ resource_name: str,
122
+ opts: Optional[pulumi.ResourceOptions] = None,
123
+ config_store_name: Optional[pulumi.Input[str]] = None,
124
+ content_type: Optional[pulumi.Input[str]] = None,
125
+ key_value_name: Optional[pulumi.Input[str]] = None,
126
+ resource_group_name: Optional[pulumi.Input[str]] = None,
127
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
128
+ value: Optional[pulumi.Input[str]] = None,
129
+ __props__=None):
130
+ """
131
+ The key-value resource along with all resource properties.
132
+
133
+ :param str resource_name: The name of the resource.
134
+ :param pulumi.ResourceOptions opts: Options for the resource.
135
+ :param pulumi.Input[str] config_store_name: The name of the configuration store.
136
+ :param pulumi.Input[str] content_type: The content type of the key-value's value.
137
+ Providing a proper content-type can enable transformations of values when they are retrieved by applications.
138
+ :param pulumi.Input[str] key_value_name: Identifier of key and label combination. Key and label are joined by $ character. Label is optional.
139
+ :param pulumi.Input[str] resource_group_name: The name of the resource group to which the container registry belongs.
140
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A dictionary of tags that can help identify what a key-value may be applicable for.
141
+ :param pulumi.Input[str] value: The value of the key-value.
142
+ """
143
+ ...
144
+ @overload
145
+ def __init__(__self__,
146
+ resource_name: str,
147
+ args: KeyValueArgs,
148
+ opts: Optional[pulumi.ResourceOptions] = None):
149
+ """
150
+ The key-value resource along with all resource properties.
151
+
152
+ :param str resource_name: The name of the resource.
153
+ :param KeyValueArgs args: The arguments to use to populate this resource's properties.
154
+ :param pulumi.ResourceOptions opts: Options for the resource.
155
+ """
156
+ ...
157
+ def __init__(__self__, resource_name: str, *args, **kwargs):
158
+ resource_args, opts = _utilities.get_resource_args_opts(KeyValueArgs, pulumi.ResourceOptions, *args, **kwargs)
159
+ if resource_args is not None:
160
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
161
+ else:
162
+ __self__._internal_init(resource_name, *args, **kwargs)
163
+
164
+ def _internal_init(__self__,
165
+ resource_name: str,
166
+ opts: Optional[pulumi.ResourceOptions] = None,
167
+ config_store_name: Optional[pulumi.Input[str]] = None,
168
+ content_type: Optional[pulumi.Input[str]] = None,
169
+ key_value_name: Optional[pulumi.Input[str]] = None,
170
+ resource_group_name: Optional[pulumi.Input[str]] = None,
171
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
172
+ value: Optional[pulumi.Input[str]] = None,
173
+ __props__=None):
174
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
175
+ if not isinstance(opts, pulumi.ResourceOptions):
176
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
177
+ if opts.id is None:
178
+ if __props__ is not None:
179
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
180
+ __props__ = KeyValueArgs.__new__(KeyValueArgs)
181
+
182
+ if config_store_name is None and not opts.urn:
183
+ raise TypeError("Missing required property 'config_store_name'")
184
+ __props__.__dict__["config_store_name"] = config_store_name
185
+ __props__.__dict__["content_type"] = content_type
186
+ __props__.__dict__["key_value_name"] = key_value_name
187
+ if resource_group_name is None and not opts.urn:
188
+ raise TypeError("Missing required property 'resource_group_name'")
189
+ __props__.__dict__["resource_group_name"] = resource_group_name
190
+ __props__.__dict__["tags"] = tags
191
+ __props__.__dict__["value"] = value
192
+ __props__.__dict__["e_tag"] = None
193
+ __props__.__dict__["key"] = None
194
+ __props__.__dict__["label"] = None
195
+ __props__.__dict__["last_modified"] = None
196
+ __props__.__dict__["locked"] = None
197
+ __props__.__dict__["name"] = None
198
+ __props__.__dict__["type"] = None
199
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20230301:KeyValue")])
200
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
201
+ super(KeyValue, __self__).__init__(
202
+ 'azure-native:appconfiguration/v20230801preview:KeyValue',
203
+ resource_name,
204
+ __props__,
205
+ opts)
206
+
207
+ @staticmethod
208
+ def get(resource_name: str,
209
+ id: pulumi.Input[str],
210
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'KeyValue':
211
+ """
212
+ Get an existing KeyValue resource's state with the given name, id, and optional extra
213
+ properties used to qualify the lookup.
214
+
215
+ :param str resource_name: The unique name of the resulting resource.
216
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
217
+ :param pulumi.ResourceOptions opts: Options for the resource.
218
+ """
219
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
220
+
221
+ __props__ = KeyValueArgs.__new__(KeyValueArgs)
222
+
223
+ __props__.__dict__["content_type"] = None
224
+ __props__.__dict__["e_tag"] = None
225
+ __props__.__dict__["key"] = None
226
+ __props__.__dict__["label"] = None
227
+ __props__.__dict__["last_modified"] = None
228
+ __props__.__dict__["locked"] = None
229
+ __props__.__dict__["name"] = None
230
+ __props__.__dict__["tags"] = None
231
+ __props__.__dict__["type"] = None
232
+ __props__.__dict__["value"] = None
233
+ return KeyValue(resource_name, opts=opts, __props__=__props__)
234
+
235
+ @property
236
+ @pulumi.getter(name="contentType")
237
+ def content_type(self) -> pulumi.Output[Optional[str]]:
238
+ """
239
+ The content type of the key-value's value.
240
+ Providing a proper content-type can enable transformations of values when they are retrieved by applications.
241
+ """
242
+ return pulumi.get(self, "content_type")
243
+
244
+ @property
245
+ @pulumi.getter(name="eTag")
246
+ def e_tag(self) -> pulumi.Output[str]:
247
+ """
248
+ An ETag indicating the state of a key-value within a configuration store.
249
+ """
250
+ return pulumi.get(self, "e_tag")
251
+
252
+ @property
253
+ @pulumi.getter
254
+ def key(self) -> pulumi.Output[str]:
255
+ """
256
+ The primary identifier of a key-value.
257
+ The key is used in unison with the label to uniquely identify a key-value.
258
+ """
259
+ return pulumi.get(self, "key")
260
+
261
+ @property
262
+ @pulumi.getter
263
+ def label(self) -> pulumi.Output[str]:
264
+ """
265
+ A value used to group key-values.
266
+ The label is used in unison with the key to uniquely identify a key-value.
267
+ """
268
+ return pulumi.get(self, "label")
269
+
270
+ @property
271
+ @pulumi.getter(name="lastModified")
272
+ def last_modified(self) -> pulumi.Output[str]:
273
+ """
274
+ The last time a modifying operation was performed on the given key-value.
275
+ """
276
+ return pulumi.get(self, "last_modified")
277
+
278
+ @property
279
+ @pulumi.getter
280
+ def locked(self) -> pulumi.Output[bool]:
281
+ """
282
+ A value indicating whether the key-value is locked.
283
+ A locked key-value may not be modified until it is unlocked.
284
+ """
285
+ return pulumi.get(self, "locked")
286
+
287
+ @property
288
+ @pulumi.getter
289
+ def name(self) -> pulumi.Output[str]:
290
+ """
291
+ The name of the resource.
292
+ """
293
+ return pulumi.get(self, "name")
294
+
295
+ @property
296
+ @pulumi.getter
297
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
298
+ """
299
+ A dictionary of tags that can help identify what a key-value may be applicable for.
300
+ """
301
+ return pulumi.get(self, "tags")
302
+
303
+ @property
304
+ @pulumi.getter
305
+ def type(self) -> pulumi.Output[str]:
306
+ """
307
+ The type of the resource.
308
+ """
309
+ return pulumi.get(self, "type")
310
+
311
+ @property
312
+ @pulumi.getter
313
+ def value(self) -> pulumi.Output[Optional[str]]:
314
+ """
315
+ The value of the key-value.
316
+ """
317
+ return pulumi.get(self, "value")
318
+
@@ -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 pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'ListConfigurationStoreKeysResult',
15
+ 'AwaitableListConfigurationStoreKeysResult',
16
+ 'list_configuration_store_keys',
17
+ 'list_configuration_store_keys_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class ListConfigurationStoreKeysResult:
22
+ """
23
+ The result of a request to list API keys.
24
+ """
25
+ def __init__(__self__, next_link=None, value=None):
26
+ if next_link and not isinstance(next_link, str):
27
+ raise TypeError("Expected argument 'next_link' to be a str")
28
+ pulumi.set(__self__, "next_link", next_link)
29
+ if value and not isinstance(value, list):
30
+ raise TypeError("Expected argument 'value' to be a list")
31
+ pulumi.set(__self__, "value", value)
32
+
33
+ @property
34
+ @pulumi.getter(name="nextLink")
35
+ def next_link(self) -> Optional[str]:
36
+ """
37
+ The URI that can be used to request the next set of paged results.
38
+ """
39
+ return pulumi.get(self, "next_link")
40
+
41
+ @property
42
+ @pulumi.getter
43
+ def value(self) -> Optional[Sequence['outputs.ApiKeyResponse']]:
44
+ """
45
+ The collection value.
46
+ """
47
+ return pulumi.get(self, "value")
48
+
49
+
50
+ class AwaitableListConfigurationStoreKeysResult(ListConfigurationStoreKeysResult):
51
+ # pylint: disable=using-constant-test
52
+ def __await__(self):
53
+ if False:
54
+ yield self
55
+ return ListConfigurationStoreKeysResult(
56
+ next_link=self.next_link,
57
+ value=self.value)
58
+
59
+
60
+ def list_configuration_store_keys(config_store_name: Optional[str] = None,
61
+ resource_group_name: Optional[str] = None,
62
+ skip_token: Optional[str] = None,
63
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListConfigurationStoreKeysResult:
64
+ """
65
+ Lists the access key for the specified configuration store.
66
+
67
+
68
+ :param str config_store_name: The name of the configuration store.
69
+ :param str resource_group_name: The name of the resource group to which the container registry belongs.
70
+ :param str skip_token: A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls.
71
+ """
72
+ __args__ = dict()
73
+ __args__['configStoreName'] = config_store_name
74
+ __args__['resourceGroupName'] = resource_group_name
75
+ __args__['skipToken'] = skip_token
76
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
77
+ __ret__ = pulumi.runtime.invoke('azure-native:appconfiguration/v20230801preview:listConfigurationStoreKeys', __args__, opts=opts, typ=ListConfigurationStoreKeysResult).value
78
+
79
+ return AwaitableListConfigurationStoreKeysResult(
80
+ next_link=pulumi.get(__ret__, 'next_link'),
81
+ value=pulumi.get(__ret__, 'value'))
82
+
83
+
84
+ @_utilities.lift_output_func(list_configuration_store_keys)
85
+ def list_configuration_store_keys_output(config_store_name: Optional[pulumi.Input[str]] = None,
86
+ resource_group_name: Optional[pulumi.Input[str]] = None,
87
+ skip_token: Optional[pulumi.Input[Optional[str]]] = None,
88
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[ListConfigurationStoreKeysResult]:
89
+ """
90
+ Lists the access key for the specified configuration store.
91
+
92
+
93
+ :param str config_store_name: The name of the configuration store.
94
+ :param str resource_group_name: The name of the resource group to which the container registry belongs.
95
+ :param str skip_token: A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls.
96
+ """
97
+ ...