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