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