pulumi-azure-native 2.64.3__py3-none-any.whl → 2.65.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-azure-native might be problematic. Click here for more details.

Files changed (273) hide show
  1. pulumi_azure_native/__init__.py +95 -2
  2. pulumi_azure_native/authorization/__init__.py +3 -0
  3. pulumi_azure_native/authorization/get_role_management_policy_assignment.py +2 -2
  4. pulumi_azure_native/authorization/role_management_policy_assignment.py +3 -3
  5. pulumi_azure_native/authorization/v20201001/role_management_policy_assignment.py +1 -1
  6. pulumi_azure_native/authorization/v20201001preview/role_management_policy_assignment.py +1 -1
  7. pulumi_azure_native/authorization/v20240201preview/role_management_policy_assignment.py +1 -1
  8. pulumi_azure_native/authorization/v20240901preview/__init__.py +10 -0
  9. pulumi_azure_native/authorization/v20240901preview/get_role_management_policy_assignment.py +175 -0
  10. pulumi_azure_native/authorization/v20240901preview/outputs.py +1456 -0
  11. pulumi_azure_native/authorization/v20240901preview/role_management_policy_assignment.py +246 -0
  12. pulumi_azure_native/azurearcdata/__init__.py +8 -0
  13. pulumi_azure_native/azurearcdata/_enums.py +55 -0
  14. pulumi_azure_native/azurearcdata/_inputs.py +226 -0
  15. pulumi_azure_native/azurearcdata/active_directory_connector.py +3 -3
  16. pulumi_azure_native/azurearcdata/data_controller.py +3 -3
  17. pulumi_azure_native/azurearcdata/failover_group.py +3 -3
  18. pulumi_azure_native/azurearcdata/get_active_directory_connector.py +2 -2
  19. pulumi_azure_native/azurearcdata/get_data_controller.py +2 -2
  20. pulumi_azure_native/azurearcdata/get_failover_group.py +2 -2
  21. pulumi_azure_native/azurearcdata/get_postgres_instance.py +2 -2
  22. pulumi_azure_native/azurearcdata/get_sql_managed_instance.py +2 -2
  23. pulumi_azure_native/azurearcdata/get_sql_server_availability_group.py +4 -0
  24. pulumi_azure_native/azurearcdata/get_sql_server_availability_group_detail_view.py +4 -0
  25. pulumi_azure_native/azurearcdata/get_sql_server_database.py +2 -2
  26. pulumi_azure_native/azurearcdata/get_sql_server_esu_license.py +164 -0
  27. pulumi_azure_native/azurearcdata/get_sql_server_instance.py +2 -2
  28. pulumi_azure_native/azurearcdata/get_sql_server_instance_jobs_status.py +96 -0
  29. pulumi_azure_native/azurearcdata/get_sql_server_instance_telemetry.py +4 -0
  30. pulumi_azure_native/azurearcdata/get_sql_server_license.py +164 -0
  31. pulumi_azure_native/azurearcdata/outputs.py +489 -0
  32. pulumi_azure_native/azurearcdata/postgres_instance.py +3 -3
  33. pulumi_azure_native/azurearcdata/sql_managed_instance.py +3 -3
  34. pulumi_azure_native/azurearcdata/sql_server_availability_group.py +5 -1
  35. pulumi_azure_native/azurearcdata/sql_server_database.py +3 -3
  36. pulumi_azure_native/azurearcdata/sql_server_esu_license.py +261 -0
  37. pulumi_azure_native/azurearcdata/sql_server_instance.py +3 -3
  38. pulumi_azure_native/azurearcdata/sql_server_license.py +261 -0
  39. pulumi_azure_native/azurearcdata/v20230115preview/active_directory_connector.py +1 -1
  40. pulumi_azure_native/azurearcdata/v20230115preview/data_controller.py +1 -1
  41. pulumi_azure_native/azurearcdata/v20230115preview/failover_group.py +1 -1
  42. pulumi_azure_native/azurearcdata/v20230115preview/postgres_instance.py +1 -1
  43. pulumi_azure_native/azurearcdata/v20230115preview/sql_managed_instance.py +1 -1
  44. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_database.py +1 -1
  45. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_instance.py +1 -1
  46. pulumi_azure_native/azurearcdata/v20240101/active_directory_connector.py +1 -1
  47. pulumi_azure_native/azurearcdata/v20240101/data_controller.py +1 -1
  48. pulumi_azure_native/azurearcdata/v20240101/failover_group.py +1 -1
  49. pulumi_azure_native/azurearcdata/v20240101/postgres_instance.py +1 -1
  50. pulumi_azure_native/azurearcdata/v20240101/sql_managed_instance.py +1 -1
  51. pulumi_azure_native/azurearcdata/v20240101/sql_server_availability_group.py +1 -1
  52. pulumi_azure_native/azurearcdata/v20240101/sql_server_database.py +1 -1
  53. pulumi_azure_native/azurearcdata/v20240101/sql_server_instance.py +1 -1
  54. pulumi_azure_native/azurearcdata/v20240501preview/__init__.py +33 -0
  55. pulumi_azure_native/azurearcdata/v20240501preview/_enums.py +334 -0
  56. pulumi_azure_native/azurearcdata/v20240501preview/_inputs.py +4953 -0
  57. pulumi_azure_native/azurearcdata/v20240501preview/active_directory_connector.py +222 -0
  58. pulumi_azure_native/azurearcdata/v20240501preview/data_controller.py +288 -0
  59. pulumi_azure_native/azurearcdata/v20240501preview/failover_group.py +222 -0
  60. pulumi_azure_native/azurearcdata/v20240501preview/get_active_directory_connector.py +141 -0
  61. pulumi_azure_native/azurearcdata/v20240501preview/get_data_controller.py +175 -0
  62. pulumi_azure_native/azurearcdata/v20240501preview/get_failover_group.py +141 -0
  63. pulumi_azure_native/azurearcdata/v20240501preview/get_postgres_instance.py +188 -0
  64. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_managed_instance.py +188 -0
  65. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group.py +167 -0
  66. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group_detail_view.py +167 -0
  67. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_database.py +167 -0
  68. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_esu_license.py +162 -0
  69. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance.py +162 -0
  70. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_jobs_status.py +94 -0
  71. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_telemetry.py +141 -0
  72. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_license.py +162 -0
  73. pulumi_azure_native/azurearcdata/v20240501preview/outputs.py +6407 -0
  74. pulumi_azure_native/azurearcdata/v20240501preview/postgres_instance.py +317 -0
  75. pulumi_azure_native/azurearcdata/v20240501preview/sql_managed_instance.py +317 -0
  76. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_availability_group.py +280 -0
  77. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_database.py +280 -0
  78. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_esu_license.py +259 -0
  79. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_instance.py +258 -0
  80. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_license.py +259 -0
  81. pulumi_azure_native/azurefleet/__init__.py +3 -0
  82. pulumi_azure_native/azurefleet/fleet.py +3 -3
  83. pulumi_azure_native/azurefleet/get_fleet.py +2 -2
  84. pulumi_azure_native/azurefleet/v20231101preview/fleet.py +1 -1
  85. pulumi_azure_native/azurefleet/v20240501preview/fleet.py +1 -1
  86. pulumi_azure_native/azurefleet/v20241101/__init__.py +12 -0
  87. pulumi_azure_native/azurefleet/v20241101/_enums.py +795 -0
  88. pulumi_azure_native/azurefleet/v20241101/_inputs.py +7209 -0
  89. pulumi_azure_native/azurefleet/v20241101/fleet.py +522 -0
  90. pulumi_azure_native/azurefleet/v20241101/get_fleet.py +305 -0
  91. pulumi_azure_native/azurefleet/v20241101/outputs.py +5832 -0
  92. pulumi_azure_native/codesigning/__init__.py +3 -0
  93. pulumi_azure_native/codesigning/certificate_profile.py +5 -1
  94. pulumi_azure_native/codesigning/code_signing_account.py +5 -1
  95. pulumi_azure_native/codesigning/get_certificate_profile.py +4 -0
  96. pulumi_azure_native/codesigning/get_code_signing_account.py +4 -0
  97. pulumi_azure_native/codesigning/v20240205preview/certificate_profile.py +1 -1
  98. pulumi_azure_native/codesigning/v20240205preview/code_signing_account.py +1 -1
  99. pulumi_azure_native/codesigning/v20240930preview/__init__.py +14 -0
  100. pulumi_azure_native/codesigning/v20240930preview/_enums.py +50 -0
  101. pulumi_azure_native/codesigning/v20240930preview/_inputs.py +59 -0
  102. pulumi_azure_native/codesigning/v20240930preview/certificate_profile.py +436 -0
  103. pulumi_azure_native/codesigning/v20240930preview/code_signing_account.py +278 -0
  104. pulumi_azure_native/codesigning/v20240930preview/get_certificate_profile.py +245 -0
  105. pulumi_azure_native/codesigning/v20240930preview/get_code_signing_account.py +188 -0
  106. pulumi_azure_native/codesigning/v20240930preview/outputs.py +154 -0
  107. pulumi_azure_native/containerinstance/__init__.py +8 -0
  108. pulumi_azure_native/containerinstance/_enums.py +1 -1
  109. pulumi_azure_native/containerinstance/_inputs.py +165 -0
  110. pulumi_azure_native/containerinstance/container_group.py +3 -3
  111. pulumi_azure_native/containerinstance/get_container_group.py +2 -2
  112. pulumi_azure_native/containerinstance/get_n_group.py +216 -0
  113. pulumi_azure_native/containerinstance/n_group.py +357 -0
  114. pulumi_azure_native/containerinstance/outputs.py +328 -0
  115. pulumi_azure_native/containerinstance/v20210301/container_group.py +1 -1
  116. pulumi_azure_native/containerinstance/v20210701/container_group.py +1 -1
  117. pulumi_azure_native/containerinstance/v20230201preview/container_group.py +1 -1
  118. pulumi_azure_native/containerinstance/v20230501/container_group.py +1 -1
  119. pulumi_azure_native/containerinstance/v20240501preview/container_group.py +1 -1
  120. pulumi_azure_native/containerinstance/v20240901preview/__init__.py +14 -0
  121. pulumi_azure_native/containerinstance/v20240901preview/_enums.py +127 -0
  122. pulumi_azure_native/containerinstance/v20240901preview/_inputs.py +2739 -0
  123. pulumi_azure_native/containerinstance/v20240901preview/container_group.py +746 -0
  124. pulumi_azure_native/containerinstance/v20240901preview/get_container_group.py +386 -0
  125. pulumi_azure_native/containerinstance/v20240901preview/get_n_group.py +214 -0
  126. pulumi_azure_native/containerinstance/v20240901preview/n_group.py +355 -0
  127. pulumi_azure_native/containerinstance/v20240901preview/outputs.py +2792 -0
  128. pulumi_azure_native/containerinstance/v20241001preview/__init__.py +12 -0
  129. pulumi_azure_native/containerinstance/v20241001preview/_enums.py +127 -0
  130. pulumi_azure_native/containerinstance/v20241001preview/_inputs.py +2729 -0
  131. pulumi_azure_native/containerinstance/v20241001preview/container_group.py +775 -0
  132. pulumi_azure_native/containerinstance/v20241001preview/get_container_group.py +399 -0
  133. pulumi_azure_native/containerinstance/v20241001preview/outputs.py +2582 -0
  134. pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
  135. pulumi_azure_native/dbforpostgresql/administrator.py +3 -3
  136. pulumi_azure_native/dbforpostgresql/backup.py +5 -1
  137. pulumi_azure_native/dbforpostgresql/configuration.py +3 -3
  138. pulumi_azure_native/dbforpostgresql/database.py +3 -3
  139. pulumi_azure_native/dbforpostgresql/firewall_rule.py +3 -3
  140. pulumi_azure_native/dbforpostgresql/get_administrator.py +2 -2
  141. pulumi_azure_native/dbforpostgresql/get_backup.py +4 -0
  142. pulumi_azure_native/dbforpostgresql/get_configuration.py +2 -2
  143. pulumi_azure_native/dbforpostgresql/get_database.py +2 -2
  144. pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
  145. pulumi_azure_native/dbforpostgresql/get_get_private_dns_zone_suffix_execute.py +2 -2
  146. pulumi_azure_native/dbforpostgresql/get_migration.py +2 -2
  147. pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
  148. pulumi_azure_native/dbforpostgresql/get_server.py +2 -2
  149. pulumi_azure_native/dbforpostgresql/get_virtual_endpoint.py +2 -2
  150. pulumi_azure_native/dbforpostgresql/migration.py +3 -3
  151. pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +2 -2
  152. pulumi_azure_native/dbforpostgresql/server.py +3 -3
  153. pulumi_azure_native/dbforpostgresql/v20200214preview/server.py +1 -1
  154. pulumi_azure_native/dbforpostgresql/v20210410privatepreview/server.py +1 -1
  155. pulumi_azure_native/dbforpostgresql/v20210615privatepreview/migration.py +1 -1
  156. pulumi_azure_native/dbforpostgresql/v20210615privatepreview/server.py +1 -1
  157. pulumi_azure_native/dbforpostgresql/v20220308preview/server.py +1 -1
  158. pulumi_azure_native/dbforpostgresql/v20220501preview/migration.py +1 -1
  159. pulumi_azure_native/dbforpostgresql/v20221201/administrator.py +1 -1
  160. pulumi_azure_native/dbforpostgresql/v20221201/configuration.py +1 -1
  161. pulumi_azure_native/dbforpostgresql/v20221201/database.py +1 -1
  162. pulumi_azure_native/dbforpostgresql/v20221201/firewall_rule.py +1 -1
  163. pulumi_azure_native/dbforpostgresql/v20221201/server.py +1 -1
  164. pulumi_azure_native/dbforpostgresql/v20230301preview/administrator.py +1 -1
  165. pulumi_azure_native/dbforpostgresql/v20230301preview/configuration.py +1 -1
  166. pulumi_azure_native/dbforpostgresql/v20230301preview/database.py +1 -1
  167. pulumi_azure_native/dbforpostgresql/v20230301preview/firewall_rule.py +1 -1
  168. pulumi_azure_native/dbforpostgresql/v20230301preview/migration.py +1 -1
  169. pulumi_azure_native/dbforpostgresql/v20230301preview/server.py +1 -1
  170. pulumi_azure_native/dbforpostgresql/v20230601preview/administrator.py +1 -1
  171. pulumi_azure_native/dbforpostgresql/v20230601preview/configuration.py +1 -1
  172. pulumi_azure_native/dbforpostgresql/v20230601preview/database.py +1 -1
  173. pulumi_azure_native/dbforpostgresql/v20230601preview/firewall_rule.py +1 -1
  174. pulumi_azure_native/dbforpostgresql/v20230601preview/migration.py +1 -1
  175. pulumi_azure_native/dbforpostgresql/v20230601preview/private_endpoint_connection.py +1 -1
  176. pulumi_azure_native/dbforpostgresql/v20230601preview/server.py +1 -1
  177. pulumi_azure_native/dbforpostgresql/v20230601preview/virtual_endpoint.py +1 -1
  178. pulumi_azure_native/dbforpostgresql/v20231201preview/administrator.py +1 -1
  179. pulumi_azure_native/dbforpostgresql/v20231201preview/configuration.py +1 -1
  180. pulumi_azure_native/dbforpostgresql/v20231201preview/database.py +1 -1
  181. pulumi_azure_native/dbforpostgresql/v20231201preview/firewall_rule.py +1 -1
  182. pulumi_azure_native/dbforpostgresql/v20231201preview/migration.py +1 -1
  183. pulumi_azure_native/dbforpostgresql/v20231201preview/private_endpoint_connection.py +1 -1
  184. pulumi_azure_native/dbforpostgresql/v20231201preview/server.py +1 -1
  185. pulumi_azure_native/dbforpostgresql/v20231201preview/virtual_endpoint.py +1 -1
  186. pulumi_azure_native/dbforpostgresql/v20240301preview/administrator.py +1 -1
  187. pulumi_azure_native/dbforpostgresql/v20240301preview/backup.py +1 -1
  188. pulumi_azure_native/dbforpostgresql/v20240301preview/configuration.py +1 -1
  189. pulumi_azure_native/dbforpostgresql/v20240301preview/database.py +1 -1
  190. pulumi_azure_native/dbforpostgresql/v20240301preview/firewall_rule.py +1 -1
  191. pulumi_azure_native/dbforpostgresql/v20240301preview/migration.py +1 -1
  192. pulumi_azure_native/dbforpostgresql/v20240301preview/private_endpoint_connection.py +1 -1
  193. pulumi_azure_native/dbforpostgresql/v20240301preview/server.py +1 -1
  194. pulumi_azure_native/dbforpostgresql/v20240301preview/virtual_endpoint.py +1 -1
  195. pulumi_azure_native/dbforpostgresql/v20240801/__init__.py +29 -0
  196. pulumi_azure_native/dbforpostgresql/v20240801/_enums.py +318 -0
  197. pulumi_azure_native/dbforpostgresql/v20240801/_inputs.py +1168 -0
  198. pulumi_azure_native/dbforpostgresql/v20240801/administrator.py +287 -0
  199. pulumi_azure_native/dbforpostgresql/v20240801/backup.py +220 -0
  200. pulumi_azure_native/dbforpostgresql/v20240801/configuration.py +338 -0
  201. pulumi_azure_native/dbforpostgresql/v20240801/database.py +248 -0
  202. pulumi_azure_native/dbforpostgresql/v20240801/firewall_rule.py +250 -0
  203. pulumi_azure_native/dbforpostgresql/v20240801/get_administrator.py +180 -0
  204. pulumi_azure_native/dbforpostgresql/v20240801/get_backup.py +167 -0
  205. pulumi_azure_native/dbforpostgresql/v20240801/get_configuration.py +271 -0
  206. pulumi_azure_native/dbforpostgresql/v20240801/get_database.py +154 -0
  207. pulumi_azure_native/dbforpostgresql/v20240801/get_firewall_rule.py +154 -0
  208. pulumi_azure_native/dbforpostgresql/v20240801/get_get_private_dns_zone_suffix_execute.py +66 -0
  209. pulumi_azure_native/dbforpostgresql/v20240801/get_migration.py +471 -0
  210. pulumi_azure_native/dbforpostgresql/v20240801/get_private_endpoint_connection.py +180 -0
  211. pulumi_azure_native/dbforpostgresql/v20240801/get_server.py +409 -0
  212. pulumi_azure_native/dbforpostgresql/v20240801/get_virtual_endpoint.py +167 -0
  213. pulumi_azure_native/dbforpostgresql/v20240801/migration.py +891 -0
  214. pulumi_azure_native/dbforpostgresql/v20240801/outputs.py +1907 -0
  215. pulumi_azure_native/dbforpostgresql/v20240801/private_endpoint_connection.py +252 -0
  216. pulumi_azure_native/dbforpostgresql/v20240801/server.py +778 -0
  217. pulumi_azure_native/dbforpostgresql/v20240801/virtual_endpoint.py +259 -0
  218. pulumi_azure_native/dbforpostgresql/virtual_endpoint.py +3 -3
  219. pulumi_azure_native/iotoperations/__init__.py +3 -0
  220. pulumi_azure_native/iotoperations/broker.py +3 -3
  221. pulumi_azure_native/iotoperations/broker_authentication.py +3 -3
  222. pulumi_azure_native/iotoperations/broker_authorization.py +3 -3
  223. pulumi_azure_native/iotoperations/broker_listener.py +3 -3
  224. pulumi_azure_native/iotoperations/data_flow.py +1 -1
  225. pulumi_azure_native/iotoperations/data_flow_endpoint.py +1 -1
  226. pulumi_azure_native/iotoperations/data_flow_profile.py +1 -1
  227. pulumi_azure_native/iotoperations/get_broker.py +2 -2
  228. pulumi_azure_native/iotoperations/get_broker_authentication.py +2 -2
  229. pulumi_azure_native/iotoperations/get_broker_authorization.py +2 -2
  230. pulumi_azure_native/iotoperations/get_broker_listener.py +2 -2
  231. pulumi_azure_native/iotoperations/get_instance.py +2 -2
  232. pulumi_azure_native/iotoperations/instance.py +3 -3
  233. pulumi_azure_native/iotoperations/v20240701preview/broker.py +1 -1
  234. pulumi_azure_native/iotoperations/v20240701preview/broker_authentication.py +1 -1
  235. pulumi_azure_native/iotoperations/v20240701preview/broker_authorization.py +1 -1
  236. pulumi_azure_native/iotoperations/v20240701preview/broker_listener.py +1 -1
  237. pulumi_azure_native/iotoperations/v20240701preview/data_flow.py +1 -1
  238. pulumi_azure_native/iotoperations/v20240701preview/data_flow_endpoint.py +1 -1
  239. pulumi_azure_native/iotoperations/v20240701preview/data_flow_profile.py +1 -1
  240. pulumi_azure_native/iotoperations/v20240701preview/instance.py +1 -1
  241. pulumi_azure_native/iotoperations/v20240815preview/broker.py +1 -1
  242. pulumi_azure_native/iotoperations/v20240815preview/broker_authentication.py +1 -1
  243. pulumi_azure_native/iotoperations/v20240815preview/broker_authorization.py +1 -1
  244. pulumi_azure_native/iotoperations/v20240815preview/broker_listener.py +1 -1
  245. pulumi_azure_native/iotoperations/v20240815preview/dataflow.py +1 -1
  246. pulumi_azure_native/iotoperations/v20240815preview/dataflow_endpoint.py +1 -1
  247. pulumi_azure_native/iotoperations/v20240815preview/dataflow_profile.py +1 -1
  248. pulumi_azure_native/iotoperations/v20240815preview/instance.py +1 -1
  249. pulumi_azure_native/iotoperations/v20240915preview/__init__.py +26 -0
  250. pulumi_azure_native/iotoperations/v20240915preview/_enums.py +616 -0
  251. pulumi_azure_native/iotoperations/v20240915preview/_inputs.py +6404 -0
  252. pulumi_azure_native/iotoperations/v20240915preview/broker.py +251 -0
  253. pulumi_azure_native/iotoperations/v20240915preview/broker_authentication.py +272 -0
  254. pulumi_azure_native/iotoperations/v20240915preview/broker_authorization.py +272 -0
  255. pulumi_azure_native/iotoperations/v20240915preview/broker_listener.py +272 -0
  256. pulumi_azure_native/iotoperations/v20240915preview/dataflow.py +272 -0
  257. pulumi_azure_native/iotoperations/v20240915preview/dataflow_endpoint.py +251 -0
  258. pulumi_azure_native/iotoperations/v20240915preview/dataflow_profile.py +251 -0
  259. pulumi_azure_native/iotoperations/v20240915preview/get_broker.py +154 -0
  260. pulumi_azure_native/iotoperations/v20240915preview/get_broker_authentication.py +159 -0
  261. pulumi_azure_native/iotoperations/v20240915preview/get_broker_authorization.py +159 -0
  262. pulumi_azure_native/iotoperations/v20240915preview/get_broker_listener.py +159 -0
  263. pulumi_azure_native/iotoperations/v20240915preview/get_dataflow.py +159 -0
  264. pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_endpoint.py +154 -0
  265. pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_profile.py +154 -0
  266. pulumi_azure_native/iotoperations/v20240915preview/get_instance.py +188 -0
  267. pulumi_azure_native/iotoperations/v20240915preview/instance.py +317 -0
  268. pulumi_azure_native/iotoperations/v20240915preview/outputs.py +5389 -0
  269. pulumi_azure_native/pulumi-plugin.json +1 -1
  270. {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/METADATA +1 -1
  271. {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/RECORD +273 -164
  272. {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/WHEEL +0 -0
  273. {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,616 @@
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
+ from enum import Enum
6
+
7
+ __all__ = [
8
+ 'BrokerAuthenticationMethod',
9
+ 'BrokerMemoryProfile',
10
+ 'BrokerProtocolType',
11
+ 'BrokerResourceDefinitionMethods',
12
+ 'CertManagerIssuerKind',
13
+ 'CloudEventAttributeType',
14
+ 'DataLakeStorageAuthMethod',
15
+ 'DataflowEndpointAuthenticationSaslType',
16
+ 'DataflowEndpointFabricPathType',
17
+ 'DataflowEndpointKafkaAcks',
18
+ 'DataflowEndpointKafkaCompression',
19
+ 'DataflowEndpointKafkaPartitionStrategy',
20
+ 'DataflowMappingType',
21
+ 'EndpointType',
22
+ 'ExtendedLocationType',
23
+ 'FilterType',
24
+ 'KafkaAuthMethod',
25
+ 'ManagedServiceIdentityType',
26
+ 'MqttAuthMethod',
27
+ 'MqttRetainType',
28
+ 'OperationType',
29
+ 'OperationalMode',
30
+ 'OperatorValues',
31
+ 'PrivateKeyAlgorithm',
32
+ 'PrivateKeyRotationPolicy',
33
+ 'ServiceType',
34
+ 'SourceSerializationFormat',
35
+ 'StateStoreResourceDefinitionMethods',
36
+ 'StateStoreResourceKeyTypes',
37
+ 'SubscriberMessageDropStrategy',
38
+ 'TlsCertMethodMode',
39
+ 'TransformationSerializationFormat',
40
+ ]
41
+
42
+
43
+ class BrokerAuthenticationMethod(str, Enum):
44
+ """
45
+ Custom authentication configuration.
46
+ """
47
+ CUSTOM = "Custom"
48
+ """
49
+ Custom authentication configuration.
50
+ """
51
+ SERVICE_ACCOUNT_TOKEN = "ServiceAccountToken"
52
+ """
53
+ ServiceAccountToken authentication configuration.
54
+ """
55
+ X509 = "X509"
56
+ """
57
+ X.509 authentication configuration.
58
+ """
59
+
60
+
61
+ class BrokerMemoryProfile(str, Enum):
62
+ """
63
+ Memory profile of Broker.
64
+ """
65
+ TINY = "Tiny"
66
+ """
67
+ Tiny memory profile.
68
+ """
69
+ LOW = "Low"
70
+ """
71
+ Low memory profile.
72
+ """
73
+ MEDIUM = "Medium"
74
+ """
75
+ Medium memory profile.
76
+ """
77
+ HIGH = "High"
78
+ """
79
+ High memory profile.
80
+ """
81
+
82
+
83
+ class BrokerProtocolType(str, Enum):
84
+ """
85
+ Enable or disable websockets.
86
+ """
87
+ MQTT = "Mqtt"
88
+ """
89
+ protocol broker
90
+ """
91
+ WEB_SOCKETS = "WebSockets"
92
+ """
93
+ protocol websocket
94
+ """
95
+
96
+
97
+ class BrokerResourceDefinitionMethods(str, Enum):
98
+ """
99
+ Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
100
+ """
101
+ CONNECT = "Connect"
102
+ """
103
+ Allowed Connecting to Broker
104
+ """
105
+ PUBLISH = "Publish"
106
+ """
107
+ Allowed Publishing to Broker
108
+ """
109
+ SUBSCRIBE = "Subscribe"
110
+ """
111
+ Allowed Subscribing to Broker
112
+ """
113
+
114
+
115
+ class CertManagerIssuerKind(str, Enum):
116
+ """
117
+ kind of issuer (Issuer or ClusterIssuer).
118
+ """
119
+ ISSUER = "Issuer"
120
+ """
121
+ Issuer kind.
122
+ """
123
+ CLUSTER_ISSUER = "ClusterIssuer"
124
+ """
125
+ ClusterIssuer kind.
126
+ """
127
+
128
+
129
+ class CloudEventAttributeType(str, Enum):
130
+ """
131
+ Cloud event mapping config.
132
+ """
133
+ PROPAGATE = "Propagate"
134
+ """
135
+ Propagate type
136
+ """
137
+ CREATE_OR_REMAP = "CreateOrRemap"
138
+ """
139
+ CreateOrRemap type
140
+ """
141
+
142
+
143
+ class DataLakeStorageAuthMethod(str, Enum):
144
+ """
145
+ Mode of Authentication.
146
+ """
147
+ SYSTEM_ASSIGNED_MANAGED_IDENTITY = "SystemAssignedManagedIdentity"
148
+ """
149
+ SystemAssignedManagedIdentity type
150
+ """
151
+ USER_ASSIGNED_MANAGED_IDENTITY = "UserAssignedManagedIdentity"
152
+ """
153
+ UserAssignedManagedIdentity type
154
+ """
155
+ ACCESS_TOKEN = "AccessToken"
156
+ """
157
+ AccessToken Option
158
+ """
159
+
160
+
161
+ class DataflowEndpointAuthenticationSaslType(str, Enum):
162
+ """
163
+ Type of SASL authentication. Can be PLAIN, SCRAM-SHA-256, or SCRAM-SHA-512.
164
+ """
165
+ PLAIN = "Plain"
166
+ """
167
+ PLAIN Type
168
+ """
169
+ SCRAM_SHA256 = "ScramSha256"
170
+ """
171
+ SCRAM_SHA_256 Type
172
+ """
173
+ SCRAM_SHA512 = "ScramSha512"
174
+ """
175
+ SCRAM_SHA_512 Type
176
+ """
177
+
178
+
179
+ class DataflowEndpointFabricPathType(str, Enum):
180
+ """
181
+ Type of location of the data in the workspace. Can be either tables or files.
182
+ """
183
+ FILES = "Files"
184
+ """
185
+ FILES Type
186
+ """
187
+ TABLES = "Tables"
188
+ """
189
+ TABLES Type
190
+ """
191
+
192
+
193
+ class DataflowEndpointKafkaAcks(str, Enum):
194
+ """
195
+ Kafka acks. Can be all, one, or zero. No effect if the endpoint is used as a source.
196
+ """
197
+ ZERO = "Zero"
198
+ """
199
+ ZERO Option
200
+ """
201
+ ONE = "One"
202
+ """
203
+ ONE Option
204
+ """
205
+ ALL = "All"
206
+ """
207
+ ALL Option
208
+ """
209
+
210
+
211
+ class DataflowEndpointKafkaCompression(str, Enum):
212
+ """
213
+ Compression. Can be none, gzip, lz4, or snappy. No effect if the endpoint is used as a source.
214
+ """
215
+ NONE = "None"
216
+ """
217
+ NONE Option
218
+ """
219
+ GZIP = "Gzip"
220
+ """
221
+ Gzip Option
222
+ """
223
+ SNAPPY = "Snappy"
224
+ """
225
+ SNAPPY Option
226
+ """
227
+ LZ4 = "Lz4"
228
+ """
229
+ LZ4 Option
230
+ """
231
+
232
+
233
+ class DataflowEndpointKafkaPartitionStrategy(str, Enum):
234
+ """
235
+ Partition handling strategy. Can be default or static. No effect if the endpoint is used as a source.
236
+ """
237
+ DEFAULT = "Default"
238
+ """
239
+ Default: Assigns messages to random partitions, using a round-robin algorithm.
240
+ """
241
+ STATIC = "Static"
242
+ """
243
+ Static: Assigns messages to a fixed partition number that's derived from the instance ID of the dataflow.
244
+ """
245
+ TOPIC = "Topic"
246
+ """
247
+ TOPIC Option
248
+ """
249
+ PROPERTY = "Property"
250
+ """
251
+ PROPERTY Option
252
+ """
253
+
254
+
255
+ class DataflowMappingType(str, Enum):
256
+ """
257
+ Type of transformation.
258
+ """
259
+ NEW_PROPERTIES = "NewProperties"
260
+ """
261
+ New Properties type
262
+ """
263
+ RENAME = "Rename"
264
+ """
265
+ Rename type
266
+ """
267
+ COMPUTE = "Compute"
268
+ """
269
+ Compute type
270
+ """
271
+ PASS_THROUGH = "PassThrough"
272
+ """
273
+ Pass-through type
274
+ """
275
+ BUILT_IN_FUNCTION = "BuiltInFunction"
276
+ """
277
+ Built in function type
278
+ """
279
+
280
+
281
+ class EndpointType(str, Enum):
282
+ """
283
+ Endpoint Type.
284
+ """
285
+ DATA_EXPLORER = "DataExplorer"
286
+ """
287
+ Azure Data Explorer Type
288
+ """
289
+ DATA_LAKE_STORAGE = "DataLakeStorage"
290
+ """
291
+ Azure Data Lake Type
292
+ """
293
+ FABRIC_ONE_LAKE = "FabricOneLake"
294
+ """
295
+ Microsoft Fabric Type
296
+ """
297
+ KAFKA = "Kafka"
298
+ """
299
+ Kafka Type
300
+ """
301
+ LOCAL_STORAGE = "LocalStorage"
302
+ """
303
+ Local Storage Type
304
+ """
305
+ MQTT = "Mqtt"
306
+ """
307
+ Broker Type
308
+ """
309
+
310
+
311
+ class ExtendedLocationType(str, Enum):
312
+ """
313
+ Type of ExtendedLocation.
314
+ """
315
+ CUSTOM_LOCATION = "CustomLocation"
316
+ """
317
+ CustomLocation type
318
+ """
319
+
320
+
321
+ class FilterType(str, Enum):
322
+ """
323
+ The type of dataflow operation.
324
+ """
325
+ FILTER = "Filter"
326
+ """
327
+ Filter type
328
+ """
329
+
330
+
331
+ class KafkaAuthMethod(str, Enum):
332
+ """
333
+ Mode of Authentication.
334
+ """
335
+ SYSTEM_ASSIGNED_MANAGED_IDENTITY = "SystemAssignedManagedIdentity"
336
+ """
337
+ SystemAssignedManagedIdentity type
338
+ """
339
+ USER_ASSIGNED_MANAGED_IDENTITY = "UserAssignedManagedIdentity"
340
+ """
341
+ UserAssignedManagedIdentity type
342
+ """
343
+ SASL = "Sasl"
344
+ """
345
+ Sasl Option
346
+ """
347
+ X509_CERTIFICATE = "X509Certificate"
348
+ """
349
+ x509Certificate Option
350
+ """
351
+ ANONYMOUS = "Anonymous"
352
+ """
353
+ Anonymous Option
354
+ """
355
+
356
+
357
+ class ManagedServiceIdentityType(str, Enum):
358
+ """
359
+ Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
360
+ """
361
+ NONE = "None"
362
+ SYSTEM_ASSIGNED = "SystemAssigned"
363
+ USER_ASSIGNED = "UserAssigned"
364
+ SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned,UserAssigned"
365
+
366
+
367
+ class MqttAuthMethod(str, Enum):
368
+ """
369
+ Mode of Authentication.
370
+ """
371
+ SYSTEM_ASSIGNED_MANAGED_IDENTITY = "SystemAssignedManagedIdentity"
372
+ """
373
+ SystemAssignedManagedIdentity type
374
+ """
375
+ USER_ASSIGNED_MANAGED_IDENTITY = "UserAssignedManagedIdentity"
376
+ """
377
+ UserAssignedManagedIdentity type
378
+ """
379
+ SERVICE_ACCOUNT_TOKEN = "ServiceAccountToken"
380
+ """
381
+ ServiceAccountToken Option
382
+ """
383
+ X509_CERTIFICATE = "X509Certificate"
384
+ """
385
+ x509Certificate Option
386
+ """
387
+ ANONYMOUS = "Anonymous"
388
+ """
389
+ Anonymous Option
390
+ """
391
+
392
+
393
+ class MqttRetainType(str, Enum):
394
+ """
395
+ Whether or not to keep the retain setting.
396
+ """
397
+ KEEP = "Keep"
398
+ """
399
+ Retain the messages.
400
+ """
401
+ NEVER = "Never"
402
+ """
403
+ Never retain messages.
404
+ """
405
+
406
+
407
+ class OperationType(str, Enum):
408
+ """
409
+ Type of operation.
410
+ """
411
+ SOURCE = "Source"
412
+ """
413
+ Dataflow Source Operation
414
+ """
415
+ DESTINATION = "Destination"
416
+ """
417
+ Dataflow Destination Operation
418
+ """
419
+ BUILT_IN_TRANSFORMATION = "BuiltInTransformation"
420
+ """
421
+ Dataflow BuiltIn Transformation Operation
422
+ """
423
+
424
+
425
+ class OperationalMode(str, Enum):
426
+ """
427
+ Mode for TLS.
428
+ """
429
+ ENABLED = "Enabled"
430
+ """
431
+ Enabled is equivalent to True
432
+ """
433
+ DISABLED = "Disabled"
434
+ """
435
+ Disabled is equivalent to False.
436
+ """
437
+
438
+
439
+ class OperatorValues(str, Enum):
440
+ """
441
+ operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
442
+ """
443
+ IN_ = "In"
444
+ """
445
+ In operator.
446
+ """
447
+ NOT_IN = "NotIn"
448
+ """
449
+ NotIn operator.
450
+ """
451
+ EXISTS = "Exists"
452
+ """
453
+ Exists operator.
454
+ """
455
+ DOES_NOT_EXIST = "DoesNotExist"
456
+ """
457
+ DoesNotExist operator.
458
+ """
459
+
460
+
461
+ class PrivateKeyAlgorithm(str, Enum):
462
+ """
463
+ algorithm for private key.
464
+ """
465
+ EC256 = "Ec256"
466
+ """
467
+ Algorithm - ec256.
468
+ """
469
+ EC384 = "Ec384"
470
+ """
471
+ Algorithm - ec384.
472
+ """
473
+ EC521 = "Ec521"
474
+ """
475
+ Algorithm - ec521.
476
+ """
477
+ ED25519 = "Ed25519"
478
+ """
479
+ Algorithm - ed25519.
480
+ """
481
+ RSA2048 = "Rsa2048"
482
+ """
483
+ Algorithm - rsa2048.
484
+ """
485
+ RSA4096 = "Rsa4096"
486
+ """
487
+ Algorithm - rsa4096.
488
+ """
489
+ RSA8192 = "Rsa8192"
490
+ """
491
+ Algorithm - rsa8192.
492
+ """
493
+
494
+
495
+ class PrivateKeyRotationPolicy(str, Enum):
496
+ """
497
+ cert-manager private key rotationPolicy.
498
+ """
499
+ ALWAYS = "Always"
500
+ """
501
+ Rotation Policy - Always.
502
+ """
503
+ NEVER = "Never"
504
+ """
505
+ Rotation Policy - Never.
506
+ """
507
+
508
+
509
+ class ServiceType(str, Enum):
510
+ """
511
+ Kubernetes Service type of this listener.
512
+ """
513
+ CLUSTER_IP = "ClusterIp"
514
+ """
515
+ Cluster IP Service.
516
+ """
517
+ LOAD_BALANCER = "LoadBalancer"
518
+ """
519
+ Load Balancer Service.
520
+ """
521
+ NODE_PORT = "NodePort"
522
+ """
523
+ Node Port Service.
524
+ """
525
+
526
+
527
+ class SourceSerializationFormat(str, Enum):
528
+ """
529
+ Content is a JSON Schema. Allowed: JSON Schema/draft-7.
530
+ """
531
+ JSON = "Json"
532
+ """
533
+ JSON Format
534
+ """
535
+
536
+
537
+ class StateStoreResourceDefinitionMethods(str, Enum):
538
+ """
539
+ Give access for `Read`, `Write` and `ReadWrite` access level.
540
+ """
541
+ READ = "Read"
542
+ """
543
+ Get/KeyNotify from Store
544
+ """
545
+ WRITE = "Write"
546
+ """
547
+ Set/Delete in Store
548
+ """
549
+ READ_WRITE = "ReadWrite"
550
+ """
551
+ Allowed all operations on Store - Get/KeyNotify/Set/Delete
552
+ """
553
+
554
+
555
+ class StateStoreResourceKeyTypes(str, Enum):
556
+ """
557
+ Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
558
+ """
559
+ PATTERN = "Pattern"
560
+ """
561
+ Key type - pattern
562
+ """
563
+ STRING = "String"
564
+ """
565
+ Key type - string
566
+ """
567
+ BINARY = "Binary"
568
+ """
569
+ Key type - binary
570
+ """
571
+
572
+
573
+ class SubscriberMessageDropStrategy(str, Enum):
574
+ """
575
+ The strategy to use for dropping messages from the queue.
576
+ """
577
+ NONE = "None"
578
+ """
579
+ Messages are never dropped.
580
+ """
581
+ DROP_OLDEST = "DropOldest"
582
+ """
583
+ The oldest message is dropped.
584
+ """
585
+
586
+
587
+ class TlsCertMethodMode(str, Enum):
588
+ """
589
+ Mode of TLS server certificate management.
590
+ """
591
+ AUTOMATIC = "Automatic"
592
+ """
593
+ Automatic TLS server certificate configuration.
594
+ """
595
+ MANUAL = "Manual"
596
+ """
597
+ Manual TLS server certificate configuration.
598
+ """
599
+
600
+
601
+ class TransformationSerializationFormat(str, Enum):
602
+ """
603
+ Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
604
+ """
605
+ DELTA = "Delta"
606
+ """
607
+ Delta Format
608
+ """
609
+ JSON = "Json"
610
+ """
611
+ JSON Format
612
+ """
613
+ PARQUET = "Parquet"
614
+ """
615
+ Parquet Format
616
+ """