pulumi-azure-native 2.65.0a1728039140__py3-none-any.whl → 2.65.0a1728295684__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.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/METADATA +1 -1
  271. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/RECORD +273 -164
  272. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/WHEEL +0 -0
  273. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,2729 @@
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 ._enums import *
17
+
18
+ __all__ = [
19
+ 'AzureFileVolumeArgs',
20
+ 'AzureFileVolumeArgsDict',
21
+ 'ConfidentialComputePropertiesArgs',
22
+ 'ConfidentialComputePropertiesArgsDict',
23
+ 'ContainerExecArgs',
24
+ 'ContainerExecArgsDict',
25
+ 'ContainerGroupDiagnosticsArgs',
26
+ 'ContainerGroupDiagnosticsArgsDict',
27
+ 'ContainerGroupIdentityArgs',
28
+ 'ContainerGroupIdentityArgsDict',
29
+ 'ContainerGroupSubnetIdArgs',
30
+ 'ContainerGroupSubnetIdArgsDict',
31
+ 'ContainerHttpGetArgs',
32
+ 'ContainerHttpGetArgsDict',
33
+ 'ContainerPortArgs',
34
+ 'ContainerPortArgsDict',
35
+ 'ContainerProbeArgs',
36
+ 'ContainerProbeArgsDict',
37
+ 'ContainerArgs',
38
+ 'ContainerArgsDict',
39
+ 'DeploymentExtensionSpecArgs',
40
+ 'DeploymentExtensionSpecArgsDict',
41
+ 'DnsConfigurationArgs',
42
+ 'DnsConfigurationArgsDict',
43
+ 'EncryptionPropertiesArgs',
44
+ 'EncryptionPropertiesArgsDict',
45
+ 'EnvironmentVariableArgs',
46
+ 'EnvironmentVariableArgsDict',
47
+ 'GitRepoVolumeArgs',
48
+ 'GitRepoVolumeArgsDict',
49
+ 'GpuResourceArgs',
50
+ 'GpuResourceArgsDict',
51
+ 'HttpHeaderArgs',
52
+ 'HttpHeaderArgsDict',
53
+ 'ImageRegistryCredentialArgs',
54
+ 'ImageRegistryCredentialArgsDict',
55
+ 'InitContainerDefinitionArgs',
56
+ 'InitContainerDefinitionArgsDict',
57
+ 'IpAddressArgs',
58
+ 'IpAddressArgsDict',
59
+ 'LogAnalyticsArgs',
60
+ 'LogAnalyticsArgsDict',
61
+ 'PortArgs',
62
+ 'PortArgsDict',
63
+ 'ResourceLimitsArgs',
64
+ 'ResourceLimitsArgsDict',
65
+ 'ResourceRequestsArgs',
66
+ 'ResourceRequestsArgsDict',
67
+ 'ResourceRequirementsArgs',
68
+ 'ResourceRequirementsArgsDict',
69
+ 'SecretReferenceArgs',
70
+ 'SecretReferenceArgsDict',
71
+ 'SecurityContextCapabilitiesDefinitionArgs',
72
+ 'SecurityContextCapabilitiesDefinitionArgsDict',
73
+ 'SecurityContextDefinitionArgs',
74
+ 'SecurityContextDefinitionArgsDict',
75
+ 'VolumeMountArgs',
76
+ 'VolumeMountArgsDict',
77
+ 'VolumeArgs',
78
+ 'VolumeArgsDict',
79
+ ]
80
+
81
+ MYPY = False
82
+
83
+ if not MYPY:
84
+ class AzureFileVolumeArgsDict(TypedDict):
85
+ """
86
+ The properties of the Azure File volume. Azure File shares are mounted as volumes.
87
+ """
88
+ share_name: pulumi.Input[str]
89
+ """
90
+ The name of the Azure File share to be mounted as a volume.
91
+ """
92
+ storage_account_name: pulumi.Input[str]
93
+ """
94
+ The name of the storage account that contains the Azure File share.
95
+ """
96
+ read_only: NotRequired[pulumi.Input[bool]]
97
+ """
98
+ The flag indicating whether the Azure File shared mounted as a volume is read-only.
99
+ """
100
+ storage_account_key: NotRequired[pulumi.Input[str]]
101
+ """
102
+ The storage account access key used to access the Azure File share.
103
+ """
104
+ storage_account_key_reference: NotRequired[pulumi.Input[str]]
105
+ """
106
+ The reference to the storage account access key used to access the Azure File share.
107
+ """
108
+ elif False:
109
+ AzureFileVolumeArgsDict: TypeAlias = Mapping[str, Any]
110
+
111
+ @pulumi.input_type
112
+ class AzureFileVolumeArgs:
113
+ def __init__(__self__, *,
114
+ share_name: pulumi.Input[str],
115
+ storage_account_name: pulumi.Input[str],
116
+ read_only: Optional[pulumi.Input[bool]] = None,
117
+ storage_account_key: Optional[pulumi.Input[str]] = None,
118
+ storage_account_key_reference: Optional[pulumi.Input[str]] = None):
119
+ """
120
+ The properties of the Azure File volume. Azure File shares are mounted as volumes.
121
+ :param pulumi.Input[str] share_name: The name of the Azure File share to be mounted as a volume.
122
+ :param pulumi.Input[str] storage_account_name: The name of the storage account that contains the Azure File share.
123
+ :param pulumi.Input[bool] read_only: The flag indicating whether the Azure File shared mounted as a volume is read-only.
124
+ :param pulumi.Input[str] storage_account_key: The storage account access key used to access the Azure File share.
125
+ :param pulumi.Input[str] storage_account_key_reference: The reference to the storage account access key used to access the Azure File share.
126
+ """
127
+ pulumi.set(__self__, "share_name", share_name)
128
+ pulumi.set(__self__, "storage_account_name", storage_account_name)
129
+ if read_only is not None:
130
+ pulumi.set(__self__, "read_only", read_only)
131
+ if storage_account_key is not None:
132
+ pulumi.set(__self__, "storage_account_key", storage_account_key)
133
+ if storage_account_key_reference is not None:
134
+ pulumi.set(__self__, "storage_account_key_reference", storage_account_key_reference)
135
+
136
+ @property
137
+ @pulumi.getter(name="shareName")
138
+ def share_name(self) -> pulumi.Input[str]:
139
+ """
140
+ The name of the Azure File share to be mounted as a volume.
141
+ """
142
+ return pulumi.get(self, "share_name")
143
+
144
+ @share_name.setter
145
+ def share_name(self, value: pulumi.Input[str]):
146
+ pulumi.set(self, "share_name", value)
147
+
148
+ @property
149
+ @pulumi.getter(name="storageAccountName")
150
+ def storage_account_name(self) -> pulumi.Input[str]:
151
+ """
152
+ The name of the storage account that contains the Azure File share.
153
+ """
154
+ return pulumi.get(self, "storage_account_name")
155
+
156
+ @storage_account_name.setter
157
+ def storage_account_name(self, value: pulumi.Input[str]):
158
+ pulumi.set(self, "storage_account_name", value)
159
+
160
+ @property
161
+ @pulumi.getter(name="readOnly")
162
+ def read_only(self) -> Optional[pulumi.Input[bool]]:
163
+ """
164
+ The flag indicating whether the Azure File shared mounted as a volume is read-only.
165
+ """
166
+ return pulumi.get(self, "read_only")
167
+
168
+ @read_only.setter
169
+ def read_only(self, value: Optional[pulumi.Input[bool]]):
170
+ pulumi.set(self, "read_only", value)
171
+
172
+ @property
173
+ @pulumi.getter(name="storageAccountKey")
174
+ def storage_account_key(self) -> Optional[pulumi.Input[str]]:
175
+ """
176
+ The storage account access key used to access the Azure File share.
177
+ """
178
+ return pulumi.get(self, "storage_account_key")
179
+
180
+ @storage_account_key.setter
181
+ def storage_account_key(self, value: Optional[pulumi.Input[str]]):
182
+ pulumi.set(self, "storage_account_key", value)
183
+
184
+ @property
185
+ @pulumi.getter(name="storageAccountKeyReference")
186
+ def storage_account_key_reference(self) -> Optional[pulumi.Input[str]]:
187
+ """
188
+ The reference to the storage account access key used to access the Azure File share.
189
+ """
190
+ return pulumi.get(self, "storage_account_key_reference")
191
+
192
+ @storage_account_key_reference.setter
193
+ def storage_account_key_reference(self, value: Optional[pulumi.Input[str]]):
194
+ pulumi.set(self, "storage_account_key_reference", value)
195
+
196
+
197
+ if not MYPY:
198
+ class ConfidentialComputePropertiesArgsDict(TypedDict):
199
+ """
200
+ The properties for confidential container group
201
+ """
202
+ cce_policy: NotRequired[pulumi.Input[str]]
203
+ """
204
+ The base64 encoded confidential compute enforcement policy
205
+ """
206
+ elif False:
207
+ ConfidentialComputePropertiesArgsDict: TypeAlias = Mapping[str, Any]
208
+
209
+ @pulumi.input_type
210
+ class ConfidentialComputePropertiesArgs:
211
+ def __init__(__self__, *,
212
+ cce_policy: Optional[pulumi.Input[str]] = None):
213
+ """
214
+ The properties for confidential container group
215
+ :param pulumi.Input[str] cce_policy: The base64 encoded confidential compute enforcement policy
216
+ """
217
+ if cce_policy is not None:
218
+ pulumi.set(__self__, "cce_policy", cce_policy)
219
+
220
+ @property
221
+ @pulumi.getter(name="ccePolicy")
222
+ def cce_policy(self) -> Optional[pulumi.Input[str]]:
223
+ """
224
+ The base64 encoded confidential compute enforcement policy
225
+ """
226
+ return pulumi.get(self, "cce_policy")
227
+
228
+ @cce_policy.setter
229
+ def cce_policy(self, value: Optional[pulumi.Input[str]]):
230
+ pulumi.set(self, "cce_policy", value)
231
+
232
+
233
+ if not MYPY:
234
+ class ContainerExecArgsDict(TypedDict):
235
+ """
236
+ The container execution command, for liveness or readiness probe
237
+ """
238
+ command: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
239
+ """
240
+ The commands to execute within the container.
241
+ """
242
+ elif False:
243
+ ContainerExecArgsDict: TypeAlias = Mapping[str, Any]
244
+
245
+ @pulumi.input_type
246
+ class ContainerExecArgs:
247
+ def __init__(__self__, *,
248
+ command: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
249
+ """
250
+ The container execution command, for liveness or readiness probe
251
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] command: The commands to execute within the container.
252
+ """
253
+ if command is not None:
254
+ pulumi.set(__self__, "command", command)
255
+
256
+ @property
257
+ @pulumi.getter
258
+ def command(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
259
+ """
260
+ The commands to execute within the container.
261
+ """
262
+ return pulumi.get(self, "command")
263
+
264
+ @command.setter
265
+ def command(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
266
+ pulumi.set(self, "command", value)
267
+
268
+
269
+ if not MYPY:
270
+ class ContainerGroupDiagnosticsArgsDict(TypedDict):
271
+ """
272
+ Container group diagnostic information.
273
+ """
274
+ log_analytics: NotRequired[pulumi.Input['LogAnalyticsArgsDict']]
275
+ """
276
+ Container group log analytics information.
277
+ """
278
+ elif False:
279
+ ContainerGroupDiagnosticsArgsDict: TypeAlias = Mapping[str, Any]
280
+
281
+ @pulumi.input_type
282
+ class ContainerGroupDiagnosticsArgs:
283
+ def __init__(__self__, *,
284
+ log_analytics: Optional[pulumi.Input['LogAnalyticsArgs']] = None):
285
+ """
286
+ Container group diagnostic information.
287
+ :param pulumi.Input['LogAnalyticsArgs'] log_analytics: Container group log analytics information.
288
+ """
289
+ if log_analytics is not None:
290
+ pulumi.set(__self__, "log_analytics", log_analytics)
291
+
292
+ @property
293
+ @pulumi.getter(name="logAnalytics")
294
+ def log_analytics(self) -> Optional[pulumi.Input['LogAnalyticsArgs']]:
295
+ """
296
+ Container group log analytics information.
297
+ """
298
+ return pulumi.get(self, "log_analytics")
299
+
300
+ @log_analytics.setter
301
+ def log_analytics(self, value: Optional[pulumi.Input['LogAnalyticsArgs']]):
302
+ pulumi.set(self, "log_analytics", value)
303
+
304
+
305
+ if not MYPY:
306
+ class ContainerGroupIdentityArgsDict(TypedDict):
307
+ """
308
+ Identity for the container group.
309
+ """
310
+ type: NotRequired[pulumi.Input['ResourceIdentityType']]
311
+ """
312
+ The type of identity used for the container group. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the container group.
313
+ """
314
+ user_assigned_identities: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
315
+ """
316
+ The list of user identities associated with the container group.
317
+ """
318
+ elif False:
319
+ ContainerGroupIdentityArgsDict: TypeAlias = Mapping[str, Any]
320
+
321
+ @pulumi.input_type
322
+ class ContainerGroupIdentityArgs:
323
+ def __init__(__self__, *,
324
+ type: Optional[pulumi.Input['ResourceIdentityType']] = None,
325
+ user_assigned_identities: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
326
+ """
327
+ Identity for the container group.
328
+ :param pulumi.Input['ResourceIdentityType'] type: The type of identity used for the container group. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the container group.
329
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] user_assigned_identities: The list of user identities associated with the container group.
330
+ """
331
+ if type is not None:
332
+ pulumi.set(__self__, "type", type)
333
+ if user_assigned_identities is not None:
334
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
335
+
336
+ @property
337
+ @pulumi.getter
338
+ def type(self) -> Optional[pulumi.Input['ResourceIdentityType']]:
339
+ """
340
+ The type of identity used for the container group. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the container group.
341
+ """
342
+ return pulumi.get(self, "type")
343
+
344
+ @type.setter
345
+ def type(self, value: Optional[pulumi.Input['ResourceIdentityType']]):
346
+ pulumi.set(self, "type", value)
347
+
348
+ @property
349
+ @pulumi.getter(name="userAssignedIdentities")
350
+ def user_assigned_identities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
351
+ """
352
+ The list of user identities associated with the container group.
353
+ """
354
+ return pulumi.get(self, "user_assigned_identities")
355
+
356
+ @user_assigned_identities.setter
357
+ def user_assigned_identities(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
358
+ pulumi.set(self, "user_assigned_identities", value)
359
+
360
+
361
+ if not MYPY:
362
+ class ContainerGroupSubnetIdArgsDict(TypedDict):
363
+ """
364
+ Container group subnet information.
365
+ """
366
+ id: pulumi.Input[str]
367
+ """
368
+ Resource ID of virtual network and subnet.
369
+ """
370
+ name: NotRequired[pulumi.Input[str]]
371
+ """
372
+ Friendly name for the subnet.
373
+ """
374
+ elif False:
375
+ ContainerGroupSubnetIdArgsDict: TypeAlias = Mapping[str, Any]
376
+
377
+ @pulumi.input_type
378
+ class ContainerGroupSubnetIdArgs:
379
+ def __init__(__self__, *,
380
+ id: pulumi.Input[str],
381
+ name: Optional[pulumi.Input[str]] = None):
382
+ """
383
+ Container group subnet information.
384
+ :param pulumi.Input[str] id: Resource ID of virtual network and subnet.
385
+ :param pulumi.Input[str] name: Friendly name for the subnet.
386
+ """
387
+ pulumi.set(__self__, "id", id)
388
+ if name is not None:
389
+ pulumi.set(__self__, "name", name)
390
+
391
+ @property
392
+ @pulumi.getter
393
+ def id(self) -> pulumi.Input[str]:
394
+ """
395
+ Resource ID of virtual network and subnet.
396
+ """
397
+ return pulumi.get(self, "id")
398
+
399
+ @id.setter
400
+ def id(self, value: pulumi.Input[str]):
401
+ pulumi.set(self, "id", value)
402
+
403
+ @property
404
+ @pulumi.getter
405
+ def name(self) -> Optional[pulumi.Input[str]]:
406
+ """
407
+ Friendly name for the subnet.
408
+ """
409
+ return pulumi.get(self, "name")
410
+
411
+ @name.setter
412
+ def name(self, value: Optional[pulumi.Input[str]]):
413
+ pulumi.set(self, "name", value)
414
+
415
+
416
+ if not MYPY:
417
+ class ContainerHttpGetArgsDict(TypedDict):
418
+ """
419
+ The container Http Get settings, for liveness or readiness probe
420
+ """
421
+ port: pulumi.Input[int]
422
+ """
423
+ The port number to probe.
424
+ """
425
+ http_headers: NotRequired[pulumi.Input[Sequence[pulumi.Input['HttpHeaderArgsDict']]]]
426
+ """
427
+ The HTTP headers.
428
+ """
429
+ path: NotRequired[pulumi.Input[str]]
430
+ """
431
+ The path to probe.
432
+ """
433
+ scheme: NotRequired[pulumi.Input[Union[str, 'Scheme']]]
434
+ """
435
+ The scheme.
436
+ """
437
+ elif False:
438
+ ContainerHttpGetArgsDict: TypeAlias = Mapping[str, Any]
439
+
440
+ @pulumi.input_type
441
+ class ContainerHttpGetArgs:
442
+ def __init__(__self__, *,
443
+ port: pulumi.Input[int],
444
+ http_headers: Optional[pulumi.Input[Sequence[pulumi.Input['HttpHeaderArgs']]]] = None,
445
+ path: Optional[pulumi.Input[str]] = None,
446
+ scheme: Optional[pulumi.Input[Union[str, 'Scheme']]] = None):
447
+ """
448
+ The container Http Get settings, for liveness or readiness probe
449
+ :param pulumi.Input[int] port: The port number to probe.
450
+ :param pulumi.Input[Sequence[pulumi.Input['HttpHeaderArgs']]] http_headers: The HTTP headers.
451
+ :param pulumi.Input[str] path: The path to probe.
452
+ :param pulumi.Input[Union[str, 'Scheme']] scheme: The scheme.
453
+ """
454
+ pulumi.set(__self__, "port", port)
455
+ if http_headers is not None:
456
+ pulumi.set(__self__, "http_headers", http_headers)
457
+ if path is not None:
458
+ pulumi.set(__self__, "path", path)
459
+ if scheme is not None:
460
+ pulumi.set(__self__, "scheme", scheme)
461
+
462
+ @property
463
+ @pulumi.getter
464
+ def port(self) -> pulumi.Input[int]:
465
+ """
466
+ The port number to probe.
467
+ """
468
+ return pulumi.get(self, "port")
469
+
470
+ @port.setter
471
+ def port(self, value: pulumi.Input[int]):
472
+ pulumi.set(self, "port", value)
473
+
474
+ @property
475
+ @pulumi.getter(name="httpHeaders")
476
+ def http_headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['HttpHeaderArgs']]]]:
477
+ """
478
+ The HTTP headers.
479
+ """
480
+ return pulumi.get(self, "http_headers")
481
+
482
+ @http_headers.setter
483
+ def http_headers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['HttpHeaderArgs']]]]):
484
+ pulumi.set(self, "http_headers", value)
485
+
486
+ @property
487
+ @pulumi.getter
488
+ def path(self) -> Optional[pulumi.Input[str]]:
489
+ """
490
+ The path to probe.
491
+ """
492
+ return pulumi.get(self, "path")
493
+
494
+ @path.setter
495
+ def path(self, value: Optional[pulumi.Input[str]]):
496
+ pulumi.set(self, "path", value)
497
+
498
+ @property
499
+ @pulumi.getter
500
+ def scheme(self) -> Optional[pulumi.Input[Union[str, 'Scheme']]]:
501
+ """
502
+ The scheme.
503
+ """
504
+ return pulumi.get(self, "scheme")
505
+
506
+ @scheme.setter
507
+ def scheme(self, value: Optional[pulumi.Input[Union[str, 'Scheme']]]):
508
+ pulumi.set(self, "scheme", value)
509
+
510
+
511
+ if not MYPY:
512
+ class ContainerPortArgsDict(TypedDict):
513
+ """
514
+ The port exposed on the container instance.
515
+ """
516
+ port: pulumi.Input[int]
517
+ """
518
+ The port number exposed within the container group.
519
+ """
520
+ protocol: NotRequired[pulumi.Input[Union[str, 'ContainerNetworkProtocol']]]
521
+ """
522
+ The protocol associated with the port.
523
+ """
524
+ elif False:
525
+ ContainerPortArgsDict: TypeAlias = Mapping[str, Any]
526
+
527
+ @pulumi.input_type
528
+ class ContainerPortArgs:
529
+ def __init__(__self__, *,
530
+ port: pulumi.Input[int],
531
+ protocol: Optional[pulumi.Input[Union[str, 'ContainerNetworkProtocol']]] = None):
532
+ """
533
+ The port exposed on the container instance.
534
+ :param pulumi.Input[int] port: The port number exposed within the container group.
535
+ :param pulumi.Input[Union[str, 'ContainerNetworkProtocol']] protocol: The protocol associated with the port.
536
+ """
537
+ pulumi.set(__self__, "port", port)
538
+ if protocol is not None:
539
+ pulumi.set(__self__, "protocol", protocol)
540
+
541
+ @property
542
+ @pulumi.getter
543
+ def port(self) -> pulumi.Input[int]:
544
+ """
545
+ The port number exposed within the container group.
546
+ """
547
+ return pulumi.get(self, "port")
548
+
549
+ @port.setter
550
+ def port(self, value: pulumi.Input[int]):
551
+ pulumi.set(self, "port", value)
552
+
553
+ @property
554
+ @pulumi.getter
555
+ def protocol(self) -> Optional[pulumi.Input[Union[str, 'ContainerNetworkProtocol']]]:
556
+ """
557
+ The protocol associated with the port.
558
+ """
559
+ return pulumi.get(self, "protocol")
560
+
561
+ @protocol.setter
562
+ def protocol(self, value: Optional[pulumi.Input[Union[str, 'ContainerNetworkProtocol']]]):
563
+ pulumi.set(self, "protocol", value)
564
+
565
+
566
+ if not MYPY:
567
+ class ContainerProbeArgsDict(TypedDict):
568
+ """
569
+ The container probe, for liveness or readiness
570
+ """
571
+ exec_: NotRequired[pulumi.Input['ContainerExecArgsDict']]
572
+ """
573
+ The execution command to probe
574
+ """
575
+ failure_threshold: NotRequired[pulumi.Input[int]]
576
+ """
577
+ The failure threshold.
578
+ """
579
+ http_get: NotRequired[pulumi.Input['ContainerHttpGetArgsDict']]
580
+ """
581
+ The Http Get settings to probe
582
+ """
583
+ initial_delay_seconds: NotRequired[pulumi.Input[int]]
584
+ """
585
+ The initial delay seconds.
586
+ """
587
+ period_seconds: NotRequired[pulumi.Input[int]]
588
+ """
589
+ The period seconds.
590
+ """
591
+ success_threshold: NotRequired[pulumi.Input[int]]
592
+ """
593
+ The success threshold.
594
+ """
595
+ timeout_seconds: NotRequired[pulumi.Input[int]]
596
+ """
597
+ The timeout seconds.
598
+ """
599
+ elif False:
600
+ ContainerProbeArgsDict: TypeAlias = Mapping[str, Any]
601
+
602
+ @pulumi.input_type
603
+ class ContainerProbeArgs:
604
+ def __init__(__self__, *,
605
+ exec_: Optional[pulumi.Input['ContainerExecArgs']] = None,
606
+ failure_threshold: Optional[pulumi.Input[int]] = None,
607
+ http_get: Optional[pulumi.Input['ContainerHttpGetArgs']] = None,
608
+ initial_delay_seconds: Optional[pulumi.Input[int]] = None,
609
+ period_seconds: Optional[pulumi.Input[int]] = None,
610
+ success_threshold: Optional[pulumi.Input[int]] = None,
611
+ timeout_seconds: Optional[pulumi.Input[int]] = None):
612
+ """
613
+ The container probe, for liveness or readiness
614
+ :param pulumi.Input['ContainerExecArgs'] exec_: The execution command to probe
615
+ :param pulumi.Input[int] failure_threshold: The failure threshold.
616
+ :param pulumi.Input['ContainerHttpGetArgs'] http_get: The Http Get settings to probe
617
+ :param pulumi.Input[int] initial_delay_seconds: The initial delay seconds.
618
+ :param pulumi.Input[int] period_seconds: The period seconds.
619
+ :param pulumi.Input[int] success_threshold: The success threshold.
620
+ :param pulumi.Input[int] timeout_seconds: The timeout seconds.
621
+ """
622
+ if exec_ is not None:
623
+ pulumi.set(__self__, "exec_", exec_)
624
+ if failure_threshold is not None:
625
+ pulumi.set(__self__, "failure_threshold", failure_threshold)
626
+ if http_get is not None:
627
+ pulumi.set(__self__, "http_get", http_get)
628
+ if initial_delay_seconds is not None:
629
+ pulumi.set(__self__, "initial_delay_seconds", initial_delay_seconds)
630
+ if period_seconds is not None:
631
+ pulumi.set(__self__, "period_seconds", period_seconds)
632
+ if success_threshold is not None:
633
+ pulumi.set(__self__, "success_threshold", success_threshold)
634
+ if timeout_seconds is not None:
635
+ pulumi.set(__self__, "timeout_seconds", timeout_seconds)
636
+
637
+ @property
638
+ @pulumi.getter(name="exec")
639
+ def exec_(self) -> Optional[pulumi.Input['ContainerExecArgs']]:
640
+ """
641
+ The execution command to probe
642
+ """
643
+ return pulumi.get(self, "exec_")
644
+
645
+ @exec_.setter
646
+ def exec_(self, value: Optional[pulumi.Input['ContainerExecArgs']]):
647
+ pulumi.set(self, "exec_", value)
648
+
649
+ @property
650
+ @pulumi.getter(name="failureThreshold")
651
+ def failure_threshold(self) -> Optional[pulumi.Input[int]]:
652
+ """
653
+ The failure threshold.
654
+ """
655
+ return pulumi.get(self, "failure_threshold")
656
+
657
+ @failure_threshold.setter
658
+ def failure_threshold(self, value: Optional[pulumi.Input[int]]):
659
+ pulumi.set(self, "failure_threshold", value)
660
+
661
+ @property
662
+ @pulumi.getter(name="httpGet")
663
+ def http_get(self) -> Optional[pulumi.Input['ContainerHttpGetArgs']]:
664
+ """
665
+ The Http Get settings to probe
666
+ """
667
+ return pulumi.get(self, "http_get")
668
+
669
+ @http_get.setter
670
+ def http_get(self, value: Optional[pulumi.Input['ContainerHttpGetArgs']]):
671
+ pulumi.set(self, "http_get", value)
672
+
673
+ @property
674
+ @pulumi.getter(name="initialDelaySeconds")
675
+ def initial_delay_seconds(self) -> Optional[pulumi.Input[int]]:
676
+ """
677
+ The initial delay seconds.
678
+ """
679
+ return pulumi.get(self, "initial_delay_seconds")
680
+
681
+ @initial_delay_seconds.setter
682
+ def initial_delay_seconds(self, value: Optional[pulumi.Input[int]]):
683
+ pulumi.set(self, "initial_delay_seconds", value)
684
+
685
+ @property
686
+ @pulumi.getter(name="periodSeconds")
687
+ def period_seconds(self) -> Optional[pulumi.Input[int]]:
688
+ """
689
+ The period seconds.
690
+ """
691
+ return pulumi.get(self, "period_seconds")
692
+
693
+ @period_seconds.setter
694
+ def period_seconds(self, value: Optional[pulumi.Input[int]]):
695
+ pulumi.set(self, "period_seconds", value)
696
+
697
+ @property
698
+ @pulumi.getter(name="successThreshold")
699
+ def success_threshold(self) -> Optional[pulumi.Input[int]]:
700
+ """
701
+ The success threshold.
702
+ """
703
+ return pulumi.get(self, "success_threshold")
704
+
705
+ @success_threshold.setter
706
+ def success_threshold(self, value: Optional[pulumi.Input[int]]):
707
+ pulumi.set(self, "success_threshold", value)
708
+
709
+ @property
710
+ @pulumi.getter(name="timeoutSeconds")
711
+ def timeout_seconds(self) -> Optional[pulumi.Input[int]]:
712
+ """
713
+ The timeout seconds.
714
+ """
715
+ return pulumi.get(self, "timeout_seconds")
716
+
717
+ @timeout_seconds.setter
718
+ def timeout_seconds(self, value: Optional[pulumi.Input[int]]):
719
+ pulumi.set(self, "timeout_seconds", value)
720
+
721
+
722
+ if not MYPY:
723
+ class ContainerArgsDict(TypedDict):
724
+ """
725
+ A container instance.
726
+ """
727
+ image: pulumi.Input[str]
728
+ """
729
+ The name of the image used to create the container instance.
730
+ """
731
+ name: pulumi.Input[str]
732
+ """
733
+ The user-provided name of the container instance.
734
+ """
735
+ resources: pulumi.Input['ResourceRequirementsArgsDict']
736
+ """
737
+ The resource requirements of the container instance.
738
+ """
739
+ command: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
740
+ """
741
+ The commands to execute within the container instance in exec form.
742
+ """
743
+ environment_variables: NotRequired[pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgsDict']]]]
744
+ """
745
+ The environment variables to set in the container instance.
746
+ """
747
+ liveness_probe: NotRequired[pulumi.Input['ContainerProbeArgsDict']]
748
+ """
749
+ The liveness probe.
750
+ """
751
+ ports: NotRequired[pulumi.Input[Sequence[pulumi.Input['ContainerPortArgsDict']]]]
752
+ """
753
+ The exposed ports on the container instance.
754
+ """
755
+ readiness_probe: NotRequired[pulumi.Input['ContainerProbeArgsDict']]
756
+ """
757
+ The readiness probe.
758
+ """
759
+ security_context: NotRequired[pulumi.Input['SecurityContextDefinitionArgsDict']]
760
+ """
761
+ The container security properties.
762
+ """
763
+ volume_mounts: NotRequired[pulumi.Input[Sequence[pulumi.Input['VolumeMountArgsDict']]]]
764
+ """
765
+ The volume mounts available to the container instance.
766
+ """
767
+ elif False:
768
+ ContainerArgsDict: TypeAlias = Mapping[str, Any]
769
+
770
+ @pulumi.input_type
771
+ class ContainerArgs:
772
+ def __init__(__self__, *,
773
+ image: pulumi.Input[str],
774
+ name: pulumi.Input[str],
775
+ resources: pulumi.Input['ResourceRequirementsArgs'],
776
+ command: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
777
+ environment_variables: Optional[pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]]] = None,
778
+ liveness_probe: Optional[pulumi.Input['ContainerProbeArgs']] = None,
779
+ ports: Optional[pulumi.Input[Sequence[pulumi.Input['ContainerPortArgs']]]] = None,
780
+ readiness_probe: Optional[pulumi.Input['ContainerProbeArgs']] = None,
781
+ security_context: Optional[pulumi.Input['SecurityContextDefinitionArgs']] = None,
782
+ volume_mounts: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeMountArgs']]]] = None):
783
+ """
784
+ A container instance.
785
+ :param pulumi.Input[str] image: The name of the image used to create the container instance.
786
+ :param pulumi.Input[str] name: The user-provided name of the container instance.
787
+ :param pulumi.Input['ResourceRequirementsArgs'] resources: The resource requirements of the container instance.
788
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] command: The commands to execute within the container instance in exec form.
789
+ :param pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]] environment_variables: The environment variables to set in the container instance.
790
+ :param pulumi.Input['ContainerProbeArgs'] liveness_probe: The liveness probe.
791
+ :param pulumi.Input[Sequence[pulumi.Input['ContainerPortArgs']]] ports: The exposed ports on the container instance.
792
+ :param pulumi.Input['ContainerProbeArgs'] readiness_probe: The readiness probe.
793
+ :param pulumi.Input['SecurityContextDefinitionArgs'] security_context: The container security properties.
794
+ :param pulumi.Input[Sequence[pulumi.Input['VolumeMountArgs']]] volume_mounts: The volume mounts available to the container instance.
795
+ """
796
+ pulumi.set(__self__, "image", image)
797
+ pulumi.set(__self__, "name", name)
798
+ pulumi.set(__self__, "resources", resources)
799
+ if command is not None:
800
+ pulumi.set(__self__, "command", command)
801
+ if environment_variables is not None:
802
+ pulumi.set(__self__, "environment_variables", environment_variables)
803
+ if liveness_probe is not None:
804
+ pulumi.set(__self__, "liveness_probe", liveness_probe)
805
+ if ports is not None:
806
+ pulumi.set(__self__, "ports", ports)
807
+ if readiness_probe is not None:
808
+ pulumi.set(__self__, "readiness_probe", readiness_probe)
809
+ if security_context is not None:
810
+ pulumi.set(__self__, "security_context", security_context)
811
+ if volume_mounts is not None:
812
+ pulumi.set(__self__, "volume_mounts", volume_mounts)
813
+
814
+ @property
815
+ @pulumi.getter
816
+ def image(self) -> pulumi.Input[str]:
817
+ """
818
+ The name of the image used to create the container instance.
819
+ """
820
+ return pulumi.get(self, "image")
821
+
822
+ @image.setter
823
+ def image(self, value: pulumi.Input[str]):
824
+ pulumi.set(self, "image", value)
825
+
826
+ @property
827
+ @pulumi.getter
828
+ def name(self) -> pulumi.Input[str]:
829
+ """
830
+ The user-provided name of the container instance.
831
+ """
832
+ return pulumi.get(self, "name")
833
+
834
+ @name.setter
835
+ def name(self, value: pulumi.Input[str]):
836
+ pulumi.set(self, "name", value)
837
+
838
+ @property
839
+ @pulumi.getter
840
+ def resources(self) -> pulumi.Input['ResourceRequirementsArgs']:
841
+ """
842
+ The resource requirements of the container instance.
843
+ """
844
+ return pulumi.get(self, "resources")
845
+
846
+ @resources.setter
847
+ def resources(self, value: pulumi.Input['ResourceRequirementsArgs']):
848
+ pulumi.set(self, "resources", value)
849
+
850
+ @property
851
+ @pulumi.getter
852
+ def command(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
853
+ """
854
+ The commands to execute within the container instance in exec form.
855
+ """
856
+ return pulumi.get(self, "command")
857
+
858
+ @command.setter
859
+ def command(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
860
+ pulumi.set(self, "command", value)
861
+
862
+ @property
863
+ @pulumi.getter(name="environmentVariables")
864
+ def environment_variables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]]]:
865
+ """
866
+ The environment variables to set in the container instance.
867
+ """
868
+ return pulumi.get(self, "environment_variables")
869
+
870
+ @environment_variables.setter
871
+ def environment_variables(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]]]):
872
+ pulumi.set(self, "environment_variables", value)
873
+
874
+ @property
875
+ @pulumi.getter(name="livenessProbe")
876
+ def liveness_probe(self) -> Optional[pulumi.Input['ContainerProbeArgs']]:
877
+ """
878
+ The liveness probe.
879
+ """
880
+ return pulumi.get(self, "liveness_probe")
881
+
882
+ @liveness_probe.setter
883
+ def liveness_probe(self, value: Optional[pulumi.Input['ContainerProbeArgs']]):
884
+ pulumi.set(self, "liveness_probe", value)
885
+
886
+ @property
887
+ @pulumi.getter
888
+ def ports(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ContainerPortArgs']]]]:
889
+ """
890
+ The exposed ports on the container instance.
891
+ """
892
+ return pulumi.get(self, "ports")
893
+
894
+ @ports.setter
895
+ def ports(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ContainerPortArgs']]]]):
896
+ pulumi.set(self, "ports", value)
897
+
898
+ @property
899
+ @pulumi.getter(name="readinessProbe")
900
+ def readiness_probe(self) -> Optional[pulumi.Input['ContainerProbeArgs']]:
901
+ """
902
+ The readiness probe.
903
+ """
904
+ return pulumi.get(self, "readiness_probe")
905
+
906
+ @readiness_probe.setter
907
+ def readiness_probe(self, value: Optional[pulumi.Input['ContainerProbeArgs']]):
908
+ pulumi.set(self, "readiness_probe", value)
909
+
910
+ @property
911
+ @pulumi.getter(name="securityContext")
912
+ def security_context(self) -> Optional[pulumi.Input['SecurityContextDefinitionArgs']]:
913
+ """
914
+ The container security properties.
915
+ """
916
+ return pulumi.get(self, "security_context")
917
+
918
+ @security_context.setter
919
+ def security_context(self, value: Optional[pulumi.Input['SecurityContextDefinitionArgs']]):
920
+ pulumi.set(self, "security_context", value)
921
+
922
+ @property
923
+ @pulumi.getter(name="volumeMounts")
924
+ def volume_mounts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VolumeMountArgs']]]]:
925
+ """
926
+ The volume mounts available to the container instance.
927
+ """
928
+ return pulumi.get(self, "volume_mounts")
929
+
930
+ @volume_mounts.setter
931
+ def volume_mounts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeMountArgs']]]]):
932
+ pulumi.set(self, "volume_mounts", value)
933
+
934
+
935
+ if not MYPY:
936
+ class DeploymentExtensionSpecArgsDict(TypedDict):
937
+ """
938
+ Extension sidecars to be added to the deployment.
939
+ """
940
+ extension_type: pulumi.Input[str]
941
+ """
942
+ Type of extension to be added.
943
+ """
944
+ name: pulumi.Input[str]
945
+ """
946
+ Name of the extension.
947
+ """
948
+ version: pulumi.Input[str]
949
+ """
950
+ Version of the extension being used.
951
+ """
952
+ protected_settings: NotRequired[Any]
953
+ """
954
+ Protected settings for the extension.
955
+ """
956
+ settings: NotRequired[Any]
957
+ """
958
+ Settings for the extension.
959
+ """
960
+ elif False:
961
+ DeploymentExtensionSpecArgsDict: TypeAlias = Mapping[str, Any]
962
+
963
+ @pulumi.input_type
964
+ class DeploymentExtensionSpecArgs:
965
+ def __init__(__self__, *,
966
+ extension_type: pulumi.Input[str],
967
+ name: pulumi.Input[str],
968
+ version: pulumi.Input[str],
969
+ protected_settings: Optional[Any] = None,
970
+ settings: Optional[Any] = None):
971
+ """
972
+ Extension sidecars to be added to the deployment.
973
+ :param pulumi.Input[str] extension_type: Type of extension to be added.
974
+ :param pulumi.Input[str] name: Name of the extension.
975
+ :param pulumi.Input[str] version: Version of the extension being used.
976
+ :param Any protected_settings: Protected settings for the extension.
977
+ :param Any settings: Settings for the extension.
978
+ """
979
+ pulumi.set(__self__, "extension_type", extension_type)
980
+ pulumi.set(__self__, "name", name)
981
+ pulumi.set(__self__, "version", version)
982
+ if protected_settings is not None:
983
+ pulumi.set(__self__, "protected_settings", protected_settings)
984
+ if settings is not None:
985
+ pulumi.set(__self__, "settings", settings)
986
+
987
+ @property
988
+ @pulumi.getter(name="extensionType")
989
+ def extension_type(self) -> pulumi.Input[str]:
990
+ """
991
+ Type of extension to be added.
992
+ """
993
+ return pulumi.get(self, "extension_type")
994
+
995
+ @extension_type.setter
996
+ def extension_type(self, value: pulumi.Input[str]):
997
+ pulumi.set(self, "extension_type", value)
998
+
999
+ @property
1000
+ @pulumi.getter
1001
+ def name(self) -> pulumi.Input[str]:
1002
+ """
1003
+ Name of the extension.
1004
+ """
1005
+ return pulumi.get(self, "name")
1006
+
1007
+ @name.setter
1008
+ def name(self, value: pulumi.Input[str]):
1009
+ pulumi.set(self, "name", value)
1010
+
1011
+ @property
1012
+ @pulumi.getter
1013
+ def version(self) -> pulumi.Input[str]:
1014
+ """
1015
+ Version of the extension being used.
1016
+ """
1017
+ return pulumi.get(self, "version")
1018
+
1019
+ @version.setter
1020
+ def version(self, value: pulumi.Input[str]):
1021
+ pulumi.set(self, "version", value)
1022
+
1023
+ @property
1024
+ @pulumi.getter(name="protectedSettings")
1025
+ def protected_settings(self) -> Optional[Any]:
1026
+ """
1027
+ Protected settings for the extension.
1028
+ """
1029
+ return pulumi.get(self, "protected_settings")
1030
+
1031
+ @protected_settings.setter
1032
+ def protected_settings(self, value: Optional[Any]):
1033
+ pulumi.set(self, "protected_settings", value)
1034
+
1035
+ @property
1036
+ @pulumi.getter
1037
+ def settings(self) -> Optional[Any]:
1038
+ """
1039
+ Settings for the extension.
1040
+ """
1041
+ return pulumi.get(self, "settings")
1042
+
1043
+ @settings.setter
1044
+ def settings(self, value: Optional[Any]):
1045
+ pulumi.set(self, "settings", value)
1046
+
1047
+
1048
+ if not MYPY:
1049
+ class DnsConfigurationArgsDict(TypedDict):
1050
+ """
1051
+ DNS configuration for the container group.
1052
+ """
1053
+ name_servers: pulumi.Input[Sequence[pulumi.Input[str]]]
1054
+ """
1055
+ The DNS servers for the container group.
1056
+ """
1057
+ options: NotRequired[pulumi.Input[str]]
1058
+ """
1059
+ The DNS options for the container group.
1060
+ """
1061
+ search_domains: NotRequired[pulumi.Input[str]]
1062
+ """
1063
+ The DNS search domains for hostname lookup in the container group.
1064
+ """
1065
+ elif False:
1066
+ DnsConfigurationArgsDict: TypeAlias = Mapping[str, Any]
1067
+
1068
+ @pulumi.input_type
1069
+ class DnsConfigurationArgs:
1070
+ def __init__(__self__, *,
1071
+ name_servers: pulumi.Input[Sequence[pulumi.Input[str]]],
1072
+ options: Optional[pulumi.Input[str]] = None,
1073
+ search_domains: Optional[pulumi.Input[str]] = None):
1074
+ """
1075
+ DNS configuration for the container group.
1076
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] name_servers: The DNS servers for the container group.
1077
+ :param pulumi.Input[str] options: The DNS options for the container group.
1078
+ :param pulumi.Input[str] search_domains: The DNS search domains for hostname lookup in the container group.
1079
+ """
1080
+ pulumi.set(__self__, "name_servers", name_servers)
1081
+ if options is not None:
1082
+ pulumi.set(__self__, "options", options)
1083
+ if search_domains is not None:
1084
+ pulumi.set(__self__, "search_domains", search_domains)
1085
+
1086
+ @property
1087
+ @pulumi.getter(name="nameServers")
1088
+ def name_servers(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
1089
+ """
1090
+ The DNS servers for the container group.
1091
+ """
1092
+ return pulumi.get(self, "name_servers")
1093
+
1094
+ @name_servers.setter
1095
+ def name_servers(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
1096
+ pulumi.set(self, "name_servers", value)
1097
+
1098
+ @property
1099
+ @pulumi.getter
1100
+ def options(self) -> Optional[pulumi.Input[str]]:
1101
+ """
1102
+ The DNS options for the container group.
1103
+ """
1104
+ return pulumi.get(self, "options")
1105
+
1106
+ @options.setter
1107
+ def options(self, value: Optional[pulumi.Input[str]]):
1108
+ pulumi.set(self, "options", value)
1109
+
1110
+ @property
1111
+ @pulumi.getter(name="searchDomains")
1112
+ def search_domains(self) -> Optional[pulumi.Input[str]]:
1113
+ """
1114
+ The DNS search domains for hostname lookup in the container group.
1115
+ """
1116
+ return pulumi.get(self, "search_domains")
1117
+
1118
+ @search_domains.setter
1119
+ def search_domains(self, value: Optional[pulumi.Input[str]]):
1120
+ pulumi.set(self, "search_domains", value)
1121
+
1122
+
1123
+ if not MYPY:
1124
+ class EncryptionPropertiesArgsDict(TypedDict):
1125
+ """
1126
+ The container group encryption properties.
1127
+ """
1128
+ key_name: pulumi.Input[str]
1129
+ """
1130
+ The encryption key name.
1131
+ """
1132
+ key_version: pulumi.Input[str]
1133
+ """
1134
+ The encryption key version.
1135
+ """
1136
+ vault_base_url: pulumi.Input[str]
1137
+ """
1138
+ The keyvault base url.
1139
+ """
1140
+ identity: NotRequired[pulumi.Input[str]]
1141
+ """
1142
+ The keyvault managed identity.
1143
+ """
1144
+ elif False:
1145
+ EncryptionPropertiesArgsDict: TypeAlias = Mapping[str, Any]
1146
+
1147
+ @pulumi.input_type
1148
+ class EncryptionPropertiesArgs:
1149
+ def __init__(__self__, *,
1150
+ key_name: pulumi.Input[str],
1151
+ key_version: pulumi.Input[str],
1152
+ vault_base_url: pulumi.Input[str],
1153
+ identity: Optional[pulumi.Input[str]] = None):
1154
+ """
1155
+ The container group encryption properties.
1156
+ :param pulumi.Input[str] key_name: The encryption key name.
1157
+ :param pulumi.Input[str] key_version: The encryption key version.
1158
+ :param pulumi.Input[str] vault_base_url: The keyvault base url.
1159
+ :param pulumi.Input[str] identity: The keyvault managed identity.
1160
+ """
1161
+ pulumi.set(__self__, "key_name", key_name)
1162
+ pulumi.set(__self__, "key_version", key_version)
1163
+ pulumi.set(__self__, "vault_base_url", vault_base_url)
1164
+ if identity is not None:
1165
+ pulumi.set(__self__, "identity", identity)
1166
+
1167
+ @property
1168
+ @pulumi.getter(name="keyName")
1169
+ def key_name(self) -> pulumi.Input[str]:
1170
+ """
1171
+ The encryption key name.
1172
+ """
1173
+ return pulumi.get(self, "key_name")
1174
+
1175
+ @key_name.setter
1176
+ def key_name(self, value: pulumi.Input[str]):
1177
+ pulumi.set(self, "key_name", value)
1178
+
1179
+ @property
1180
+ @pulumi.getter(name="keyVersion")
1181
+ def key_version(self) -> pulumi.Input[str]:
1182
+ """
1183
+ The encryption key version.
1184
+ """
1185
+ return pulumi.get(self, "key_version")
1186
+
1187
+ @key_version.setter
1188
+ def key_version(self, value: pulumi.Input[str]):
1189
+ pulumi.set(self, "key_version", value)
1190
+
1191
+ @property
1192
+ @pulumi.getter(name="vaultBaseUrl")
1193
+ def vault_base_url(self) -> pulumi.Input[str]:
1194
+ """
1195
+ The keyvault base url.
1196
+ """
1197
+ return pulumi.get(self, "vault_base_url")
1198
+
1199
+ @vault_base_url.setter
1200
+ def vault_base_url(self, value: pulumi.Input[str]):
1201
+ pulumi.set(self, "vault_base_url", value)
1202
+
1203
+ @property
1204
+ @pulumi.getter
1205
+ def identity(self) -> Optional[pulumi.Input[str]]:
1206
+ """
1207
+ The keyvault managed identity.
1208
+ """
1209
+ return pulumi.get(self, "identity")
1210
+
1211
+ @identity.setter
1212
+ def identity(self, value: Optional[pulumi.Input[str]]):
1213
+ pulumi.set(self, "identity", value)
1214
+
1215
+
1216
+ if not MYPY:
1217
+ class EnvironmentVariableArgsDict(TypedDict):
1218
+ """
1219
+ The environment variable to set within the container instance.
1220
+ """
1221
+ name: pulumi.Input[str]
1222
+ """
1223
+ The name of the environment variable.
1224
+ """
1225
+ secure_value: NotRequired[pulumi.Input[str]]
1226
+ """
1227
+ The value of the secure environment variable.
1228
+ """
1229
+ secure_value_reference: NotRequired[pulumi.Input[str]]
1230
+ """
1231
+ The reference of the secure environment variable.
1232
+ """
1233
+ value: NotRequired[pulumi.Input[str]]
1234
+ """
1235
+ The value of the environment variable.
1236
+ """
1237
+ elif False:
1238
+ EnvironmentVariableArgsDict: TypeAlias = Mapping[str, Any]
1239
+
1240
+ @pulumi.input_type
1241
+ class EnvironmentVariableArgs:
1242
+ def __init__(__self__, *,
1243
+ name: pulumi.Input[str],
1244
+ secure_value: Optional[pulumi.Input[str]] = None,
1245
+ secure_value_reference: Optional[pulumi.Input[str]] = None,
1246
+ value: Optional[pulumi.Input[str]] = None):
1247
+ """
1248
+ The environment variable to set within the container instance.
1249
+ :param pulumi.Input[str] name: The name of the environment variable.
1250
+ :param pulumi.Input[str] secure_value: The value of the secure environment variable.
1251
+ :param pulumi.Input[str] secure_value_reference: The reference of the secure environment variable.
1252
+ :param pulumi.Input[str] value: The value of the environment variable.
1253
+ """
1254
+ pulumi.set(__self__, "name", name)
1255
+ if secure_value is not None:
1256
+ pulumi.set(__self__, "secure_value", secure_value)
1257
+ if secure_value_reference is not None:
1258
+ pulumi.set(__self__, "secure_value_reference", secure_value_reference)
1259
+ if value is not None:
1260
+ pulumi.set(__self__, "value", value)
1261
+
1262
+ @property
1263
+ @pulumi.getter
1264
+ def name(self) -> pulumi.Input[str]:
1265
+ """
1266
+ The name of the environment variable.
1267
+ """
1268
+ return pulumi.get(self, "name")
1269
+
1270
+ @name.setter
1271
+ def name(self, value: pulumi.Input[str]):
1272
+ pulumi.set(self, "name", value)
1273
+
1274
+ @property
1275
+ @pulumi.getter(name="secureValue")
1276
+ def secure_value(self) -> Optional[pulumi.Input[str]]:
1277
+ """
1278
+ The value of the secure environment variable.
1279
+ """
1280
+ return pulumi.get(self, "secure_value")
1281
+
1282
+ @secure_value.setter
1283
+ def secure_value(self, value: Optional[pulumi.Input[str]]):
1284
+ pulumi.set(self, "secure_value", value)
1285
+
1286
+ @property
1287
+ @pulumi.getter(name="secureValueReference")
1288
+ def secure_value_reference(self) -> Optional[pulumi.Input[str]]:
1289
+ """
1290
+ The reference of the secure environment variable.
1291
+ """
1292
+ return pulumi.get(self, "secure_value_reference")
1293
+
1294
+ @secure_value_reference.setter
1295
+ def secure_value_reference(self, value: Optional[pulumi.Input[str]]):
1296
+ pulumi.set(self, "secure_value_reference", value)
1297
+
1298
+ @property
1299
+ @pulumi.getter
1300
+ def value(self) -> Optional[pulumi.Input[str]]:
1301
+ """
1302
+ The value of the environment variable.
1303
+ """
1304
+ return pulumi.get(self, "value")
1305
+
1306
+ @value.setter
1307
+ def value(self, value: Optional[pulumi.Input[str]]):
1308
+ pulumi.set(self, "value", value)
1309
+
1310
+
1311
+ if not MYPY:
1312
+ class GitRepoVolumeArgsDict(TypedDict):
1313
+ """
1314
+ Represents a volume that is populated with the contents of a git repository
1315
+ """
1316
+ repository: pulumi.Input[str]
1317
+ """
1318
+ Repository URL
1319
+ """
1320
+ directory: NotRequired[pulumi.Input[str]]
1321
+ """
1322
+ Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
1323
+ """
1324
+ revision: NotRequired[pulumi.Input[str]]
1325
+ """
1326
+ Commit hash for the specified revision.
1327
+ """
1328
+ elif False:
1329
+ GitRepoVolumeArgsDict: TypeAlias = Mapping[str, Any]
1330
+
1331
+ @pulumi.input_type
1332
+ class GitRepoVolumeArgs:
1333
+ def __init__(__self__, *,
1334
+ repository: pulumi.Input[str],
1335
+ directory: Optional[pulumi.Input[str]] = None,
1336
+ revision: Optional[pulumi.Input[str]] = None):
1337
+ """
1338
+ Represents a volume that is populated with the contents of a git repository
1339
+ :param pulumi.Input[str] repository: Repository URL
1340
+ :param pulumi.Input[str] directory: Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
1341
+ :param pulumi.Input[str] revision: Commit hash for the specified revision.
1342
+ """
1343
+ pulumi.set(__self__, "repository", repository)
1344
+ if directory is not None:
1345
+ pulumi.set(__self__, "directory", directory)
1346
+ if revision is not None:
1347
+ pulumi.set(__self__, "revision", revision)
1348
+
1349
+ @property
1350
+ @pulumi.getter
1351
+ def repository(self) -> pulumi.Input[str]:
1352
+ """
1353
+ Repository URL
1354
+ """
1355
+ return pulumi.get(self, "repository")
1356
+
1357
+ @repository.setter
1358
+ def repository(self, value: pulumi.Input[str]):
1359
+ pulumi.set(self, "repository", value)
1360
+
1361
+ @property
1362
+ @pulumi.getter
1363
+ def directory(self) -> Optional[pulumi.Input[str]]:
1364
+ """
1365
+ Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
1366
+ """
1367
+ return pulumi.get(self, "directory")
1368
+
1369
+ @directory.setter
1370
+ def directory(self, value: Optional[pulumi.Input[str]]):
1371
+ pulumi.set(self, "directory", value)
1372
+
1373
+ @property
1374
+ @pulumi.getter
1375
+ def revision(self) -> Optional[pulumi.Input[str]]:
1376
+ """
1377
+ Commit hash for the specified revision.
1378
+ """
1379
+ return pulumi.get(self, "revision")
1380
+
1381
+ @revision.setter
1382
+ def revision(self, value: Optional[pulumi.Input[str]]):
1383
+ pulumi.set(self, "revision", value)
1384
+
1385
+
1386
+ if not MYPY:
1387
+ class GpuResourceArgsDict(TypedDict):
1388
+ """
1389
+ The GPU resource.
1390
+ """
1391
+ count: pulumi.Input[int]
1392
+ """
1393
+ The count of the GPU resource.
1394
+ """
1395
+ sku: pulumi.Input[Union[str, 'GpuSku']]
1396
+ """
1397
+ The SKU of the GPU resource.
1398
+ """
1399
+ elif False:
1400
+ GpuResourceArgsDict: TypeAlias = Mapping[str, Any]
1401
+
1402
+ @pulumi.input_type
1403
+ class GpuResourceArgs:
1404
+ def __init__(__self__, *,
1405
+ count: pulumi.Input[int],
1406
+ sku: pulumi.Input[Union[str, 'GpuSku']]):
1407
+ """
1408
+ The GPU resource.
1409
+ :param pulumi.Input[int] count: The count of the GPU resource.
1410
+ :param pulumi.Input[Union[str, 'GpuSku']] sku: The SKU of the GPU resource.
1411
+ """
1412
+ pulumi.set(__self__, "count", count)
1413
+ pulumi.set(__self__, "sku", sku)
1414
+
1415
+ @property
1416
+ @pulumi.getter
1417
+ def count(self) -> pulumi.Input[int]:
1418
+ """
1419
+ The count of the GPU resource.
1420
+ """
1421
+ return pulumi.get(self, "count")
1422
+
1423
+ @count.setter
1424
+ def count(self, value: pulumi.Input[int]):
1425
+ pulumi.set(self, "count", value)
1426
+
1427
+ @property
1428
+ @pulumi.getter
1429
+ def sku(self) -> pulumi.Input[Union[str, 'GpuSku']]:
1430
+ """
1431
+ The SKU of the GPU resource.
1432
+ """
1433
+ return pulumi.get(self, "sku")
1434
+
1435
+ @sku.setter
1436
+ def sku(self, value: pulumi.Input[Union[str, 'GpuSku']]):
1437
+ pulumi.set(self, "sku", value)
1438
+
1439
+
1440
+ if not MYPY:
1441
+ class HttpHeaderArgsDict(TypedDict):
1442
+ """
1443
+ The HTTP header.
1444
+ """
1445
+ name: NotRequired[pulumi.Input[str]]
1446
+ """
1447
+ The header name.
1448
+ """
1449
+ value: NotRequired[pulumi.Input[str]]
1450
+ """
1451
+ The header value.
1452
+ """
1453
+ elif False:
1454
+ HttpHeaderArgsDict: TypeAlias = Mapping[str, Any]
1455
+
1456
+ @pulumi.input_type
1457
+ class HttpHeaderArgs:
1458
+ def __init__(__self__, *,
1459
+ name: Optional[pulumi.Input[str]] = None,
1460
+ value: Optional[pulumi.Input[str]] = None):
1461
+ """
1462
+ The HTTP header.
1463
+ :param pulumi.Input[str] name: The header name.
1464
+ :param pulumi.Input[str] value: The header value.
1465
+ """
1466
+ if name is not None:
1467
+ pulumi.set(__self__, "name", name)
1468
+ if value is not None:
1469
+ pulumi.set(__self__, "value", value)
1470
+
1471
+ @property
1472
+ @pulumi.getter
1473
+ def name(self) -> Optional[pulumi.Input[str]]:
1474
+ """
1475
+ The header name.
1476
+ """
1477
+ return pulumi.get(self, "name")
1478
+
1479
+ @name.setter
1480
+ def name(self, value: Optional[pulumi.Input[str]]):
1481
+ pulumi.set(self, "name", value)
1482
+
1483
+ @property
1484
+ @pulumi.getter
1485
+ def value(self) -> Optional[pulumi.Input[str]]:
1486
+ """
1487
+ The header value.
1488
+ """
1489
+ return pulumi.get(self, "value")
1490
+
1491
+ @value.setter
1492
+ def value(self, value: Optional[pulumi.Input[str]]):
1493
+ pulumi.set(self, "value", value)
1494
+
1495
+
1496
+ if not MYPY:
1497
+ class ImageRegistryCredentialArgsDict(TypedDict):
1498
+ """
1499
+ Image registry credential.
1500
+ """
1501
+ server: pulumi.Input[str]
1502
+ """
1503
+ The Docker image registry server without a protocol such as "http" and "https".
1504
+ """
1505
+ identity: NotRequired[pulumi.Input[str]]
1506
+ """
1507
+ The identity for the private registry.
1508
+ """
1509
+ identity_url: NotRequired[pulumi.Input[str]]
1510
+ """
1511
+ The identity URL for the private registry.
1512
+ """
1513
+ password: NotRequired[pulumi.Input[str]]
1514
+ """
1515
+ The password for the private registry.
1516
+ """
1517
+ password_reference: NotRequired[pulumi.Input[str]]
1518
+ """
1519
+ The reference for the private registry password.
1520
+ """
1521
+ username: NotRequired[pulumi.Input[str]]
1522
+ """
1523
+ The username for the private registry.
1524
+ """
1525
+ elif False:
1526
+ ImageRegistryCredentialArgsDict: TypeAlias = Mapping[str, Any]
1527
+
1528
+ @pulumi.input_type
1529
+ class ImageRegistryCredentialArgs:
1530
+ def __init__(__self__, *,
1531
+ server: pulumi.Input[str],
1532
+ identity: Optional[pulumi.Input[str]] = None,
1533
+ identity_url: Optional[pulumi.Input[str]] = None,
1534
+ password: Optional[pulumi.Input[str]] = None,
1535
+ password_reference: Optional[pulumi.Input[str]] = None,
1536
+ username: Optional[pulumi.Input[str]] = None):
1537
+ """
1538
+ Image registry credential.
1539
+ :param pulumi.Input[str] server: The Docker image registry server without a protocol such as "http" and "https".
1540
+ :param pulumi.Input[str] identity: The identity for the private registry.
1541
+ :param pulumi.Input[str] identity_url: The identity URL for the private registry.
1542
+ :param pulumi.Input[str] password: The password for the private registry.
1543
+ :param pulumi.Input[str] password_reference: The reference for the private registry password.
1544
+ :param pulumi.Input[str] username: The username for the private registry.
1545
+ """
1546
+ pulumi.set(__self__, "server", server)
1547
+ if identity is not None:
1548
+ pulumi.set(__self__, "identity", identity)
1549
+ if identity_url is not None:
1550
+ pulumi.set(__self__, "identity_url", identity_url)
1551
+ if password is not None:
1552
+ pulumi.set(__self__, "password", password)
1553
+ if password_reference is not None:
1554
+ pulumi.set(__self__, "password_reference", password_reference)
1555
+ if username is not None:
1556
+ pulumi.set(__self__, "username", username)
1557
+
1558
+ @property
1559
+ @pulumi.getter
1560
+ def server(self) -> pulumi.Input[str]:
1561
+ """
1562
+ The Docker image registry server without a protocol such as "http" and "https".
1563
+ """
1564
+ return pulumi.get(self, "server")
1565
+
1566
+ @server.setter
1567
+ def server(self, value: pulumi.Input[str]):
1568
+ pulumi.set(self, "server", value)
1569
+
1570
+ @property
1571
+ @pulumi.getter
1572
+ def identity(self) -> Optional[pulumi.Input[str]]:
1573
+ """
1574
+ The identity for the private registry.
1575
+ """
1576
+ return pulumi.get(self, "identity")
1577
+
1578
+ @identity.setter
1579
+ def identity(self, value: Optional[pulumi.Input[str]]):
1580
+ pulumi.set(self, "identity", value)
1581
+
1582
+ @property
1583
+ @pulumi.getter(name="identityUrl")
1584
+ def identity_url(self) -> Optional[pulumi.Input[str]]:
1585
+ """
1586
+ The identity URL for the private registry.
1587
+ """
1588
+ return pulumi.get(self, "identity_url")
1589
+
1590
+ @identity_url.setter
1591
+ def identity_url(self, value: Optional[pulumi.Input[str]]):
1592
+ pulumi.set(self, "identity_url", value)
1593
+
1594
+ @property
1595
+ @pulumi.getter
1596
+ def password(self) -> Optional[pulumi.Input[str]]:
1597
+ """
1598
+ The password for the private registry.
1599
+ """
1600
+ return pulumi.get(self, "password")
1601
+
1602
+ @password.setter
1603
+ def password(self, value: Optional[pulumi.Input[str]]):
1604
+ pulumi.set(self, "password", value)
1605
+
1606
+ @property
1607
+ @pulumi.getter(name="passwordReference")
1608
+ def password_reference(self) -> Optional[pulumi.Input[str]]:
1609
+ """
1610
+ The reference for the private registry password.
1611
+ """
1612
+ return pulumi.get(self, "password_reference")
1613
+
1614
+ @password_reference.setter
1615
+ def password_reference(self, value: Optional[pulumi.Input[str]]):
1616
+ pulumi.set(self, "password_reference", value)
1617
+
1618
+ @property
1619
+ @pulumi.getter
1620
+ def username(self) -> Optional[pulumi.Input[str]]:
1621
+ """
1622
+ The username for the private registry.
1623
+ """
1624
+ return pulumi.get(self, "username")
1625
+
1626
+ @username.setter
1627
+ def username(self, value: Optional[pulumi.Input[str]]):
1628
+ pulumi.set(self, "username", value)
1629
+
1630
+
1631
+ if not MYPY:
1632
+ class InitContainerDefinitionArgsDict(TypedDict):
1633
+ """
1634
+ The init container definition.
1635
+ """
1636
+ name: pulumi.Input[str]
1637
+ """
1638
+ The name for the init container.
1639
+ """
1640
+ command: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
1641
+ """
1642
+ The command to execute within the init container in exec form.
1643
+ """
1644
+ environment_variables: NotRequired[pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgsDict']]]]
1645
+ """
1646
+ The environment variables to set in the init container.
1647
+ """
1648
+ image: NotRequired[pulumi.Input[str]]
1649
+ """
1650
+ The image of the init container.
1651
+ """
1652
+ security_context: NotRequired[pulumi.Input['SecurityContextDefinitionArgsDict']]
1653
+ """
1654
+ The container security properties.
1655
+ """
1656
+ volume_mounts: NotRequired[pulumi.Input[Sequence[pulumi.Input['VolumeMountArgsDict']]]]
1657
+ """
1658
+ The volume mounts available to the init container.
1659
+ """
1660
+ elif False:
1661
+ InitContainerDefinitionArgsDict: TypeAlias = Mapping[str, Any]
1662
+
1663
+ @pulumi.input_type
1664
+ class InitContainerDefinitionArgs:
1665
+ def __init__(__self__, *,
1666
+ name: pulumi.Input[str],
1667
+ command: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1668
+ environment_variables: Optional[pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]]] = None,
1669
+ image: Optional[pulumi.Input[str]] = None,
1670
+ security_context: Optional[pulumi.Input['SecurityContextDefinitionArgs']] = None,
1671
+ volume_mounts: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeMountArgs']]]] = None):
1672
+ """
1673
+ The init container definition.
1674
+ :param pulumi.Input[str] name: The name for the init container.
1675
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] command: The command to execute within the init container in exec form.
1676
+ :param pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]] environment_variables: The environment variables to set in the init container.
1677
+ :param pulumi.Input[str] image: The image of the init container.
1678
+ :param pulumi.Input['SecurityContextDefinitionArgs'] security_context: The container security properties.
1679
+ :param pulumi.Input[Sequence[pulumi.Input['VolumeMountArgs']]] volume_mounts: The volume mounts available to the init container.
1680
+ """
1681
+ pulumi.set(__self__, "name", name)
1682
+ if command is not None:
1683
+ pulumi.set(__self__, "command", command)
1684
+ if environment_variables is not None:
1685
+ pulumi.set(__self__, "environment_variables", environment_variables)
1686
+ if image is not None:
1687
+ pulumi.set(__self__, "image", image)
1688
+ if security_context is not None:
1689
+ pulumi.set(__self__, "security_context", security_context)
1690
+ if volume_mounts is not None:
1691
+ pulumi.set(__self__, "volume_mounts", volume_mounts)
1692
+
1693
+ @property
1694
+ @pulumi.getter
1695
+ def name(self) -> pulumi.Input[str]:
1696
+ """
1697
+ The name for the init container.
1698
+ """
1699
+ return pulumi.get(self, "name")
1700
+
1701
+ @name.setter
1702
+ def name(self, value: pulumi.Input[str]):
1703
+ pulumi.set(self, "name", value)
1704
+
1705
+ @property
1706
+ @pulumi.getter
1707
+ def command(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1708
+ """
1709
+ The command to execute within the init container in exec form.
1710
+ """
1711
+ return pulumi.get(self, "command")
1712
+
1713
+ @command.setter
1714
+ def command(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1715
+ pulumi.set(self, "command", value)
1716
+
1717
+ @property
1718
+ @pulumi.getter(name="environmentVariables")
1719
+ def environment_variables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]]]:
1720
+ """
1721
+ The environment variables to set in the init container.
1722
+ """
1723
+ return pulumi.get(self, "environment_variables")
1724
+
1725
+ @environment_variables.setter
1726
+ def environment_variables(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]]]):
1727
+ pulumi.set(self, "environment_variables", value)
1728
+
1729
+ @property
1730
+ @pulumi.getter
1731
+ def image(self) -> Optional[pulumi.Input[str]]:
1732
+ """
1733
+ The image of the init container.
1734
+ """
1735
+ return pulumi.get(self, "image")
1736
+
1737
+ @image.setter
1738
+ def image(self, value: Optional[pulumi.Input[str]]):
1739
+ pulumi.set(self, "image", value)
1740
+
1741
+ @property
1742
+ @pulumi.getter(name="securityContext")
1743
+ def security_context(self) -> Optional[pulumi.Input['SecurityContextDefinitionArgs']]:
1744
+ """
1745
+ The container security properties.
1746
+ """
1747
+ return pulumi.get(self, "security_context")
1748
+
1749
+ @security_context.setter
1750
+ def security_context(self, value: Optional[pulumi.Input['SecurityContextDefinitionArgs']]):
1751
+ pulumi.set(self, "security_context", value)
1752
+
1753
+ @property
1754
+ @pulumi.getter(name="volumeMounts")
1755
+ def volume_mounts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VolumeMountArgs']]]]:
1756
+ """
1757
+ The volume mounts available to the init container.
1758
+ """
1759
+ return pulumi.get(self, "volume_mounts")
1760
+
1761
+ @volume_mounts.setter
1762
+ def volume_mounts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VolumeMountArgs']]]]):
1763
+ pulumi.set(self, "volume_mounts", value)
1764
+
1765
+
1766
+ if not MYPY:
1767
+ class IpAddressArgsDict(TypedDict):
1768
+ """
1769
+ IP address for the container group.
1770
+ """
1771
+ ports: pulumi.Input[Sequence[pulumi.Input['PortArgsDict']]]
1772
+ """
1773
+ The list of ports exposed on the container group.
1774
+ """
1775
+ type: pulumi.Input[Union[str, 'ContainerGroupIpAddressType']]
1776
+ """
1777
+ Specifies if the IP is exposed to the public internet or private VNET.
1778
+ """
1779
+ auto_generated_domain_name_label_scope: NotRequired[pulumi.Input[Union[str, 'DnsNameLabelReusePolicy']]]
1780
+ """
1781
+ The value representing the security enum. The 'Unsecure' value is the default value if not selected and means the object's domain name label is not secured against subdomain takeover. The 'TenantReuse' value is the default value if selected and means the object's domain name label can be reused within the same tenant. The 'SubscriptionReuse' value means the object's domain name label can be reused within the same subscription. The 'ResourceGroupReuse' value means the object's domain name label can be reused within the same resource group. The 'NoReuse' value means the object's domain name label cannot be reused within the same resource group, subscription, or tenant.
1782
+ """
1783
+ dns_name_label: NotRequired[pulumi.Input[str]]
1784
+ """
1785
+ The Dns name label for the IP.
1786
+ """
1787
+ ip: NotRequired[pulumi.Input[str]]
1788
+ """
1789
+ The IP exposed to the public internet.
1790
+ """
1791
+ elif False:
1792
+ IpAddressArgsDict: TypeAlias = Mapping[str, Any]
1793
+
1794
+ @pulumi.input_type
1795
+ class IpAddressArgs:
1796
+ def __init__(__self__, *,
1797
+ ports: pulumi.Input[Sequence[pulumi.Input['PortArgs']]],
1798
+ type: pulumi.Input[Union[str, 'ContainerGroupIpAddressType']],
1799
+ auto_generated_domain_name_label_scope: Optional[pulumi.Input[Union[str, 'DnsNameLabelReusePolicy']]] = None,
1800
+ dns_name_label: Optional[pulumi.Input[str]] = None,
1801
+ ip: Optional[pulumi.Input[str]] = None):
1802
+ """
1803
+ IP address for the container group.
1804
+ :param pulumi.Input[Sequence[pulumi.Input['PortArgs']]] ports: The list of ports exposed on the container group.
1805
+ :param pulumi.Input[Union[str, 'ContainerGroupIpAddressType']] type: Specifies if the IP is exposed to the public internet or private VNET.
1806
+ :param pulumi.Input[Union[str, 'DnsNameLabelReusePolicy']] auto_generated_domain_name_label_scope: The value representing the security enum. The 'Unsecure' value is the default value if not selected and means the object's domain name label is not secured against subdomain takeover. The 'TenantReuse' value is the default value if selected and means the object's domain name label can be reused within the same tenant. The 'SubscriptionReuse' value means the object's domain name label can be reused within the same subscription. The 'ResourceGroupReuse' value means the object's domain name label can be reused within the same resource group. The 'NoReuse' value means the object's domain name label cannot be reused within the same resource group, subscription, or tenant.
1807
+ :param pulumi.Input[str] dns_name_label: The Dns name label for the IP.
1808
+ :param pulumi.Input[str] ip: The IP exposed to the public internet.
1809
+ """
1810
+ pulumi.set(__self__, "ports", ports)
1811
+ pulumi.set(__self__, "type", type)
1812
+ if auto_generated_domain_name_label_scope is None:
1813
+ auto_generated_domain_name_label_scope = 'Unsecure'
1814
+ if auto_generated_domain_name_label_scope is not None:
1815
+ pulumi.set(__self__, "auto_generated_domain_name_label_scope", auto_generated_domain_name_label_scope)
1816
+ if dns_name_label is not None:
1817
+ pulumi.set(__self__, "dns_name_label", dns_name_label)
1818
+ if ip is not None:
1819
+ pulumi.set(__self__, "ip", ip)
1820
+
1821
+ @property
1822
+ @pulumi.getter
1823
+ def ports(self) -> pulumi.Input[Sequence[pulumi.Input['PortArgs']]]:
1824
+ """
1825
+ The list of ports exposed on the container group.
1826
+ """
1827
+ return pulumi.get(self, "ports")
1828
+
1829
+ @ports.setter
1830
+ def ports(self, value: pulumi.Input[Sequence[pulumi.Input['PortArgs']]]):
1831
+ pulumi.set(self, "ports", value)
1832
+
1833
+ @property
1834
+ @pulumi.getter
1835
+ def type(self) -> pulumi.Input[Union[str, 'ContainerGroupIpAddressType']]:
1836
+ """
1837
+ Specifies if the IP is exposed to the public internet or private VNET.
1838
+ """
1839
+ return pulumi.get(self, "type")
1840
+
1841
+ @type.setter
1842
+ def type(self, value: pulumi.Input[Union[str, 'ContainerGroupIpAddressType']]):
1843
+ pulumi.set(self, "type", value)
1844
+
1845
+ @property
1846
+ @pulumi.getter(name="autoGeneratedDomainNameLabelScope")
1847
+ def auto_generated_domain_name_label_scope(self) -> Optional[pulumi.Input[Union[str, 'DnsNameLabelReusePolicy']]]:
1848
+ """
1849
+ The value representing the security enum. The 'Unsecure' value is the default value if not selected and means the object's domain name label is not secured against subdomain takeover. The 'TenantReuse' value is the default value if selected and means the object's domain name label can be reused within the same tenant. The 'SubscriptionReuse' value means the object's domain name label can be reused within the same subscription. The 'ResourceGroupReuse' value means the object's domain name label can be reused within the same resource group. The 'NoReuse' value means the object's domain name label cannot be reused within the same resource group, subscription, or tenant.
1850
+ """
1851
+ return pulumi.get(self, "auto_generated_domain_name_label_scope")
1852
+
1853
+ @auto_generated_domain_name_label_scope.setter
1854
+ def auto_generated_domain_name_label_scope(self, value: Optional[pulumi.Input[Union[str, 'DnsNameLabelReusePolicy']]]):
1855
+ pulumi.set(self, "auto_generated_domain_name_label_scope", value)
1856
+
1857
+ @property
1858
+ @pulumi.getter(name="dnsNameLabel")
1859
+ def dns_name_label(self) -> Optional[pulumi.Input[str]]:
1860
+ """
1861
+ The Dns name label for the IP.
1862
+ """
1863
+ return pulumi.get(self, "dns_name_label")
1864
+
1865
+ @dns_name_label.setter
1866
+ def dns_name_label(self, value: Optional[pulumi.Input[str]]):
1867
+ pulumi.set(self, "dns_name_label", value)
1868
+
1869
+ @property
1870
+ @pulumi.getter
1871
+ def ip(self) -> Optional[pulumi.Input[str]]:
1872
+ """
1873
+ The IP exposed to the public internet.
1874
+ """
1875
+ return pulumi.get(self, "ip")
1876
+
1877
+ @ip.setter
1878
+ def ip(self, value: Optional[pulumi.Input[str]]):
1879
+ pulumi.set(self, "ip", value)
1880
+
1881
+
1882
+ if not MYPY:
1883
+ class LogAnalyticsArgsDict(TypedDict):
1884
+ """
1885
+ Container group log analytics information.
1886
+ """
1887
+ workspace_id: pulumi.Input[str]
1888
+ """
1889
+ The workspace id for log analytics
1890
+ """
1891
+ workspace_key: pulumi.Input[str]
1892
+ """
1893
+ The workspace key for log analytics
1894
+ """
1895
+ log_type: NotRequired[pulumi.Input[Union[str, 'LogAnalyticsLogType']]]
1896
+ """
1897
+ The log type to be used.
1898
+ """
1899
+ metadata: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
1900
+ """
1901
+ Metadata for log analytics.
1902
+ """
1903
+ workspace_resource_id: NotRequired[pulumi.Input[str]]
1904
+ """
1905
+ The workspace resource id for log analytics
1906
+ """
1907
+ elif False:
1908
+ LogAnalyticsArgsDict: TypeAlias = Mapping[str, Any]
1909
+
1910
+ @pulumi.input_type
1911
+ class LogAnalyticsArgs:
1912
+ def __init__(__self__, *,
1913
+ workspace_id: pulumi.Input[str],
1914
+ workspace_key: pulumi.Input[str],
1915
+ log_type: Optional[pulumi.Input[Union[str, 'LogAnalyticsLogType']]] = None,
1916
+ metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1917
+ workspace_resource_id: Optional[pulumi.Input[str]] = None):
1918
+ """
1919
+ Container group log analytics information.
1920
+ :param pulumi.Input[str] workspace_id: The workspace id for log analytics
1921
+ :param pulumi.Input[str] workspace_key: The workspace key for log analytics
1922
+ :param pulumi.Input[Union[str, 'LogAnalyticsLogType']] log_type: The log type to be used.
1923
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: Metadata for log analytics.
1924
+ :param pulumi.Input[str] workspace_resource_id: The workspace resource id for log analytics
1925
+ """
1926
+ pulumi.set(__self__, "workspace_id", workspace_id)
1927
+ pulumi.set(__self__, "workspace_key", workspace_key)
1928
+ if log_type is not None:
1929
+ pulumi.set(__self__, "log_type", log_type)
1930
+ if metadata is not None:
1931
+ pulumi.set(__self__, "metadata", metadata)
1932
+ if workspace_resource_id is not None:
1933
+ pulumi.set(__self__, "workspace_resource_id", workspace_resource_id)
1934
+
1935
+ @property
1936
+ @pulumi.getter(name="workspaceId")
1937
+ def workspace_id(self) -> pulumi.Input[str]:
1938
+ """
1939
+ The workspace id for log analytics
1940
+ """
1941
+ return pulumi.get(self, "workspace_id")
1942
+
1943
+ @workspace_id.setter
1944
+ def workspace_id(self, value: pulumi.Input[str]):
1945
+ pulumi.set(self, "workspace_id", value)
1946
+
1947
+ @property
1948
+ @pulumi.getter(name="workspaceKey")
1949
+ def workspace_key(self) -> pulumi.Input[str]:
1950
+ """
1951
+ The workspace key for log analytics
1952
+ """
1953
+ return pulumi.get(self, "workspace_key")
1954
+
1955
+ @workspace_key.setter
1956
+ def workspace_key(self, value: pulumi.Input[str]):
1957
+ pulumi.set(self, "workspace_key", value)
1958
+
1959
+ @property
1960
+ @pulumi.getter(name="logType")
1961
+ def log_type(self) -> Optional[pulumi.Input[Union[str, 'LogAnalyticsLogType']]]:
1962
+ """
1963
+ The log type to be used.
1964
+ """
1965
+ return pulumi.get(self, "log_type")
1966
+
1967
+ @log_type.setter
1968
+ def log_type(self, value: Optional[pulumi.Input[Union[str, 'LogAnalyticsLogType']]]):
1969
+ pulumi.set(self, "log_type", value)
1970
+
1971
+ @property
1972
+ @pulumi.getter
1973
+ def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
1974
+ """
1975
+ Metadata for log analytics.
1976
+ """
1977
+ return pulumi.get(self, "metadata")
1978
+
1979
+ @metadata.setter
1980
+ def metadata(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
1981
+ pulumi.set(self, "metadata", value)
1982
+
1983
+ @property
1984
+ @pulumi.getter(name="workspaceResourceId")
1985
+ def workspace_resource_id(self) -> Optional[pulumi.Input[str]]:
1986
+ """
1987
+ The workspace resource id for log analytics
1988
+ """
1989
+ return pulumi.get(self, "workspace_resource_id")
1990
+
1991
+ @workspace_resource_id.setter
1992
+ def workspace_resource_id(self, value: Optional[pulumi.Input[str]]):
1993
+ pulumi.set(self, "workspace_resource_id", value)
1994
+
1995
+
1996
+ if not MYPY:
1997
+ class PortArgsDict(TypedDict):
1998
+ """
1999
+ The port exposed on the container group.
2000
+ """
2001
+ port: pulumi.Input[int]
2002
+ """
2003
+ The port number.
2004
+ """
2005
+ protocol: NotRequired[pulumi.Input[Union[str, 'ContainerGroupNetworkProtocol']]]
2006
+ """
2007
+ The protocol associated with the port.
2008
+ """
2009
+ elif False:
2010
+ PortArgsDict: TypeAlias = Mapping[str, Any]
2011
+
2012
+ @pulumi.input_type
2013
+ class PortArgs:
2014
+ def __init__(__self__, *,
2015
+ port: pulumi.Input[int],
2016
+ protocol: Optional[pulumi.Input[Union[str, 'ContainerGroupNetworkProtocol']]] = None):
2017
+ """
2018
+ The port exposed on the container group.
2019
+ :param pulumi.Input[int] port: The port number.
2020
+ :param pulumi.Input[Union[str, 'ContainerGroupNetworkProtocol']] protocol: The protocol associated with the port.
2021
+ """
2022
+ pulumi.set(__self__, "port", port)
2023
+ if protocol is not None:
2024
+ pulumi.set(__self__, "protocol", protocol)
2025
+
2026
+ @property
2027
+ @pulumi.getter
2028
+ def port(self) -> pulumi.Input[int]:
2029
+ """
2030
+ The port number.
2031
+ """
2032
+ return pulumi.get(self, "port")
2033
+
2034
+ @port.setter
2035
+ def port(self, value: pulumi.Input[int]):
2036
+ pulumi.set(self, "port", value)
2037
+
2038
+ @property
2039
+ @pulumi.getter
2040
+ def protocol(self) -> Optional[pulumi.Input[Union[str, 'ContainerGroupNetworkProtocol']]]:
2041
+ """
2042
+ The protocol associated with the port.
2043
+ """
2044
+ return pulumi.get(self, "protocol")
2045
+
2046
+ @protocol.setter
2047
+ def protocol(self, value: Optional[pulumi.Input[Union[str, 'ContainerGroupNetworkProtocol']]]):
2048
+ pulumi.set(self, "protocol", value)
2049
+
2050
+
2051
+ if not MYPY:
2052
+ class ResourceLimitsArgsDict(TypedDict):
2053
+ """
2054
+ The resource limits.
2055
+ """
2056
+ cpu: NotRequired[pulumi.Input[float]]
2057
+ """
2058
+ The CPU limit of this container instance.
2059
+ """
2060
+ gpu: NotRequired[pulumi.Input['GpuResourceArgsDict']]
2061
+ """
2062
+ The GPU limit of this container instance.
2063
+ """
2064
+ memory_in_gb: NotRequired[pulumi.Input[float]]
2065
+ """
2066
+ The memory limit in GB of this container instance.
2067
+ """
2068
+ elif False:
2069
+ ResourceLimitsArgsDict: TypeAlias = Mapping[str, Any]
2070
+
2071
+ @pulumi.input_type
2072
+ class ResourceLimitsArgs:
2073
+ def __init__(__self__, *,
2074
+ cpu: Optional[pulumi.Input[float]] = None,
2075
+ gpu: Optional[pulumi.Input['GpuResourceArgs']] = None,
2076
+ memory_in_gb: Optional[pulumi.Input[float]] = None):
2077
+ """
2078
+ The resource limits.
2079
+ :param pulumi.Input[float] cpu: The CPU limit of this container instance.
2080
+ :param pulumi.Input['GpuResourceArgs'] gpu: The GPU limit of this container instance.
2081
+ :param pulumi.Input[float] memory_in_gb: The memory limit in GB of this container instance.
2082
+ """
2083
+ if cpu is not None:
2084
+ pulumi.set(__self__, "cpu", cpu)
2085
+ if gpu is not None:
2086
+ pulumi.set(__self__, "gpu", gpu)
2087
+ if memory_in_gb is not None:
2088
+ pulumi.set(__self__, "memory_in_gb", memory_in_gb)
2089
+
2090
+ @property
2091
+ @pulumi.getter
2092
+ def cpu(self) -> Optional[pulumi.Input[float]]:
2093
+ """
2094
+ The CPU limit of this container instance.
2095
+ """
2096
+ return pulumi.get(self, "cpu")
2097
+
2098
+ @cpu.setter
2099
+ def cpu(self, value: Optional[pulumi.Input[float]]):
2100
+ pulumi.set(self, "cpu", value)
2101
+
2102
+ @property
2103
+ @pulumi.getter
2104
+ def gpu(self) -> Optional[pulumi.Input['GpuResourceArgs']]:
2105
+ """
2106
+ The GPU limit of this container instance.
2107
+ """
2108
+ return pulumi.get(self, "gpu")
2109
+
2110
+ @gpu.setter
2111
+ def gpu(self, value: Optional[pulumi.Input['GpuResourceArgs']]):
2112
+ pulumi.set(self, "gpu", value)
2113
+
2114
+ @property
2115
+ @pulumi.getter(name="memoryInGB")
2116
+ def memory_in_gb(self) -> Optional[pulumi.Input[float]]:
2117
+ """
2118
+ The memory limit in GB of this container instance.
2119
+ """
2120
+ return pulumi.get(self, "memory_in_gb")
2121
+
2122
+ @memory_in_gb.setter
2123
+ def memory_in_gb(self, value: Optional[pulumi.Input[float]]):
2124
+ pulumi.set(self, "memory_in_gb", value)
2125
+
2126
+
2127
+ if not MYPY:
2128
+ class ResourceRequestsArgsDict(TypedDict):
2129
+ """
2130
+ The resource requests.
2131
+ """
2132
+ cpu: pulumi.Input[float]
2133
+ """
2134
+ The CPU request of this container instance.
2135
+ """
2136
+ memory_in_gb: pulumi.Input[float]
2137
+ """
2138
+ The memory request in GB of this container instance.
2139
+ """
2140
+ gpu: NotRequired[pulumi.Input['GpuResourceArgsDict']]
2141
+ """
2142
+ The GPU request of this container instance.
2143
+ """
2144
+ elif False:
2145
+ ResourceRequestsArgsDict: TypeAlias = Mapping[str, Any]
2146
+
2147
+ @pulumi.input_type
2148
+ class ResourceRequestsArgs:
2149
+ def __init__(__self__, *,
2150
+ cpu: pulumi.Input[float],
2151
+ memory_in_gb: pulumi.Input[float],
2152
+ gpu: Optional[pulumi.Input['GpuResourceArgs']] = None):
2153
+ """
2154
+ The resource requests.
2155
+ :param pulumi.Input[float] cpu: The CPU request of this container instance.
2156
+ :param pulumi.Input[float] memory_in_gb: The memory request in GB of this container instance.
2157
+ :param pulumi.Input['GpuResourceArgs'] gpu: The GPU request of this container instance.
2158
+ """
2159
+ pulumi.set(__self__, "cpu", cpu)
2160
+ pulumi.set(__self__, "memory_in_gb", memory_in_gb)
2161
+ if gpu is not None:
2162
+ pulumi.set(__self__, "gpu", gpu)
2163
+
2164
+ @property
2165
+ @pulumi.getter
2166
+ def cpu(self) -> pulumi.Input[float]:
2167
+ """
2168
+ The CPU request of this container instance.
2169
+ """
2170
+ return pulumi.get(self, "cpu")
2171
+
2172
+ @cpu.setter
2173
+ def cpu(self, value: pulumi.Input[float]):
2174
+ pulumi.set(self, "cpu", value)
2175
+
2176
+ @property
2177
+ @pulumi.getter(name="memoryInGB")
2178
+ def memory_in_gb(self) -> pulumi.Input[float]:
2179
+ """
2180
+ The memory request in GB of this container instance.
2181
+ """
2182
+ return pulumi.get(self, "memory_in_gb")
2183
+
2184
+ @memory_in_gb.setter
2185
+ def memory_in_gb(self, value: pulumi.Input[float]):
2186
+ pulumi.set(self, "memory_in_gb", value)
2187
+
2188
+ @property
2189
+ @pulumi.getter
2190
+ def gpu(self) -> Optional[pulumi.Input['GpuResourceArgs']]:
2191
+ """
2192
+ The GPU request of this container instance.
2193
+ """
2194
+ return pulumi.get(self, "gpu")
2195
+
2196
+ @gpu.setter
2197
+ def gpu(self, value: Optional[pulumi.Input['GpuResourceArgs']]):
2198
+ pulumi.set(self, "gpu", value)
2199
+
2200
+
2201
+ if not MYPY:
2202
+ class ResourceRequirementsArgsDict(TypedDict):
2203
+ """
2204
+ The resource requirements.
2205
+ """
2206
+ requests: pulumi.Input['ResourceRequestsArgsDict']
2207
+ """
2208
+ The resource requests of this container instance.
2209
+ """
2210
+ limits: NotRequired[pulumi.Input['ResourceLimitsArgsDict']]
2211
+ """
2212
+ The resource limits of this container instance.
2213
+ """
2214
+ elif False:
2215
+ ResourceRequirementsArgsDict: TypeAlias = Mapping[str, Any]
2216
+
2217
+ @pulumi.input_type
2218
+ class ResourceRequirementsArgs:
2219
+ def __init__(__self__, *,
2220
+ requests: pulumi.Input['ResourceRequestsArgs'],
2221
+ limits: Optional[pulumi.Input['ResourceLimitsArgs']] = None):
2222
+ """
2223
+ The resource requirements.
2224
+ :param pulumi.Input['ResourceRequestsArgs'] requests: The resource requests of this container instance.
2225
+ :param pulumi.Input['ResourceLimitsArgs'] limits: The resource limits of this container instance.
2226
+ """
2227
+ pulumi.set(__self__, "requests", requests)
2228
+ if limits is not None:
2229
+ pulumi.set(__self__, "limits", limits)
2230
+
2231
+ @property
2232
+ @pulumi.getter
2233
+ def requests(self) -> pulumi.Input['ResourceRequestsArgs']:
2234
+ """
2235
+ The resource requests of this container instance.
2236
+ """
2237
+ return pulumi.get(self, "requests")
2238
+
2239
+ @requests.setter
2240
+ def requests(self, value: pulumi.Input['ResourceRequestsArgs']):
2241
+ pulumi.set(self, "requests", value)
2242
+
2243
+ @property
2244
+ @pulumi.getter
2245
+ def limits(self) -> Optional[pulumi.Input['ResourceLimitsArgs']]:
2246
+ """
2247
+ The resource limits of this container instance.
2248
+ """
2249
+ return pulumi.get(self, "limits")
2250
+
2251
+ @limits.setter
2252
+ def limits(self, value: Optional[pulumi.Input['ResourceLimitsArgs']]):
2253
+ pulumi.set(self, "limits", value)
2254
+
2255
+
2256
+ if not MYPY:
2257
+ class SecretReferenceArgsDict(TypedDict):
2258
+ """
2259
+ A secret reference
2260
+ """
2261
+ identity: pulumi.Input[str]
2262
+ """
2263
+ The ARM resource id of the managed identity that has access to the secret in the key vault
2264
+ """
2265
+ name: pulumi.Input[str]
2266
+ """
2267
+ The identifier of the secret reference
2268
+ """
2269
+ secret_reference_uri: pulumi.Input[str]
2270
+ """
2271
+ The URI to the secret in key vault
2272
+ """
2273
+ elif False:
2274
+ SecretReferenceArgsDict: TypeAlias = Mapping[str, Any]
2275
+
2276
+ @pulumi.input_type
2277
+ class SecretReferenceArgs:
2278
+ def __init__(__self__, *,
2279
+ identity: pulumi.Input[str],
2280
+ name: pulumi.Input[str],
2281
+ secret_reference_uri: pulumi.Input[str]):
2282
+ """
2283
+ A secret reference
2284
+ :param pulumi.Input[str] identity: The ARM resource id of the managed identity that has access to the secret in the key vault
2285
+ :param pulumi.Input[str] name: The identifier of the secret reference
2286
+ :param pulumi.Input[str] secret_reference_uri: The URI to the secret in key vault
2287
+ """
2288
+ pulumi.set(__self__, "identity", identity)
2289
+ pulumi.set(__self__, "name", name)
2290
+ pulumi.set(__self__, "secret_reference_uri", secret_reference_uri)
2291
+
2292
+ @property
2293
+ @pulumi.getter
2294
+ def identity(self) -> pulumi.Input[str]:
2295
+ """
2296
+ The ARM resource id of the managed identity that has access to the secret in the key vault
2297
+ """
2298
+ return pulumi.get(self, "identity")
2299
+
2300
+ @identity.setter
2301
+ def identity(self, value: pulumi.Input[str]):
2302
+ pulumi.set(self, "identity", value)
2303
+
2304
+ @property
2305
+ @pulumi.getter
2306
+ def name(self) -> pulumi.Input[str]:
2307
+ """
2308
+ The identifier of the secret reference
2309
+ """
2310
+ return pulumi.get(self, "name")
2311
+
2312
+ @name.setter
2313
+ def name(self, value: pulumi.Input[str]):
2314
+ pulumi.set(self, "name", value)
2315
+
2316
+ @property
2317
+ @pulumi.getter(name="secretReferenceUri")
2318
+ def secret_reference_uri(self) -> pulumi.Input[str]:
2319
+ """
2320
+ The URI to the secret in key vault
2321
+ """
2322
+ return pulumi.get(self, "secret_reference_uri")
2323
+
2324
+ @secret_reference_uri.setter
2325
+ def secret_reference_uri(self, value: pulumi.Input[str]):
2326
+ pulumi.set(self, "secret_reference_uri", value)
2327
+
2328
+
2329
+ if not MYPY:
2330
+ class SecurityContextCapabilitiesDefinitionArgsDict(TypedDict):
2331
+ """
2332
+ The capabilities to add or drop from a container.
2333
+ """
2334
+ add: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2335
+ """
2336
+ The capabilities to add to the container.
2337
+ """
2338
+ drop: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
2339
+ """
2340
+ The capabilities to drop from the container.
2341
+ """
2342
+ elif False:
2343
+ SecurityContextCapabilitiesDefinitionArgsDict: TypeAlias = Mapping[str, Any]
2344
+
2345
+ @pulumi.input_type
2346
+ class SecurityContextCapabilitiesDefinitionArgs:
2347
+ def __init__(__self__, *,
2348
+ add: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2349
+ drop: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
2350
+ """
2351
+ The capabilities to add or drop from a container.
2352
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] add: The capabilities to add to the container.
2353
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] drop: The capabilities to drop from the container.
2354
+ """
2355
+ if add is not None:
2356
+ pulumi.set(__self__, "add", add)
2357
+ if drop is not None:
2358
+ pulumi.set(__self__, "drop", drop)
2359
+
2360
+ @property
2361
+ @pulumi.getter
2362
+ def add(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2363
+ """
2364
+ The capabilities to add to the container.
2365
+ """
2366
+ return pulumi.get(self, "add")
2367
+
2368
+ @add.setter
2369
+ def add(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2370
+ pulumi.set(self, "add", value)
2371
+
2372
+ @property
2373
+ @pulumi.getter
2374
+ def drop(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2375
+ """
2376
+ The capabilities to drop from the container.
2377
+ """
2378
+ return pulumi.get(self, "drop")
2379
+
2380
+ @drop.setter
2381
+ def drop(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2382
+ pulumi.set(self, "drop", value)
2383
+
2384
+
2385
+ if not MYPY:
2386
+ class SecurityContextDefinitionArgsDict(TypedDict):
2387
+ """
2388
+ The security context for the container.
2389
+ """
2390
+ allow_privilege_escalation: NotRequired[pulumi.Input[bool]]
2391
+ """
2392
+ A boolean value indicating whether the init process can elevate its privileges
2393
+ """
2394
+ capabilities: NotRequired[pulumi.Input['SecurityContextCapabilitiesDefinitionArgsDict']]
2395
+ """
2396
+ The capabilities to add or drop from a container.
2397
+ """
2398
+ privileged: NotRequired[pulumi.Input[bool]]
2399
+ """
2400
+ The flag to determine if the container permissions is elevated to Privileged.
2401
+ """
2402
+ run_as_group: NotRequired[pulumi.Input[int]]
2403
+ """
2404
+ Sets the User GID for the container.
2405
+ """
2406
+ run_as_user: NotRequired[pulumi.Input[int]]
2407
+ """
2408
+ Sets the User UID for the container.
2409
+ """
2410
+ seccomp_profile: NotRequired[pulumi.Input[str]]
2411
+ """
2412
+ a base64 encoded string containing the contents of the JSON in the seccomp profile
2413
+ """
2414
+ elif False:
2415
+ SecurityContextDefinitionArgsDict: TypeAlias = Mapping[str, Any]
2416
+
2417
+ @pulumi.input_type
2418
+ class SecurityContextDefinitionArgs:
2419
+ def __init__(__self__, *,
2420
+ allow_privilege_escalation: Optional[pulumi.Input[bool]] = None,
2421
+ capabilities: Optional[pulumi.Input['SecurityContextCapabilitiesDefinitionArgs']] = None,
2422
+ privileged: Optional[pulumi.Input[bool]] = None,
2423
+ run_as_group: Optional[pulumi.Input[int]] = None,
2424
+ run_as_user: Optional[pulumi.Input[int]] = None,
2425
+ seccomp_profile: Optional[pulumi.Input[str]] = None):
2426
+ """
2427
+ The security context for the container.
2428
+ :param pulumi.Input[bool] allow_privilege_escalation: A boolean value indicating whether the init process can elevate its privileges
2429
+ :param pulumi.Input['SecurityContextCapabilitiesDefinitionArgs'] capabilities: The capabilities to add or drop from a container.
2430
+ :param pulumi.Input[bool] privileged: The flag to determine if the container permissions is elevated to Privileged.
2431
+ :param pulumi.Input[int] run_as_group: Sets the User GID for the container.
2432
+ :param pulumi.Input[int] run_as_user: Sets the User UID for the container.
2433
+ :param pulumi.Input[str] seccomp_profile: a base64 encoded string containing the contents of the JSON in the seccomp profile
2434
+ """
2435
+ if allow_privilege_escalation is not None:
2436
+ pulumi.set(__self__, "allow_privilege_escalation", allow_privilege_escalation)
2437
+ if capabilities is not None:
2438
+ pulumi.set(__self__, "capabilities", capabilities)
2439
+ if privileged is not None:
2440
+ pulumi.set(__self__, "privileged", privileged)
2441
+ if run_as_group is not None:
2442
+ pulumi.set(__self__, "run_as_group", run_as_group)
2443
+ if run_as_user is not None:
2444
+ pulumi.set(__self__, "run_as_user", run_as_user)
2445
+ if seccomp_profile is not None:
2446
+ pulumi.set(__self__, "seccomp_profile", seccomp_profile)
2447
+
2448
+ @property
2449
+ @pulumi.getter(name="allowPrivilegeEscalation")
2450
+ def allow_privilege_escalation(self) -> Optional[pulumi.Input[bool]]:
2451
+ """
2452
+ A boolean value indicating whether the init process can elevate its privileges
2453
+ """
2454
+ return pulumi.get(self, "allow_privilege_escalation")
2455
+
2456
+ @allow_privilege_escalation.setter
2457
+ def allow_privilege_escalation(self, value: Optional[pulumi.Input[bool]]):
2458
+ pulumi.set(self, "allow_privilege_escalation", value)
2459
+
2460
+ @property
2461
+ @pulumi.getter
2462
+ def capabilities(self) -> Optional[pulumi.Input['SecurityContextCapabilitiesDefinitionArgs']]:
2463
+ """
2464
+ The capabilities to add or drop from a container.
2465
+ """
2466
+ return pulumi.get(self, "capabilities")
2467
+
2468
+ @capabilities.setter
2469
+ def capabilities(self, value: Optional[pulumi.Input['SecurityContextCapabilitiesDefinitionArgs']]):
2470
+ pulumi.set(self, "capabilities", value)
2471
+
2472
+ @property
2473
+ @pulumi.getter
2474
+ def privileged(self) -> Optional[pulumi.Input[bool]]:
2475
+ """
2476
+ The flag to determine if the container permissions is elevated to Privileged.
2477
+ """
2478
+ return pulumi.get(self, "privileged")
2479
+
2480
+ @privileged.setter
2481
+ def privileged(self, value: Optional[pulumi.Input[bool]]):
2482
+ pulumi.set(self, "privileged", value)
2483
+
2484
+ @property
2485
+ @pulumi.getter(name="runAsGroup")
2486
+ def run_as_group(self) -> Optional[pulumi.Input[int]]:
2487
+ """
2488
+ Sets the User GID for the container.
2489
+ """
2490
+ return pulumi.get(self, "run_as_group")
2491
+
2492
+ @run_as_group.setter
2493
+ def run_as_group(self, value: Optional[pulumi.Input[int]]):
2494
+ pulumi.set(self, "run_as_group", value)
2495
+
2496
+ @property
2497
+ @pulumi.getter(name="runAsUser")
2498
+ def run_as_user(self) -> Optional[pulumi.Input[int]]:
2499
+ """
2500
+ Sets the User UID for the container.
2501
+ """
2502
+ return pulumi.get(self, "run_as_user")
2503
+
2504
+ @run_as_user.setter
2505
+ def run_as_user(self, value: Optional[pulumi.Input[int]]):
2506
+ pulumi.set(self, "run_as_user", value)
2507
+
2508
+ @property
2509
+ @pulumi.getter(name="seccompProfile")
2510
+ def seccomp_profile(self) -> Optional[pulumi.Input[str]]:
2511
+ """
2512
+ a base64 encoded string containing the contents of the JSON in the seccomp profile
2513
+ """
2514
+ return pulumi.get(self, "seccomp_profile")
2515
+
2516
+ @seccomp_profile.setter
2517
+ def seccomp_profile(self, value: Optional[pulumi.Input[str]]):
2518
+ pulumi.set(self, "seccomp_profile", value)
2519
+
2520
+
2521
+ if not MYPY:
2522
+ class VolumeMountArgsDict(TypedDict):
2523
+ """
2524
+ The properties of the volume mount.
2525
+ """
2526
+ mount_path: pulumi.Input[str]
2527
+ """
2528
+ The path within the container where the volume should be mounted. Must not contain colon (:).
2529
+ """
2530
+ name: pulumi.Input[str]
2531
+ """
2532
+ The name of the volume mount.
2533
+ """
2534
+ read_only: NotRequired[pulumi.Input[bool]]
2535
+ """
2536
+ The flag indicating whether the volume mount is read-only.
2537
+ """
2538
+ elif False:
2539
+ VolumeMountArgsDict: TypeAlias = Mapping[str, Any]
2540
+
2541
+ @pulumi.input_type
2542
+ class VolumeMountArgs:
2543
+ def __init__(__self__, *,
2544
+ mount_path: pulumi.Input[str],
2545
+ name: pulumi.Input[str],
2546
+ read_only: Optional[pulumi.Input[bool]] = None):
2547
+ """
2548
+ The properties of the volume mount.
2549
+ :param pulumi.Input[str] mount_path: The path within the container where the volume should be mounted. Must not contain colon (:).
2550
+ :param pulumi.Input[str] name: The name of the volume mount.
2551
+ :param pulumi.Input[bool] read_only: The flag indicating whether the volume mount is read-only.
2552
+ """
2553
+ pulumi.set(__self__, "mount_path", mount_path)
2554
+ pulumi.set(__self__, "name", name)
2555
+ if read_only is not None:
2556
+ pulumi.set(__self__, "read_only", read_only)
2557
+
2558
+ @property
2559
+ @pulumi.getter(name="mountPath")
2560
+ def mount_path(self) -> pulumi.Input[str]:
2561
+ """
2562
+ The path within the container where the volume should be mounted. Must not contain colon (:).
2563
+ """
2564
+ return pulumi.get(self, "mount_path")
2565
+
2566
+ @mount_path.setter
2567
+ def mount_path(self, value: pulumi.Input[str]):
2568
+ pulumi.set(self, "mount_path", value)
2569
+
2570
+ @property
2571
+ @pulumi.getter
2572
+ def name(self) -> pulumi.Input[str]:
2573
+ """
2574
+ The name of the volume mount.
2575
+ """
2576
+ return pulumi.get(self, "name")
2577
+
2578
+ @name.setter
2579
+ def name(self, value: pulumi.Input[str]):
2580
+ pulumi.set(self, "name", value)
2581
+
2582
+ @property
2583
+ @pulumi.getter(name="readOnly")
2584
+ def read_only(self) -> Optional[pulumi.Input[bool]]:
2585
+ """
2586
+ The flag indicating whether the volume mount is read-only.
2587
+ """
2588
+ return pulumi.get(self, "read_only")
2589
+
2590
+ @read_only.setter
2591
+ def read_only(self, value: Optional[pulumi.Input[bool]]):
2592
+ pulumi.set(self, "read_only", value)
2593
+
2594
+
2595
+ if not MYPY:
2596
+ class VolumeArgsDict(TypedDict):
2597
+ """
2598
+ The properties of the volume.
2599
+ """
2600
+ name: pulumi.Input[str]
2601
+ """
2602
+ The name of the volume.
2603
+ """
2604
+ azure_file: NotRequired[pulumi.Input['AzureFileVolumeArgsDict']]
2605
+ """
2606
+ The Azure File volume.
2607
+ """
2608
+ empty_dir: NotRequired[Any]
2609
+ """
2610
+ The empty directory volume.
2611
+ """
2612
+ git_repo: NotRequired[pulumi.Input['GitRepoVolumeArgsDict']]
2613
+ """
2614
+ The git repo volume.
2615
+ """
2616
+ secret: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
2617
+ """
2618
+ The secret volume.
2619
+ """
2620
+ secret_reference: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
2621
+ """
2622
+ The secret reference volume.
2623
+ """
2624
+ elif False:
2625
+ VolumeArgsDict: TypeAlias = Mapping[str, Any]
2626
+
2627
+ @pulumi.input_type
2628
+ class VolumeArgs:
2629
+ def __init__(__self__, *,
2630
+ name: pulumi.Input[str],
2631
+ azure_file: Optional[pulumi.Input['AzureFileVolumeArgs']] = None,
2632
+ empty_dir: Optional[Any] = None,
2633
+ git_repo: Optional[pulumi.Input['GitRepoVolumeArgs']] = None,
2634
+ secret: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2635
+ secret_reference: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
2636
+ """
2637
+ The properties of the volume.
2638
+ :param pulumi.Input[str] name: The name of the volume.
2639
+ :param pulumi.Input['AzureFileVolumeArgs'] azure_file: The Azure File volume.
2640
+ :param Any empty_dir: The empty directory volume.
2641
+ :param pulumi.Input['GitRepoVolumeArgs'] git_repo: The git repo volume.
2642
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] secret: The secret volume.
2643
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] secret_reference: The secret reference volume.
2644
+ """
2645
+ pulumi.set(__self__, "name", name)
2646
+ if azure_file is not None:
2647
+ pulumi.set(__self__, "azure_file", azure_file)
2648
+ if empty_dir is not None:
2649
+ pulumi.set(__self__, "empty_dir", empty_dir)
2650
+ if git_repo is not None:
2651
+ pulumi.set(__self__, "git_repo", git_repo)
2652
+ if secret is not None:
2653
+ pulumi.set(__self__, "secret", secret)
2654
+ if secret_reference is not None:
2655
+ pulumi.set(__self__, "secret_reference", secret_reference)
2656
+
2657
+ @property
2658
+ @pulumi.getter
2659
+ def name(self) -> pulumi.Input[str]:
2660
+ """
2661
+ The name of the volume.
2662
+ """
2663
+ return pulumi.get(self, "name")
2664
+
2665
+ @name.setter
2666
+ def name(self, value: pulumi.Input[str]):
2667
+ pulumi.set(self, "name", value)
2668
+
2669
+ @property
2670
+ @pulumi.getter(name="azureFile")
2671
+ def azure_file(self) -> Optional[pulumi.Input['AzureFileVolumeArgs']]:
2672
+ """
2673
+ The Azure File volume.
2674
+ """
2675
+ return pulumi.get(self, "azure_file")
2676
+
2677
+ @azure_file.setter
2678
+ def azure_file(self, value: Optional[pulumi.Input['AzureFileVolumeArgs']]):
2679
+ pulumi.set(self, "azure_file", value)
2680
+
2681
+ @property
2682
+ @pulumi.getter(name="emptyDir")
2683
+ def empty_dir(self) -> Optional[Any]:
2684
+ """
2685
+ The empty directory volume.
2686
+ """
2687
+ return pulumi.get(self, "empty_dir")
2688
+
2689
+ @empty_dir.setter
2690
+ def empty_dir(self, value: Optional[Any]):
2691
+ pulumi.set(self, "empty_dir", value)
2692
+
2693
+ @property
2694
+ @pulumi.getter(name="gitRepo")
2695
+ def git_repo(self) -> Optional[pulumi.Input['GitRepoVolumeArgs']]:
2696
+ """
2697
+ The git repo volume.
2698
+ """
2699
+ return pulumi.get(self, "git_repo")
2700
+
2701
+ @git_repo.setter
2702
+ def git_repo(self, value: Optional[pulumi.Input['GitRepoVolumeArgs']]):
2703
+ pulumi.set(self, "git_repo", value)
2704
+
2705
+ @property
2706
+ @pulumi.getter
2707
+ def secret(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
2708
+ """
2709
+ The secret volume.
2710
+ """
2711
+ return pulumi.get(self, "secret")
2712
+
2713
+ @secret.setter
2714
+ def secret(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
2715
+ pulumi.set(self, "secret", value)
2716
+
2717
+ @property
2718
+ @pulumi.getter(name="secretReference")
2719
+ def secret_reference(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
2720
+ """
2721
+ The secret reference volume.
2722
+ """
2723
+ return pulumi.get(self, "secret_reference")
2724
+
2725
+ @secret_reference.setter
2726
+ def secret_reference(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
2727
+ pulumi.set(self, "secret_reference", value)
2728
+
2729
+