pulumi-azure-native 2.47.1__py3-none-any.whl → 2.48.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (295) hide show
  1. pulumi_azure_native/__init__.py +91 -2
  2. pulumi_azure_native/billing/__init__.py +11 -0
  3. pulumi_azure_native/billing/_enums.py +71 -0
  4. pulumi_azure_native/billing/_inputs.py +1274 -0
  5. pulumi_azure_native/billing/associated_tenant.py +226 -0
  6. pulumi_azure_native/billing/billing_profile.py +225 -0
  7. pulumi_azure_native/billing/billing_role_assignment_by_billing_account.py +5 -1
  8. pulumi_azure_native/billing/billing_role_assignment_by_department.py +5 -1
  9. pulumi_azure_native/billing/billing_role_assignment_by_enrollment_account.py +5 -1
  10. pulumi_azure_native/billing/get_associated_tenant.py +146 -0
  11. pulumi_azure_native/billing/get_billing_profile.py +146 -0
  12. pulumi_azure_native/billing/get_billing_role_assignment_by_billing_account.py +4 -0
  13. pulumi_azure_native/billing/get_billing_role_assignment_by_department.py +4 -0
  14. pulumi_azure_native/billing/get_billing_role_assignment_by_enrollment_account.py +4 -0
  15. pulumi_azure_native/billing/get_invoice_section.py +151 -0
  16. pulumi_azure_native/billing/invoice_section.py +247 -0
  17. pulumi_azure_native/billing/list_billing_account_invoice_sections_by_create_subscription_permission.py +2 -2
  18. pulumi_azure_native/billing/outputs.py +1728 -17
  19. pulumi_azure_native/billing/v20191001preview/billing_role_assignment_by_billing_account.py +1 -1
  20. pulumi_azure_native/billing/v20191001preview/billing_role_assignment_by_department.py +1 -1
  21. pulumi_azure_native/billing/v20191001preview/billing_role_assignment_by_enrollment_account.py +1 -1
  22. pulumi_azure_native/billing/v20240401/__init__.py +23 -0
  23. pulumi_azure_native/billing/v20240401/_enums.py +71 -0
  24. pulumi_azure_native/billing/v20240401/_inputs.py +1394 -0
  25. pulumi_azure_native/billing/v20240401/associated_tenant.py +224 -0
  26. pulumi_azure_native/billing/v20240401/billing_profile.py +223 -0
  27. pulumi_azure_native/billing/v20240401/billing_role_assignment_by_billing_account.py +223 -0
  28. pulumi_azure_native/billing/v20240401/billing_role_assignment_by_department.py +244 -0
  29. pulumi_azure_native/billing/v20240401/billing_role_assignment_by_enrollment_account.py +244 -0
  30. pulumi_azure_native/billing/v20240401/get_associated_tenant.py +144 -0
  31. pulumi_azure_native/billing/v20240401/get_billing_profile.py +144 -0
  32. pulumi_azure_native/billing/v20240401/get_billing_role_assignment_by_billing_account.py +144 -0
  33. pulumi_azure_native/billing/v20240401/get_billing_role_assignment_by_department.py +149 -0
  34. pulumi_azure_native/billing/v20240401/get_billing_role_assignment_by_enrollment_account.py +149 -0
  35. pulumi_azure_native/billing/v20240401/get_invoice_section.py +149 -0
  36. pulumi_azure_native/billing/v20240401/invoice_section.py +245 -0
  37. pulumi_azure_native/billing/v20240401/list_billing_account_invoice_sections_by_create_subscription_permission.py +92 -0
  38. pulumi_azure_native/billing/v20240401/outputs.py +2305 -0
  39. pulumi_azure_native/containerinstance/__init__.py +3 -0
  40. pulumi_azure_native/containerinstance/container_group.py +3 -3
  41. pulumi_azure_native/containerinstance/get_container_group.py +2 -2
  42. pulumi_azure_native/containerinstance/v20210301/container_group.py +1 -1
  43. pulumi_azure_native/containerinstance/v20210701/container_group.py +1 -1
  44. pulumi_azure_native/containerinstance/v20230201preview/container_group.py +1 -1
  45. pulumi_azure_native/containerinstance/v20230501/container_group.py +1 -1
  46. pulumi_azure_native/containerinstance/v20240501preview/__init__.py +12 -0
  47. pulumi_azure_native/containerinstance/v20240501preview/_enums.py +127 -0
  48. pulumi_azure_native/containerinstance/v20240501preview/_inputs.py +2019 -0
  49. pulumi_azure_native/containerinstance/v20240501preview/container_group.py +808 -0
  50. pulumi_azure_native/containerinstance/v20240501preview/get_container_group.py +420 -0
  51. pulumi_azure_native/containerinstance/v20240501preview/outputs.py +2605 -0
  52. pulumi_azure_native/dbformysql/azure_ad_administrator.py +3 -3
  53. pulumi_azure_native/dbformysql/configuration.py +3 -3
  54. pulumi_azure_native/dbformysql/database.py +3 -3
  55. pulumi_azure_native/dbformysql/firewall_rule.py +3 -3
  56. pulumi_azure_native/dbformysql/get_azure_ad_administrator.py +2 -2
  57. pulumi_azure_native/dbformysql/get_configuration.py +2 -2
  58. pulumi_azure_native/dbformysql/get_database.py +2 -2
  59. pulumi_azure_native/dbformysql/get_firewall_rule.py +2 -2
  60. pulumi_azure_native/dbformysql/v20200701privatepreview/configuration.py +1 -1
  61. pulumi_azure_native/dbformysql/v20220101/azure_ad_administrator.py +1 -1
  62. pulumi_azure_native/dbformysql/v20220101/configuration.py +1 -1
  63. pulumi_azure_native/dbformysql/v20220101/database.py +1 -1
  64. pulumi_azure_native/dbformysql/v20220101/firewall_rule.py +1 -1
  65. pulumi_azure_native/dbformysql/v20230601preview/azure_ad_administrator.py +1 -1
  66. pulumi_azure_native/dbformysql/v20230601preview/configuration.py +1 -1
  67. pulumi_azure_native/dbformysql/v20230601preview/database.py +1 -1
  68. pulumi_azure_native/dbformysql/v20230601preview/firewall_rule.py +1 -1
  69. pulumi_azure_native/dbformysql/v20230630/azure_ad_administrator.py +1 -1
  70. pulumi_azure_native/dbformysql/v20230630/configuration.py +1 -1
  71. pulumi_azure_native/dbformysql/v20230630/database.py +1 -1
  72. pulumi_azure_native/dbformysql/v20230630/firewall_rule.py +1 -1
  73. pulumi_azure_native/dbformysql/v20231230/__init__.py +8 -0
  74. pulumi_azure_native/dbformysql/v20231230/_enums.py +17 -0
  75. pulumi_azure_native/dbformysql/v20231230/azure_ad_administrator.py +331 -0
  76. pulumi_azure_native/dbformysql/v20231230/configuration.py +353 -0
  77. pulumi_azure_native/dbformysql/v20231230/database.py +243 -0
  78. pulumi_azure_native/dbformysql/v20231230/firewall_rule.py +245 -0
  79. pulumi_azure_native/dbformysql/v20231230/get_azure_ad_administrator.py +188 -0
  80. pulumi_azure_native/dbformysql/v20231230/get_configuration.py +266 -0
  81. pulumi_azure_native/dbformysql/v20231230/get_database.py +149 -0
  82. pulumi_azure_native/dbformysql/v20231230/get_firewall_rule.py +149 -0
  83. pulumi_azure_native/devcenter/__init__.py +4 -0
  84. pulumi_azure_native/devcenter/attached_network_by_dev_center.py +3 -3
  85. pulumi_azure_native/devcenter/catalog.py +3 -3
  86. pulumi_azure_native/devcenter/dev_box_definition.py +3 -3
  87. pulumi_azure_native/devcenter/dev_center.py +3 -3
  88. pulumi_azure_native/devcenter/encryption_set.py +3 -3
  89. pulumi_azure_native/devcenter/environment_type.py +3 -3
  90. pulumi_azure_native/devcenter/gallery.py +3 -3
  91. pulumi_azure_native/devcenter/get_attached_network_by_dev_center.py +2 -2
  92. pulumi_azure_native/devcenter/get_catalog.py +2 -2
  93. pulumi_azure_native/devcenter/get_catalog_sync_error_details.py +2 -2
  94. pulumi_azure_native/devcenter/get_customization_task_error_details.py +2 -2
  95. pulumi_azure_native/devcenter/get_dev_box_definition.py +2 -2
  96. pulumi_azure_native/devcenter/get_dev_center.py +2 -2
  97. pulumi_azure_native/devcenter/get_encryption_set.py +2 -2
  98. pulumi_azure_native/devcenter/get_environment_definition_error_details.py +2 -2
  99. pulumi_azure_native/devcenter/get_environment_type.py +2 -2
  100. pulumi_azure_native/devcenter/get_gallery.py +2 -2
  101. pulumi_azure_native/devcenter/get_network_connection.py +2 -2
  102. pulumi_azure_native/devcenter/get_plan.py +2 -2
  103. pulumi_azure_native/devcenter/get_plan_member.py +2 -2
  104. pulumi_azure_native/devcenter/get_pool.py +2 -2
  105. pulumi_azure_native/devcenter/get_project.py +2 -2
  106. pulumi_azure_native/devcenter/get_project_catalog.py +2 -2
  107. pulumi_azure_native/devcenter/get_project_catalog_environment_definition_error_details.py +2 -2
  108. pulumi_azure_native/devcenter/get_project_catalog_image_definition_build_details.py +213 -0
  109. pulumi_azure_native/devcenter/get_project_catalog_sync_error_details.py +2 -2
  110. pulumi_azure_native/devcenter/get_project_environment_type.py +2 -2
  111. pulumi_azure_native/devcenter/get_project_inherited_settings.py +2 -2
  112. pulumi_azure_native/devcenter/get_schedule.py +2 -2
  113. pulumi_azure_native/devcenter/list_skus_by_project.py +4 -0
  114. pulumi_azure_native/devcenter/network_connection.py +3 -3
  115. pulumi_azure_native/devcenter/outputs.py +226 -0
  116. pulumi_azure_native/devcenter/plan.py +3 -3
  117. pulumi_azure_native/devcenter/plan_member.py +3 -3
  118. pulumi_azure_native/devcenter/pool.py +3 -3
  119. pulumi_azure_native/devcenter/project.py +3 -3
  120. pulumi_azure_native/devcenter/project_catalog.py +3 -3
  121. pulumi_azure_native/devcenter/project_environment_type.py +3 -3
  122. pulumi_azure_native/devcenter/schedule.py +3 -3
  123. pulumi_azure_native/devcenter/v20221111preview/dev_box_definition.py +1 -1
  124. pulumi_azure_native/devcenter/v20230401/attached_network_by_dev_center.py +1 -1
  125. pulumi_azure_native/devcenter/v20230401/catalog.py +1 -1
  126. pulumi_azure_native/devcenter/v20230401/dev_box_definition.py +1 -1
  127. pulumi_azure_native/devcenter/v20230401/dev_center.py +1 -1
  128. pulumi_azure_native/devcenter/v20230401/environment_type.py +1 -1
  129. pulumi_azure_native/devcenter/v20230401/gallery.py +1 -1
  130. pulumi_azure_native/devcenter/v20230401/network_connection.py +1 -1
  131. pulumi_azure_native/devcenter/v20230401/pool.py +1 -1
  132. pulumi_azure_native/devcenter/v20230401/project.py +1 -1
  133. pulumi_azure_native/devcenter/v20230401/project_environment_type.py +1 -1
  134. pulumi_azure_native/devcenter/v20230401/schedule.py +1 -1
  135. pulumi_azure_native/devcenter/v20230801preview/attached_network_by_dev_center.py +1 -1
  136. pulumi_azure_native/devcenter/v20230801preview/catalog.py +1 -1
  137. pulumi_azure_native/devcenter/v20230801preview/dev_box_definition.py +1 -1
  138. pulumi_azure_native/devcenter/v20230801preview/dev_center.py +1 -1
  139. pulumi_azure_native/devcenter/v20230801preview/environment_type.py +1 -1
  140. pulumi_azure_native/devcenter/v20230801preview/gallery.py +1 -1
  141. pulumi_azure_native/devcenter/v20230801preview/network_connection.py +1 -1
  142. pulumi_azure_native/devcenter/v20230801preview/pool.py +1 -1
  143. pulumi_azure_native/devcenter/v20230801preview/project.py +1 -1
  144. pulumi_azure_native/devcenter/v20230801preview/project_environment_type.py +1 -1
  145. pulumi_azure_native/devcenter/v20230801preview/schedule.py +1 -1
  146. pulumi_azure_native/devcenter/v20231001preview/attached_network_by_dev_center.py +1 -1
  147. pulumi_azure_native/devcenter/v20231001preview/catalog.py +1 -1
  148. pulumi_azure_native/devcenter/v20231001preview/dev_box_definition.py +1 -1
  149. pulumi_azure_native/devcenter/v20231001preview/dev_center.py +1 -1
  150. pulumi_azure_native/devcenter/v20231001preview/environment_type.py +1 -1
  151. pulumi_azure_native/devcenter/v20231001preview/gallery.py +1 -1
  152. pulumi_azure_native/devcenter/v20231001preview/network_connection.py +1 -1
  153. pulumi_azure_native/devcenter/v20231001preview/pool.py +1 -1
  154. pulumi_azure_native/devcenter/v20231001preview/project.py +1 -1
  155. pulumi_azure_native/devcenter/v20231001preview/project_environment_type.py +1 -1
  156. pulumi_azure_native/devcenter/v20231001preview/schedule.py +1 -1
  157. pulumi_azure_native/devcenter/v20240201/attached_network_by_dev_center.py +1 -1
  158. pulumi_azure_native/devcenter/v20240201/catalog.py +1 -1
  159. pulumi_azure_native/devcenter/v20240201/dev_box_definition.py +1 -1
  160. pulumi_azure_native/devcenter/v20240201/dev_center.py +1 -1
  161. pulumi_azure_native/devcenter/v20240201/environment_type.py +1 -1
  162. pulumi_azure_native/devcenter/v20240201/gallery.py +1 -1
  163. pulumi_azure_native/devcenter/v20240201/network_connection.py +1 -1
  164. pulumi_azure_native/devcenter/v20240201/pool.py +1 -1
  165. pulumi_azure_native/devcenter/v20240201/project.py +1 -1
  166. pulumi_azure_native/devcenter/v20240201/project_catalog.py +1 -1
  167. pulumi_azure_native/devcenter/v20240201/project_environment_type.py +1 -1
  168. pulumi_azure_native/devcenter/v20240201/schedule.py +1 -1
  169. pulumi_azure_native/devcenter/v20240501preview/attached_network_by_dev_center.py +1 -1
  170. pulumi_azure_native/devcenter/v20240501preview/catalog.py +1 -1
  171. pulumi_azure_native/devcenter/v20240501preview/dev_box_definition.py +1 -1
  172. pulumi_azure_native/devcenter/v20240501preview/dev_center.py +1 -1
  173. pulumi_azure_native/devcenter/v20240501preview/encryption_set.py +1 -1
  174. pulumi_azure_native/devcenter/v20240501preview/environment_type.py +1 -1
  175. pulumi_azure_native/devcenter/v20240501preview/gallery.py +1 -1
  176. pulumi_azure_native/devcenter/v20240501preview/network_connection.py +1 -1
  177. pulumi_azure_native/devcenter/v20240501preview/plan.py +1 -1
  178. pulumi_azure_native/devcenter/v20240501preview/plan_member.py +1 -1
  179. pulumi_azure_native/devcenter/v20240501preview/pool.py +1 -1
  180. pulumi_azure_native/devcenter/v20240501preview/project.py +1 -1
  181. pulumi_azure_native/devcenter/v20240501preview/project_catalog.py +1 -1
  182. pulumi_azure_native/devcenter/v20240501preview/project_environment_type.py +1 -1
  183. pulumi_azure_native/devcenter/v20240501preview/schedule.py +1 -1
  184. pulumi_azure_native/devcenter/v20240601preview/attached_network_by_dev_center.py +1 -1
  185. pulumi_azure_native/devcenter/v20240601preview/catalog.py +1 -1
  186. pulumi_azure_native/devcenter/v20240601preview/dev_box_definition.py +1 -1
  187. pulumi_azure_native/devcenter/v20240601preview/dev_center.py +1 -1
  188. pulumi_azure_native/devcenter/v20240601preview/encryption_set.py +1 -1
  189. pulumi_azure_native/devcenter/v20240601preview/environment_type.py +1 -1
  190. pulumi_azure_native/devcenter/v20240601preview/gallery.py +1 -1
  191. pulumi_azure_native/devcenter/v20240601preview/network_connection.py +1 -1
  192. pulumi_azure_native/devcenter/v20240601preview/plan.py +1 -1
  193. pulumi_azure_native/devcenter/v20240601preview/plan_member.py +1 -1
  194. pulumi_azure_native/devcenter/v20240601preview/pool.py +1 -1
  195. pulumi_azure_native/devcenter/v20240601preview/project.py +1 -1
  196. pulumi_azure_native/devcenter/v20240601preview/project_catalog.py +1 -1
  197. pulumi_azure_native/devcenter/v20240601preview/project_environment_type.py +1 -1
  198. pulumi_azure_native/devcenter/v20240601preview/schedule.py +1 -1
  199. pulumi_azure_native/devcenter/v20240701preview/__init__.py +48 -0
  200. pulumi_azure_native/devcenter/v20240701preview/_enums.py +209 -0
  201. pulumi_azure_native/devcenter/v20240701preview/_inputs.py +595 -0
  202. pulumi_azure_native/devcenter/v20240701preview/attached_network_by_dev_center.py +255 -0
  203. pulumi_azure_native/devcenter/v20240701preview/catalog.py +363 -0
  204. pulumi_azure_native/devcenter/v20240701preview/dev_box_definition.py +413 -0
  205. pulumi_azure_native/devcenter/v20240701preview/dev_center.py +447 -0
  206. pulumi_azure_native/devcenter/v20240701preview/encryption_set.py +342 -0
  207. pulumi_azure_native/devcenter/v20240701preview/environment_type.py +253 -0
  208. pulumi_azure_native/devcenter/v20240701preview/gallery.py +225 -0
  209. pulumi_azure_native/devcenter/v20240701preview/get_attached_network_by_dev_center.py +188 -0
  210. pulumi_azure_native/devcenter/v20240701preview/get_catalog.py +253 -0
  211. pulumi_azure_native/devcenter/v20240701preview/get_catalog_sync_error_details.py +110 -0
  212. pulumi_azure_native/devcenter/v20240701preview/get_customization_task_error_details.py +89 -0
  213. pulumi_azure_native/devcenter/v20240701preview/get_dev_box_definition.py +266 -0
  214. pulumi_azure_native/devcenter/v20240701preview/get_dev_center.py +261 -0
  215. pulumi_azure_native/devcenter/v20240701preview/get_encryption_set.py +201 -0
  216. pulumi_azure_native/devcenter/v20240701preview/get_environment_definition_error_details.py +89 -0
  217. pulumi_azure_native/devcenter/v20240701preview/get_environment_type.py +162 -0
  218. pulumi_azure_native/devcenter/v20240701preview/get_gallery.py +149 -0
  219. pulumi_azure_native/devcenter/v20240701preview/get_network_connection.py +261 -0
  220. pulumi_azure_native/devcenter/v20240701preview/get_plan.py +170 -0
  221. pulumi_azure_native/devcenter/v20240701preview/get_plan_member.py +175 -0
  222. pulumi_azure_native/devcenter/v20240701preview/get_pool.py +344 -0
  223. pulumi_azure_native/devcenter/v20240701preview/get_project.py +248 -0
  224. pulumi_azure_native/devcenter/v20240701preview/get_project_catalog.py +253 -0
  225. pulumi_azure_native/devcenter/v20240701preview/get_project_catalog_environment_definition_error_details.py +89 -0
  226. pulumi_azure_native/devcenter/v20240701preview/get_project_catalog_image_definition_build_details.py +211 -0
  227. pulumi_azure_native/devcenter/v20240701preview/get_project_catalog_sync_error_details.py +110 -0
  228. pulumi_azure_native/devcenter/v20240701preview/get_project_environment_type.py +253 -0
  229. pulumi_azure_native/devcenter/v20240701preview/get_project_inherited_settings.py +92 -0
  230. pulumi_azure_native/devcenter/v20240701preview/get_schedule.py +224 -0
  231. pulumi_azure_native/devcenter/v20240701preview/list_skus_by_project.py +92 -0
  232. pulumi_azure_native/devcenter/v20240701preview/network_connection.py +448 -0
  233. pulumi_azure_native/devcenter/v20240701preview/outputs.py +1673 -0
  234. pulumi_azure_native/devcenter/v20240701preview/plan.py +263 -0
  235. pulumi_azure_native/devcenter/v20240701preview/plan_member.py +283 -0
  236. pulumi_azure_native/devcenter/v20240701preview/pool.py +608 -0
  237. pulumi_azure_native/devcenter/v20240701preview/project.py +418 -0
  238. pulumi_azure_native/devcenter/v20240701preview/project_catalog.py +363 -0
  239. pulumi_azure_native/devcenter/v20240701preview/project_environment_type.py +439 -0
  240. pulumi_azure_native/devcenter/v20240701preview/schedule.py +434 -0
  241. pulumi_azure_native/fabric/__init__.py +20 -0
  242. pulumi_azure_native/fabric/_enums.py +19 -0
  243. pulumi_azure_native/fabric/_inputs.py +78 -0
  244. pulumi_azure_native/fabric/fabric_capacity.py +306 -0
  245. pulumi_azure_native/fabric/get_fabric_capacity.py +198 -0
  246. pulumi_azure_native/fabric/outputs.py +183 -0
  247. pulumi_azure_native/fabric/v20231101/__init__.py +12 -0
  248. pulumi_azure_native/fabric/v20231101/_enums.py +19 -0
  249. pulumi_azure_native/fabric/v20231101/_inputs.py +78 -0
  250. pulumi_azure_native/fabric/v20231101/fabric_capacity.py +304 -0
  251. pulumi_azure_native/fabric/v20231101/get_fabric_capacity.py +196 -0
  252. pulumi_azure_native/fabric/v20231101/outputs.py +183 -0
  253. pulumi_azure_native/kubernetes/__init__.py +3 -0
  254. pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
  255. pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
  256. pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
  257. pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
  258. pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
  259. pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
  260. pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +1 -1
  261. pulumi_azure_native/kubernetes/v20240201preview/connected_cluster.py +1 -1
  262. pulumi_azure_native/kubernetes/v20240601preview/connected_cluster.py +1 -1
  263. pulumi_azure_native/kubernetes/v20240701preview/__init__.py +13 -0
  264. pulumi_azure_native/kubernetes/v20240701preview/_enums.py +76 -0
  265. pulumi_azure_native/kubernetes/v20240701preview/_inputs.py +401 -0
  266. pulumi_azure_native/kubernetes/v20240701preview/connected_cluster.py +788 -0
  267. pulumi_azure_native/kubernetes/v20240701preview/get_connected_cluster.py +469 -0
  268. pulumi_azure_native/kubernetes/v20240701preview/list_connected_cluster_user_credential.py +103 -0
  269. pulumi_azure_native/kubernetes/v20240701preview/outputs.py +827 -0
  270. pulumi_azure_native/loadtestservice/__init__.py +7 -0
  271. pulumi_azure_native/loadtestservice/get_load_test.py +2 -2
  272. pulumi_azure_native/loadtestservice/get_load_test_mapping.py +159 -0
  273. pulumi_azure_native/loadtestservice/get_load_test_profile_mapping.py +159 -0
  274. pulumi_azure_native/loadtestservice/load_test.py +3 -3
  275. pulumi_azure_native/loadtestservice/load_test_mapping.py +253 -0
  276. pulumi_azure_native/loadtestservice/load_test_profile_mapping.py +253 -0
  277. pulumi_azure_native/loadtestservice/v20211201preview/load_test.py +1 -1
  278. pulumi_azure_native/loadtestservice/v20221201/load_test.py +1 -1
  279. pulumi_azure_native/loadtestservice/v20231201preview/__init__.py +16 -0
  280. pulumi_azure_native/loadtestservice/v20231201preview/_enums.py +34 -0
  281. pulumi_azure_native/loadtestservice/v20231201preview/_inputs.py +137 -0
  282. pulumi_azure_native/loadtestservice/v20231201preview/get_load_test.py +209 -0
  283. pulumi_azure_native/loadtestservice/v20231201preview/get_load_test_mapping.py +157 -0
  284. pulumi_azure_native/loadtestservice/v20231201preview/get_load_test_profile_mapping.py +157 -0
  285. pulumi_azure_native/loadtestservice/v20231201preview/load_test.py +331 -0
  286. pulumi_azure_native/loadtestservice/v20231201preview/load_test_mapping.py +251 -0
  287. pulumi_azure_native/loadtestservice/v20231201preview/load_test_profile_mapping.py +251 -0
  288. pulumi_azure_native/loadtestservice/v20231201preview/outputs.py +364 -0
  289. pulumi_azure_native/portal/_inputs.py +61 -202
  290. pulumi_azure_native/portal/outputs.py +51 -192
  291. pulumi_azure_native/pulumi-plugin.json +1 -1
  292. {pulumi_azure_native-2.47.1.dist-info → pulumi_azure_native-2.48.0.dist-info}/METADATA +1 -1
  293. {pulumi_azure_native-2.47.1.dist-info → pulumi_azure_native-2.48.0.dist-info}/RECORD +295 -180
  294. {pulumi_azure_native-2.47.1.dist-info → pulumi_azure_native-2.48.0.dist-info}/WHEEL +1 -1
  295. {pulumi_azure_native-2.47.1.dist-info → pulumi_azure_native-2.48.0.dist-info}/top_level.txt +0 -0
@@ -9,44 +9,1464 @@ import pulumi.runtime
9
9
  from typing import Any, Mapping, Optional, Sequence, Union, overload
10
10
  from .. import _utilities
11
11
  from . import outputs
12
+ from ._enums import *
12
13
 
13
14
  __all__ = [
15
+ 'AssociatedTenantPropertiesResponse',
14
16
  'AzurePlanResponse',
17
+ 'BillingProfilePropertiesResponse',
18
+ 'BillingProfilePropertiesResponseBillTo',
19
+ 'BillingProfilePropertiesResponseCurrentPaymentTerm',
20
+ 'BillingProfilePropertiesResponseIndirectRelationshipInfo',
21
+ 'BillingProfilePropertiesResponseShipTo',
22
+ 'BillingProfilePropertiesResponseSoldTo',
23
+ 'InvoiceSectionPropertiesResponse',
15
24
  'InvoiceSectionWithCreateSubPermissionResponse',
25
+ 'PaymentTermResponse',
26
+ 'SpendingLimitDetailsResponse',
27
+ 'SystemDataResponse',
16
28
  ]
17
29
 
30
+ @pulumi.output_type
31
+ class AssociatedTenantPropertiesResponse(dict):
32
+ """
33
+ An associated tenant.
34
+ """
35
+ @staticmethod
36
+ def __key_warning(key: str):
37
+ suggest = None
38
+ if key == "provisioningBillingRequestId":
39
+ suggest = "provisioning_billing_request_id"
40
+ elif key == "provisioningState":
41
+ suggest = "provisioning_state"
42
+ elif key == "billingManagementState":
43
+ suggest = "billing_management_state"
44
+ elif key == "displayName":
45
+ suggest = "display_name"
46
+ elif key == "provisioningManagementState":
47
+ suggest = "provisioning_management_state"
48
+ elif key == "tenantId":
49
+ suggest = "tenant_id"
50
+
51
+ if suggest:
52
+ pulumi.log.warn(f"Key '{key}' not found in AssociatedTenantPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
53
+
54
+ def __getitem__(self, key: str) -> Any:
55
+ AssociatedTenantPropertiesResponse.__key_warning(key)
56
+ return super().__getitem__(key)
57
+
58
+ def get(self, key: str, default = None) -> Any:
59
+ AssociatedTenantPropertiesResponse.__key_warning(key)
60
+ return super().get(key, default)
61
+
62
+ def __init__(__self__, *,
63
+ provisioning_billing_request_id: str,
64
+ provisioning_state: str,
65
+ billing_management_state: Optional[str] = None,
66
+ display_name: Optional[str] = None,
67
+ provisioning_management_state: Optional[str] = None,
68
+ tenant_id: Optional[str] = None):
69
+ """
70
+ An associated tenant.
71
+ :param str provisioning_billing_request_id: The unique identifier for the billing request that is created when enabling provisioning for an associated tenant.
72
+ :param str provisioning_state: The provisioning state of the resource during a long-running operation.
73
+ :param str billing_management_state: The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
74
+ :param str display_name: The name of the associated tenant.
75
+ :param str provisioning_management_state: The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
76
+ :param str tenant_id: The ID that uniquely identifies a tenant.
77
+ """
78
+ pulumi.set(__self__, "provisioning_billing_request_id", provisioning_billing_request_id)
79
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
80
+ if billing_management_state is not None:
81
+ pulumi.set(__self__, "billing_management_state", billing_management_state)
82
+ if display_name is not None:
83
+ pulumi.set(__self__, "display_name", display_name)
84
+ if provisioning_management_state is not None:
85
+ pulumi.set(__self__, "provisioning_management_state", provisioning_management_state)
86
+ if tenant_id is not None:
87
+ pulumi.set(__self__, "tenant_id", tenant_id)
88
+
89
+ @property
90
+ @pulumi.getter(name="provisioningBillingRequestId")
91
+ def provisioning_billing_request_id(self) -> str:
92
+ """
93
+ The unique identifier for the billing request that is created when enabling provisioning for an associated tenant.
94
+ """
95
+ return pulumi.get(self, "provisioning_billing_request_id")
96
+
97
+ @property
98
+ @pulumi.getter(name="provisioningState")
99
+ def provisioning_state(self) -> str:
100
+ """
101
+ The provisioning state of the resource during a long-running operation.
102
+ """
103
+ return pulumi.get(self, "provisioning_state")
104
+
105
+ @property
106
+ @pulumi.getter(name="billingManagementState")
107
+ def billing_management_state(self) -> Optional[str]:
108
+ """
109
+ The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
110
+ """
111
+ return pulumi.get(self, "billing_management_state")
112
+
113
+ @property
114
+ @pulumi.getter(name="displayName")
115
+ def display_name(self) -> Optional[str]:
116
+ """
117
+ The name of the associated tenant.
118
+ """
119
+ return pulumi.get(self, "display_name")
120
+
121
+ @property
122
+ @pulumi.getter(name="provisioningManagementState")
123
+ def provisioning_management_state(self) -> Optional[str]:
124
+ """
125
+ The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
126
+ """
127
+ return pulumi.get(self, "provisioning_management_state")
128
+
129
+ @property
130
+ @pulumi.getter(name="tenantId")
131
+ def tenant_id(self) -> Optional[str]:
132
+ """
133
+ The ID that uniquely identifies a tenant.
134
+ """
135
+ return pulumi.get(self, "tenant_id")
136
+
137
+
18
138
  @pulumi.output_type
19
139
  class AzurePlanResponse(dict):
20
140
  """
21
- Details of the Azure plan.
141
+ Details of the Azure plan.
142
+ """
143
+ @staticmethod
144
+ def __key_warning(key: str):
145
+ suggest = None
146
+ if key == "skuDescription":
147
+ suggest = "sku_description"
148
+ elif key == "productId":
149
+ suggest = "product_id"
150
+ elif key == "skuId":
151
+ suggest = "sku_id"
152
+
153
+ if suggest:
154
+ pulumi.log.warn(f"Key '{key}' not found in AzurePlanResponse. Access the value via the '{suggest}' property getter instead.")
155
+
156
+ def __getitem__(self, key: str) -> Any:
157
+ AzurePlanResponse.__key_warning(key)
158
+ return super().__getitem__(key)
159
+
160
+ def get(self, key: str, default = None) -> Any:
161
+ AzurePlanResponse.__key_warning(key)
162
+ return super().get(key, default)
163
+
164
+ def __init__(__self__, *,
165
+ sku_description: str,
166
+ product_id: Optional[str] = None,
167
+ sku_id: Optional[str] = None):
168
+ """
169
+ Details of the Azure plan.
170
+ :param str sku_description: The sku description.
171
+ :param str product_id: The ID that uniquely identifies a product.
172
+ :param str sku_id: The sku id.
173
+ """
174
+ pulumi.set(__self__, "sku_description", sku_description)
175
+ if product_id is not None:
176
+ pulumi.set(__self__, "product_id", product_id)
177
+ if sku_id is not None:
178
+ pulumi.set(__self__, "sku_id", sku_id)
179
+
180
+ @property
181
+ @pulumi.getter(name="skuDescription")
182
+ def sku_description(self) -> str:
183
+ """
184
+ The sku description.
185
+ """
186
+ return pulumi.get(self, "sku_description")
187
+
188
+ @property
189
+ @pulumi.getter(name="productId")
190
+ def product_id(self) -> Optional[str]:
191
+ """
192
+ The ID that uniquely identifies a product.
193
+ """
194
+ return pulumi.get(self, "product_id")
195
+
196
+ @property
197
+ @pulumi.getter(name="skuId")
198
+ def sku_id(self) -> Optional[str]:
199
+ """
200
+ The sku id.
201
+ """
202
+ return pulumi.get(self, "sku_id")
203
+
204
+
205
+ @pulumi.output_type
206
+ class BillingProfilePropertiesResponse(dict):
207
+ """
208
+ A billing profile.
209
+ """
210
+ @staticmethod
211
+ def __key_warning(key: str):
212
+ suggest = None
213
+ if key == "billingRelationshipType":
214
+ suggest = "billing_relationship_type"
215
+ elif key == "hasReadAccess":
216
+ suggest = "has_read_access"
217
+ elif key == "invoiceDay":
218
+ suggest = "invoice_day"
219
+ elif key == "otherPaymentTerms":
220
+ suggest = "other_payment_terms"
221
+ elif key == "provisioningState":
222
+ suggest = "provisioning_state"
223
+ elif key == "spendingLimit":
224
+ suggest = "spending_limit"
225
+ elif key == "spendingLimitDetails":
226
+ suggest = "spending_limit_details"
227
+ elif key == "statusReasonCode":
228
+ suggest = "status_reason_code"
229
+ elif key == "systemId":
230
+ suggest = "system_id"
231
+ elif key == "targetClouds":
232
+ suggest = "target_clouds"
233
+ elif key == "billTo":
234
+ suggest = "bill_to"
235
+ elif key == "currentPaymentTerm":
236
+ suggest = "current_payment_term"
237
+ elif key == "displayName":
238
+ suggest = "display_name"
239
+ elif key == "enabledAzurePlans":
240
+ suggest = "enabled_azure_plans"
241
+ elif key == "indirectRelationshipInfo":
242
+ suggest = "indirect_relationship_info"
243
+ elif key == "invoiceEmailOptIn":
244
+ suggest = "invoice_email_opt_in"
245
+ elif key == "invoiceRecipients":
246
+ suggest = "invoice_recipients"
247
+ elif key == "poNumber":
248
+ suggest = "po_number"
249
+ elif key == "shipTo":
250
+ suggest = "ship_to"
251
+ elif key == "soldTo":
252
+ suggest = "sold_to"
253
+
254
+ if suggest:
255
+ pulumi.log.warn(f"Key '{key}' not found in BillingProfilePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
256
+
257
+ def __getitem__(self, key: str) -> Any:
258
+ BillingProfilePropertiesResponse.__key_warning(key)
259
+ return super().__getitem__(key)
260
+
261
+ def get(self, key: str, default = None) -> Any:
262
+ BillingProfilePropertiesResponse.__key_warning(key)
263
+ return super().get(key, default)
264
+
265
+ def __init__(__self__, *,
266
+ billing_relationship_type: str,
267
+ currency: str,
268
+ has_read_access: bool,
269
+ invoice_day: int,
270
+ other_payment_terms: Sequence['outputs.PaymentTermResponse'],
271
+ provisioning_state: str,
272
+ spending_limit: str,
273
+ spending_limit_details: Sequence['outputs.SpendingLimitDetailsResponse'],
274
+ status: str,
275
+ status_reason_code: str,
276
+ system_id: str,
277
+ target_clouds: Sequence[str],
278
+ bill_to: Optional['outputs.BillingProfilePropertiesResponseBillTo'] = None,
279
+ current_payment_term: Optional['outputs.BillingProfilePropertiesResponseCurrentPaymentTerm'] = None,
280
+ display_name: Optional[str] = None,
281
+ enabled_azure_plans: Optional[Sequence['outputs.AzurePlanResponse']] = None,
282
+ indirect_relationship_info: Optional['outputs.BillingProfilePropertiesResponseIndirectRelationshipInfo'] = None,
283
+ invoice_email_opt_in: Optional[bool] = None,
284
+ invoice_recipients: Optional[Sequence[str]] = None,
285
+ po_number: Optional[str] = None,
286
+ ship_to: Optional['outputs.BillingProfilePropertiesResponseShipTo'] = None,
287
+ sold_to: Optional['outputs.BillingProfilePropertiesResponseSoldTo'] = None,
288
+ tags: Optional[Mapping[str, str]] = None):
289
+ """
290
+ A billing profile.
291
+ :param str billing_relationship_type: Identifies the billing relationship represented by the billing profile. The billing relationship may be between Microsoft, the customer, and/or a third-party.
292
+ :param str currency: The currency in which the charges for the billing profile are billed.
293
+ :param bool has_read_access: Indicates whether user has read access to the billing profile.
294
+ :param int invoice_day: The day of the month when the invoice for the billing profile is generated.
295
+ :param Sequence['PaymentTermResponse'] other_payment_terms: The other payment terms of the billing profile.
296
+ :param str provisioning_state: The provisioning state of the resource during a long-running operation.
297
+ :param str spending_limit: The billing profile spending limit.
298
+ :param Sequence['SpendingLimitDetailsResponse'] spending_limit_details: The details of billing profile spending limit.
299
+ :param str status: The status of the billing profile.
300
+ :param str status_reason_code: Reason for the specified billing profile status.
301
+ :param str system_id: The system generated unique identifier for a billing profile.
302
+ :param Sequence[str] target_clouds: Identifies the cloud environments that are associated with a billing profile. This is a system managed optional field and gets updated as the billing profile gets associated with accounts in various clouds.
303
+ :param 'BillingProfilePropertiesResponseBillTo' bill_to: Billing address.
304
+ :param 'BillingProfilePropertiesResponseCurrentPaymentTerm' current_payment_term: The current payment term of the billing profile.
305
+ :param str display_name: The name of the billing profile.
306
+ :param Sequence['AzurePlanResponse'] enabled_azure_plans: Information about the enabled azure plans.
307
+ :param 'BillingProfilePropertiesResponseIndirectRelationshipInfo' indirect_relationship_info: Identifies the billing profile that is linked to another billing profile in indirect purchase motion.
308
+ :param bool invoice_email_opt_in: Flag controlling whether the invoices for the billing profile are sent through email.
309
+ :param Sequence[str] invoice_recipients: The list of email addresses to receive invoices by email for the billing profile.
310
+ :param str po_number: The default purchase order number that will appear on the invoices generated for the billing profile.
311
+ :param 'BillingProfilePropertiesResponseShipTo' ship_to: The default address where the products are shipped, or the services are being used. If a ship to is not specified for a product or a subscription, then this address will be used.
312
+ :param 'BillingProfilePropertiesResponseSoldTo' sold_to: The address of the individual or organization that is responsible for the billing account.
313
+ :param Mapping[str, str] tags: Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \\ ? /
314
+ """
315
+ pulumi.set(__self__, "billing_relationship_type", billing_relationship_type)
316
+ pulumi.set(__self__, "currency", currency)
317
+ pulumi.set(__self__, "has_read_access", has_read_access)
318
+ pulumi.set(__self__, "invoice_day", invoice_day)
319
+ pulumi.set(__self__, "other_payment_terms", other_payment_terms)
320
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
321
+ pulumi.set(__self__, "spending_limit", spending_limit)
322
+ pulumi.set(__self__, "spending_limit_details", spending_limit_details)
323
+ pulumi.set(__self__, "status", status)
324
+ pulumi.set(__self__, "status_reason_code", status_reason_code)
325
+ pulumi.set(__self__, "system_id", system_id)
326
+ pulumi.set(__self__, "target_clouds", target_clouds)
327
+ if bill_to is not None:
328
+ pulumi.set(__self__, "bill_to", bill_to)
329
+ if current_payment_term is not None:
330
+ pulumi.set(__self__, "current_payment_term", current_payment_term)
331
+ if display_name is not None:
332
+ pulumi.set(__self__, "display_name", display_name)
333
+ if enabled_azure_plans is not None:
334
+ pulumi.set(__self__, "enabled_azure_plans", enabled_azure_plans)
335
+ if indirect_relationship_info is not None:
336
+ pulumi.set(__self__, "indirect_relationship_info", indirect_relationship_info)
337
+ if invoice_email_opt_in is not None:
338
+ pulumi.set(__self__, "invoice_email_opt_in", invoice_email_opt_in)
339
+ if invoice_recipients is not None:
340
+ pulumi.set(__self__, "invoice_recipients", invoice_recipients)
341
+ if po_number is not None:
342
+ pulumi.set(__self__, "po_number", po_number)
343
+ if ship_to is not None:
344
+ pulumi.set(__self__, "ship_to", ship_to)
345
+ if sold_to is not None:
346
+ pulumi.set(__self__, "sold_to", sold_to)
347
+ if tags is not None:
348
+ pulumi.set(__self__, "tags", tags)
349
+
350
+ @property
351
+ @pulumi.getter(name="billingRelationshipType")
352
+ def billing_relationship_type(self) -> str:
353
+ """
354
+ Identifies the billing relationship represented by the billing profile. The billing relationship may be between Microsoft, the customer, and/or a third-party.
355
+ """
356
+ return pulumi.get(self, "billing_relationship_type")
357
+
358
+ @property
359
+ @pulumi.getter
360
+ def currency(self) -> str:
361
+ """
362
+ The currency in which the charges for the billing profile are billed.
363
+ """
364
+ return pulumi.get(self, "currency")
365
+
366
+ @property
367
+ @pulumi.getter(name="hasReadAccess")
368
+ def has_read_access(self) -> bool:
369
+ """
370
+ Indicates whether user has read access to the billing profile.
371
+ """
372
+ return pulumi.get(self, "has_read_access")
373
+
374
+ @property
375
+ @pulumi.getter(name="invoiceDay")
376
+ def invoice_day(self) -> int:
377
+ """
378
+ The day of the month when the invoice for the billing profile is generated.
379
+ """
380
+ return pulumi.get(self, "invoice_day")
381
+
382
+ @property
383
+ @pulumi.getter(name="otherPaymentTerms")
384
+ def other_payment_terms(self) -> Sequence['outputs.PaymentTermResponse']:
385
+ """
386
+ The other payment terms of the billing profile.
387
+ """
388
+ return pulumi.get(self, "other_payment_terms")
389
+
390
+ @property
391
+ @pulumi.getter(name="provisioningState")
392
+ def provisioning_state(self) -> str:
393
+ """
394
+ The provisioning state of the resource during a long-running operation.
395
+ """
396
+ return pulumi.get(self, "provisioning_state")
397
+
398
+ @property
399
+ @pulumi.getter(name="spendingLimit")
400
+ def spending_limit(self) -> str:
401
+ """
402
+ The billing profile spending limit.
403
+ """
404
+ return pulumi.get(self, "spending_limit")
405
+
406
+ @property
407
+ @pulumi.getter(name="spendingLimitDetails")
408
+ def spending_limit_details(self) -> Sequence['outputs.SpendingLimitDetailsResponse']:
409
+ """
410
+ The details of billing profile spending limit.
411
+ """
412
+ return pulumi.get(self, "spending_limit_details")
413
+
414
+ @property
415
+ @pulumi.getter
416
+ def status(self) -> str:
417
+ """
418
+ The status of the billing profile.
419
+ """
420
+ return pulumi.get(self, "status")
421
+
422
+ @property
423
+ @pulumi.getter(name="statusReasonCode")
424
+ def status_reason_code(self) -> str:
425
+ """
426
+ Reason for the specified billing profile status.
427
+ """
428
+ return pulumi.get(self, "status_reason_code")
429
+
430
+ @property
431
+ @pulumi.getter(name="systemId")
432
+ def system_id(self) -> str:
433
+ """
434
+ The system generated unique identifier for a billing profile.
435
+ """
436
+ return pulumi.get(self, "system_id")
437
+
438
+ @property
439
+ @pulumi.getter(name="targetClouds")
440
+ def target_clouds(self) -> Sequence[str]:
441
+ """
442
+ Identifies the cloud environments that are associated with a billing profile. This is a system managed optional field and gets updated as the billing profile gets associated with accounts in various clouds.
443
+ """
444
+ return pulumi.get(self, "target_clouds")
445
+
446
+ @property
447
+ @pulumi.getter(name="billTo")
448
+ def bill_to(self) -> Optional['outputs.BillingProfilePropertiesResponseBillTo']:
449
+ """
450
+ Billing address.
451
+ """
452
+ return pulumi.get(self, "bill_to")
453
+
454
+ @property
455
+ @pulumi.getter(name="currentPaymentTerm")
456
+ def current_payment_term(self) -> Optional['outputs.BillingProfilePropertiesResponseCurrentPaymentTerm']:
457
+ """
458
+ The current payment term of the billing profile.
459
+ """
460
+ return pulumi.get(self, "current_payment_term")
461
+
462
+ @property
463
+ @pulumi.getter(name="displayName")
464
+ def display_name(self) -> Optional[str]:
465
+ """
466
+ The name of the billing profile.
467
+ """
468
+ return pulumi.get(self, "display_name")
469
+
470
+ @property
471
+ @pulumi.getter(name="enabledAzurePlans")
472
+ def enabled_azure_plans(self) -> Optional[Sequence['outputs.AzurePlanResponse']]:
473
+ """
474
+ Information about the enabled azure plans.
475
+ """
476
+ return pulumi.get(self, "enabled_azure_plans")
477
+
478
+ @property
479
+ @pulumi.getter(name="indirectRelationshipInfo")
480
+ def indirect_relationship_info(self) -> Optional['outputs.BillingProfilePropertiesResponseIndirectRelationshipInfo']:
481
+ """
482
+ Identifies the billing profile that is linked to another billing profile in indirect purchase motion.
483
+ """
484
+ return pulumi.get(self, "indirect_relationship_info")
485
+
486
+ @property
487
+ @pulumi.getter(name="invoiceEmailOptIn")
488
+ def invoice_email_opt_in(self) -> Optional[bool]:
489
+ """
490
+ Flag controlling whether the invoices for the billing profile are sent through email.
491
+ """
492
+ return pulumi.get(self, "invoice_email_opt_in")
493
+
494
+ @property
495
+ @pulumi.getter(name="invoiceRecipients")
496
+ def invoice_recipients(self) -> Optional[Sequence[str]]:
497
+ """
498
+ The list of email addresses to receive invoices by email for the billing profile.
499
+ """
500
+ return pulumi.get(self, "invoice_recipients")
501
+
502
+ @property
503
+ @pulumi.getter(name="poNumber")
504
+ def po_number(self) -> Optional[str]:
505
+ """
506
+ The default purchase order number that will appear on the invoices generated for the billing profile.
507
+ """
508
+ return pulumi.get(self, "po_number")
509
+
510
+ @property
511
+ @pulumi.getter(name="shipTo")
512
+ def ship_to(self) -> Optional['outputs.BillingProfilePropertiesResponseShipTo']:
513
+ """
514
+ The default address where the products are shipped, or the services are being used. If a ship to is not specified for a product or a subscription, then this address will be used.
515
+ """
516
+ return pulumi.get(self, "ship_to")
517
+
518
+ @property
519
+ @pulumi.getter(name="soldTo")
520
+ def sold_to(self) -> Optional['outputs.BillingProfilePropertiesResponseSoldTo']:
521
+ """
522
+ The address of the individual or organization that is responsible for the billing account.
523
+ """
524
+ return pulumi.get(self, "sold_to")
525
+
526
+ @property
527
+ @pulumi.getter
528
+ def tags(self) -> Optional[Mapping[str, str]]:
529
+ """
530
+ Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \\ ? /
531
+ """
532
+ return pulumi.get(self, "tags")
533
+
534
+
535
+ @pulumi.output_type
536
+ class BillingProfilePropertiesResponseBillTo(dict):
537
+ """
538
+ Billing address.
539
+ """
540
+ @staticmethod
541
+ def __key_warning(key: str):
542
+ suggest = None
543
+ if key == "addressLine1":
544
+ suggest = "address_line1"
545
+ elif key == "addressLine2":
546
+ suggest = "address_line2"
547
+ elif key == "addressLine3":
548
+ suggest = "address_line3"
549
+ elif key == "companyName":
550
+ suggest = "company_name"
551
+ elif key == "firstName":
552
+ suggest = "first_name"
553
+ elif key == "isValidAddress":
554
+ suggest = "is_valid_address"
555
+ elif key == "lastName":
556
+ suggest = "last_name"
557
+ elif key == "middleName":
558
+ suggest = "middle_name"
559
+ elif key == "phoneNumber":
560
+ suggest = "phone_number"
561
+ elif key == "postalCode":
562
+ suggest = "postal_code"
563
+
564
+ if suggest:
565
+ pulumi.log.warn(f"Key '{key}' not found in BillingProfilePropertiesResponseBillTo. Access the value via the '{suggest}' property getter instead.")
566
+
567
+ def __getitem__(self, key: str) -> Any:
568
+ BillingProfilePropertiesResponseBillTo.__key_warning(key)
569
+ return super().__getitem__(key)
570
+
571
+ def get(self, key: str, default = None) -> Any:
572
+ BillingProfilePropertiesResponseBillTo.__key_warning(key)
573
+ return super().get(key, default)
574
+
575
+ def __init__(__self__, *,
576
+ address_line1: str,
577
+ country: str,
578
+ address_line2: Optional[str] = None,
579
+ address_line3: Optional[str] = None,
580
+ city: Optional[str] = None,
581
+ company_name: Optional[str] = None,
582
+ district: Optional[str] = None,
583
+ email: Optional[str] = None,
584
+ first_name: Optional[str] = None,
585
+ is_valid_address: Optional[bool] = None,
586
+ last_name: Optional[str] = None,
587
+ middle_name: Optional[str] = None,
588
+ phone_number: Optional[str] = None,
589
+ postal_code: Optional[str] = None,
590
+ region: Optional[str] = None):
591
+ """
592
+ Billing address.
593
+ :param str address_line1: Address line 1.
594
+ :param str country: Country code uses ISO 3166-1 Alpha-2 format.
595
+ :param str address_line2: Address line 2.
596
+ :param str address_line3: Address line 3.
597
+ :param str city: Address city.
598
+ :param str company_name: Company name. Optional for MCA Individual (Pay-as-you-go).
599
+ :param str district: Address district.
600
+ :param str email: Email address.
601
+ :param str first_name: First name. Optional for MCA Enterprise.
602
+ :param bool is_valid_address: Indicates if the address is incomplete.
603
+ :param str last_name: Last name. Optional for MCA Enterprise.
604
+ :param str middle_name: Middle name.
605
+ :param str phone_number: Phone number.
606
+ :param str postal_code: Postal code.
607
+ :param str region: Address region.
608
+ """
609
+ pulumi.set(__self__, "address_line1", address_line1)
610
+ pulumi.set(__self__, "country", country)
611
+ if address_line2 is not None:
612
+ pulumi.set(__self__, "address_line2", address_line2)
613
+ if address_line3 is not None:
614
+ pulumi.set(__self__, "address_line3", address_line3)
615
+ if city is not None:
616
+ pulumi.set(__self__, "city", city)
617
+ if company_name is not None:
618
+ pulumi.set(__self__, "company_name", company_name)
619
+ if district is not None:
620
+ pulumi.set(__self__, "district", district)
621
+ if email is not None:
622
+ pulumi.set(__self__, "email", email)
623
+ if first_name is not None:
624
+ pulumi.set(__self__, "first_name", first_name)
625
+ if is_valid_address is not None:
626
+ pulumi.set(__self__, "is_valid_address", is_valid_address)
627
+ if last_name is not None:
628
+ pulumi.set(__self__, "last_name", last_name)
629
+ if middle_name is not None:
630
+ pulumi.set(__self__, "middle_name", middle_name)
631
+ if phone_number is not None:
632
+ pulumi.set(__self__, "phone_number", phone_number)
633
+ if postal_code is not None:
634
+ pulumi.set(__self__, "postal_code", postal_code)
635
+ if region is not None:
636
+ pulumi.set(__self__, "region", region)
637
+
638
+ @property
639
+ @pulumi.getter(name="addressLine1")
640
+ def address_line1(self) -> str:
641
+ """
642
+ Address line 1.
643
+ """
644
+ return pulumi.get(self, "address_line1")
645
+
646
+ @property
647
+ @pulumi.getter
648
+ def country(self) -> str:
649
+ """
650
+ Country code uses ISO 3166-1 Alpha-2 format.
651
+ """
652
+ return pulumi.get(self, "country")
653
+
654
+ @property
655
+ @pulumi.getter(name="addressLine2")
656
+ def address_line2(self) -> Optional[str]:
657
+ """
658
+ Address line 2.
659
+ """
660
+ return pulumi.get(self, "address_line2")
661
+
662
+ @property
663
+ @pulumi.getter(name="addressLine3")
664
+ def address_line3(self) -> Optional[str]:
665
+ """
666
+ Address line 3.
667
+ """
668
+ return pulumi.get(self, "address_line3")
669
+
670
+ @property
671
+ @pulumi.getter
672
+ def city(self) -> Optional[str]:
673
+ """
674
+ Address city.
675
+ """
676
+ return pulumi.get(self, "city")
677
+
678
+ @property
679
+ @pulumi.getter(name="companyName")
680
+ def company_name(self) -> Optional[str]:
681
+ """
682
+ Company name. Optional for MCA Individual (Pay-as-you-go).
683
+ """
684
+ return pulumi.get(self, "company_name")
685
+
686
+ @property
687
+ @pulumi.getter
688
+ def district(self) -> Optional[str]:
689
+ """
690
+ Address district.
691
+ """
692
+ return pulumi.get(self, "district")
693
+
694
+ @property
695
+ @pulumi.getter
696
+ def email(self) -> Optional[str]:
697
+ """
698
+ Email address.
699
+ """
700
+ return pulumi.get(self, "email")
701
+
702
+ @property
703
+ @pulumi.getter(name="firstName")
704
+ def first_name(self) -> Optional[str]:
705
+ """
706
+ First name. Optional for MCA Enterprise.
707
+ """
708
+ return pulumi.get(self, "first_name")
709
+
710
+ @property
711
+ @pulumi.getter(name="isValidAddress")
712
+ def is_valid_address(self) -> Optional[bool]:
713
+ """
714
+ Indicates if the address is incomplete.
715
+ """
716
+ return pulumi.get(self, "is_valid_address")
717
+
718
+ @property
719
+ @pulumi.getter(name="lastName")
720
+ def last_name(self) -> Optional[str]:
721
+ """
722
+ Last name. Optional for MCA Enterprise.
723
+ """
724
+ return pulumi.get(self, "last_name")
725
+
726
+ @property
727
+ @pulumi.getter(name="middleName")
728
+ def middle_name(self) -> Optional[str]:
729
+ """
730
+ Middle name.
731
+ """
732
+ return pulumi.get(self, "middle_name")
733
+
734
+ @property
735
+ @pulumi.getter(name="phoneNumber")
736
+ def phone_number(self) -> Optional[str]:
737
+ """
738
+ Phone number.
739
+ """
740
+ return pulumi.get(self, "phone_number")
741
+
742
+ @property
743
+ @pulumi.getter(name="postalCode")
744
+ def postal_code(self) -> Optional[str]:
745
+ """
746
+ Postal code.
747
+ """
748
+ return pulumi.get(self, "postal_code")
749
+
750
+ @property
751
+ @pulumi.getter
752
+ def region(self) -> Optional[str]:
753
+ """
754
+ Address region.
755
+ """
756
+ return pulumi.get(self, "region")
757
+
758
+
759
+ @pulumi.output_type
760
+ class BillingProfilePropertiesResponseCurrentPaymentTerm(dict):
761
+ """
762
+ The current payment term of the billing profile.
763
+ """
764
+ @staticmethod
765
+ def __key_warning(key: str):
766
+ suggest = None
767
+ if key == "isDefault":
768
+ suggest = "is_default"
769
+ elif key == "endDate":
770
+ suggest = "end_date"
771
+ elif key == "startDate":
772
+ suggest = "start_date"
773
+
774
+ if suggest:
775
+ pulumi.log.warn(f"Key '{key}' not found in BillingProfilePropertiesResponseCurrentPaymentTerm. Access the value via the '{suggest}' property getter instead.")
776
+
777
+ def __getitem__(self, key: str) -> Any:
778
+ BillingProfilePropertiesResponseCurrentPaymentTerm.__key_warning(key)
779
+ return super().__getitem__(key)
780
+
781
+ def get(self, key: str, default = None) -> Any:
782
+ BillingProfilePropertiesResponseCurrentPaymentTerm.__key_warning(key)
783
+ return super().get(key, default)
784
+
785
+ def __init__(__self__, *,
786
+ is_default: bool,
787
+ end_date: Optional[str] = None,
788
+ start_date: Optional[str] = None,
789
+ term: Optional[str] = None):
790
+ """
791
+ The current payment term of the billing profile.
792
+ :param bool is_default: Indicates payment term is the standard payment term.
793
+ :param str end_date: The date on when the defined 'Payment Term' will end and is always in UTC.
794
+ :param str start_date: The date on when the defined 'Payment Term' will be effective from and is always in UTC.
795
+ :param str term: Represents duration in netXX format. Always in days.
796
+ """
797
+ pulumi.set(__self__, "is_default", is_default)
798
+ if end_date is not None:
799
+ pulumi.set(__self__, "end_date", end_date)
800
+ if start_date is not None:
801
+ pulumi.set(__self__, "start_date", start_date)
802
+ if term is not None:
803
+ pulumi.set(__self__, "term", term)
804
+
805
+ @property
806
+ @pulumi.getter(name="isDefault")
807
+ def is_default(self) -> bool:
808
+ """
809
+ Indicates payment term is the standard payment term.
810
+ """
811
+ return pulumi.get(self, "is_default")
812
+
813
+ @property
814
+ @pulumi.getter(name="endDate")
815
+ def end_date(self) -> Optional[str]:
816
+ """
817
+ The date on when the defined 'Payment Term' will end and is always in UTC.
818
+ """
819
+ return pulumi.get(self, "end_date")
820
+
821
+ @property
822
+ @pulumi.getter(name="startDate")
823
+ def start_date(self) -> Optional[str]:
824
+ """
825
+ The date on when the defined 'Payment Term' will be effective from and is always in UTC.
826
+ """
827
+ return pulumi.get(self, "start_date")
828
+
829
+ @property
830
+ @pulumi.getter
831
+ def term(self) -> Optional[str]:
832
+ """
833
+ Represents duration in netXX format. Always in days.
834
+ """
835
+ return pulumi.get(self, "term")
836
+
837
+
838
+ @pulumi.output_type
839
+ class BillingProfilePropertiesResponseIndirectRelationshipInfo(dict):
840
+ """
841
+ Identifies the billing profile that is linked to another billing profile in indirect purchase motion.
842
+ """
843
+ @staticmethod
844
+ def __key_warning(key: str):
845
+ suggest = None
846
+ if key == "billingAccountName":
847
+ suggest = "billing_account_name"
848
+ elif key == "billingProfileName":
849
+ suggest = "billing_profile_name"
850
+ elif key == "displayName":
851
+ suggest = "display_name"
852
+
853
+ if suggest:
854
+ pulumi.log.warn(f"Key '{key}' not found in BillingProfilePropertiesResponseIndirectRelationshipInfo. Access the value via the '{suggest}' property getter instead.")
855
+
856
+ def __getitem__(self, key: str) -> Any:
857
+ BillingProfilePropertiesResponseIndirectRelationshipInfo.__key_warning(key)
858
+ return super().__getitem__(key)
859
+
860
+ def get(self, key: str, default = None) -> Any:
861
+ BillingProfilePropertiesResponseIndirectRelationshipInfo.__key_warning(key)
862
+ return super().get(key, default)
863
+
864
+ def __init__(__self__, *,
865
+ billing_account_name: Optional[str] = None,
866
+ billing_profile_name: Optional[str] = None,
867
+ display_name: Optional[str] = None):
868
+ """
869
+ Identifies the billing profile that is linked to another billing profile in indirect purchase motion.
870
+ :param str billing_account_name: The billing account name of the partner or the customer for an indirect motion.
871
+ :param str billing_profile_name: The billing profile name of the partner or the customer for an indirect motion.
872
+ :param str display_name: The display name of the partner or customer for an indirect motion.
873
+ """
874
+ if billing_account_name is not None:
875
+ pulumi.set(__self__, "billing_account_name", billing_account_name)
876
+ if billing_profile_name is not None:
877
+ pulumi.set(__self__, "billing_profile_name", billing_profile_name)
878
+ if display_name is not None:
879
+ pulumi.set(__self__, "display_name", display_name)
880
+
881
+ @property
882
+ @pulumi.getter(name="billingAccountName")
883
+ def billing_account_name(self) -> Optional[str]:
884
+ """
885
+ The billing account name of the partner or the customer for an indirect motion.
886
+ """
887
+ return pulumi.get(self, "billing_account_name")
888
+
889
+ @property
890
+ @pulumi.getter(name="billingProfileName")
891
+ def billing_profile_name(self) -> Optional[str]:
892
+ """
893
+ The billing profile name of the partner or the customer for an indirect motion.
894
+ """
895
+ return pulumi.get(self, "billing_profile_name")
896
+
897
+ @property
898
+ @pulumi.getter(name="displayName")
899
+ def display_name(self) -> Optional[str]:
900
+ """
901
+ The display name of the partner or customer for an indirect motion.
902
+ """
903
+ return pulumi.get(self, "display_name")
904
+
905
+
906
+ @pulumi.output_type
907
+ class BillingProfilePropertiesResponseShipTo(dict):
908
+ """
909
+ The default address where the products are shipped, or the services are being used. If a ship to is not specified for a product or a subscription, then this address will be used.
910
+ """
911
+ @staticmethod
912
+ def __key_warning(key: str):
913
+ suggest = None
914
+ if key == "addressLine1":
915
+ suggest = "address_line1"
916
+ elif key == "addressLine2":
917
+ suggest = "address_line2"
918
+ elif key == "addressLine3":
919
+ suggest = "address_line3"
920
+ elif key == "companyName":
921
+ suggest = "company_name"
922
+ elif key == "firstName":
923
+ suggest = "first_name"
924
+ elif key == "isValidAddress":
925
+ suggest = "is_valid_address"
926
+ elif key == "lastName":
927
+ suggest = "last_name"
928
+ elif key == "middleName":
929
+ suggest = "middle_name"
930
+ elif key == "phoneNumber":
931
+ suggest = "phone_number"
932
+ elif key == "postalCode":
933
+ suggest = "postal_code"
934
+
935
+ if suggest:
936
+ pulumi.log.warn(f"Key '{key}' not found in BillingProfilePropertiesResponseShipTo. Access the value via the '{suggest}' property getter instead.")
937
+
938
+ def __getitem__(self, key: str) -> Any:
939
+ BillingProfilePropertiesResponseShipTo.__key_warning(key)
940
+ return super().__getitem__(key)
941
+
942
+ def get(self, key: str, default = None) -> Any:
943
+ BillingProfilePropertiesResponseShipTo.__key_warning(key)
944
+ return super().get(key, default)
945
+
946
+ def __init__(__self__, *,
947
+ address_line1: str,
948
+ country: str,
949
+ address_line2: Optional[str] = None,
950
+ address_line3: Optional[str] = None,
951
+ city: Optional[str] = None,
952
+ company_name: Optional[str] = None,
953
+ district: Optional[str] = None,
954
+ email: Optional[str] = None,
955
+ first_name: Optional[str] = None,
956
+ is_valid_address: Optional[bool] = None,
957
+ last_name: Optional[str] = None,
958
+ middle_name: Optional[str] = None,
959
+ phone_number: Optional[str] = None,
960
+ postal_code: Optional[str] = None,
961
+ region: Optional[str] = None):
962
+ """
963
+ The default address where the products are shipped, or the services are being used. If a ship to is not specified for a product or a subscription, then this address will be used.
964
+ :param str address_line1: Address line 1.
965
+ :param str country: Country code uses ISO 3166-1 Alpha-2 format.
966
+ :param str address_line2: Address line 2.
967
+ :param str address_line3: Address line 3.
968
+ :param str city: Address city.
969
+ :param str company_name: Company name. Optional for MCA Individual (Pay-as-you-go).
970
+ :param str district: Address district.
971
+ :param str email: Email address.
972
+ :param str first_name: First name. Optional for MCA Enterprise.
973
+ :param bool is_valid_address: Indicates if the address is incomplete.
974
+ :param str last_name: Last name. Optional for MCA Enterprise.
975
+ :param str middle_name: Middle name.
976
+ :param str phone_number: Phone number.
977
+ :param str postal_code: Postal code.
978
+ :param str region: Address region.
979
+ """
980
+ pulumi.set(__self__, "address_line1", address_line1)
981
+ pulumi.set(__self__, "country", country)
982
+ if address_line2 is not None:
983
+ pulumi.set(__self__, "address_line2", address_line2)
984
+ if address_line3 is not None:
985
+ pulumi.set(__self__, "address_line3", address_line3)
986
+ if city is not None:
987
+ pulumi.set(__self__, "city", city)
988
+ if company_name is not None:
989
+ pulumi.set(__self__, "company_name", company_name)
990
+ if district is not None:
991
+ pulumi.set(__self__, "district", district)
992
+ if email is not None:
993
+ pulumi.set(__self__, "email", email)
994
+ if first_name is not None:
995
+ pulumi.set(__self__, "first_name", first_name)
996
+ if is_valid_address is not None:
997
+ pulumi.set(__self__, "is_valid_address", is_valid_address)
998
+ if last_name is not None:
999
+ pulumi.set(__self__, "last_name", last_name)
1000
+ if middle_name is not None:
1001
+ pulumi.set(__self__, "middle_name", middle_name)
1002
+ if phone_number is not None:
1003
+ pulumi.set(__self__, "phone_number", phone_number)
1004
+ if postal_code is not None:
1005
+ pulumi.set(__self__, "postal_code", postal_code)
1006
+ if region is not None:
1007
+ pulumi.set(__self__, "region", region)
1008
+
1009
+ @property
1010
+ @pulumi.getter(name="addressLine1")
1011
+ def address_line1(self) -> str:
1012
+ """
1013
+ Address line 1.
1014
+ """
1015
+ return pulumi.get(self, "address_line1")
1016
+
1017
+ @property
1018
+ @pulumi.getter
1019
+ def country(self) -> str:
1020
+ """
1021
+ Country code uses ISO 3166-1 Alpha-2 format.
1022
+ """
1023
+ return pulumi.get(self, "country")
1024
+
1025
+ @property
1026
+ @pulumi.getter(name="addressLine2")
1027
+ def address_line2(self) -> Optional[str]:
1028
+ """
1029
+ Address line 2.
1030
+ """
1031
+ return pulumi.get(self, "address_line2")
1032
+
1033
+ @property
1034
+ @pulumi.getter(name="addressLine3")
1035
+ def address_line3(self) -> Optional[str]:
1036
+ """
1037
+ Address line 3.
1038
+ """
1039
+ return pulumi.get(self, "address_line3")
1040
+
1041
+ @property
1042
+ @pulumi.getter
1043
+ def city(self) -> Optional[str]:
1044
+ """
1045
+ Address city.
1046
+ """
1047
+ return pulumi.get(self, "city")
1048
+
1049
+ @property
1050
+ @pulumi.getter(name="companyName")
1051
+ def company_name(self) -> Optional[str]:
1052
+ """
1053
+ Company name. Optional for MCA Individual (Pay-as-you-go).
1054
+ """
1055
+ return pulumi.get(self, "company_name")
1056
+
1057
+ @property
1058
+ @pulumi.getter
1059
+ def district(self) -> Optional[str]:
1060
+ """
1061
+ Address district.
1062
+ """
1063
+ return pulumi.get(self, "district")
1064
+
1065
+ @property
1066
+ @pulumi.getter
1067
+ def email(self) -> Optional[str]:
1068
+ """
1069
+ Email address.
1070
+ """
1071
+ return pulumi.get(self, "email")
1072
+
1073
+ @property
1074
+ @pulumi.getter(name="firstName")
1075
+ def first_name(self) -> Optional[str]:
1076
+ """
1077
+ First name. Optional for MCA Enterprise.
1078
+ """
1079
+ return pulumi.get(self, "first_name")
1080
+
1081
+ @property
1082
+ @pulumi.getter(name="isValidAddress")
1083
+ def is_valid_address(self) -> Optional[bool]:
1084
+ """
1085
+ Indicates if the address is incomplete.
1086
+ """
1087
+ return pulumi.get(self, "is_valid_address")
1088
+
1089
+ @property
1090
+ @pulumi.getter(name="lastName")
1091
+ def last_name(self) -> Optional[str]:
1092
+ """
1093
+ Last name. Optional for MCA Enterprise.
1094
+ """
1095
+ return pulumi.get(self, "last_name")
1096
+
1097
+ @property
1098
+ @pulumi.getter(name="middleName")
1099
+ def middle_name(self) -> Optional[str]:
1100
+ """
1101
+ Middle name.
1102
+ """
1103
+ return pulumi.get(self, "middle_name")
1104
+
1105
+ @property
1106
+ @pulumi.getter(name="phoneNumber")
1107
+ def phone_number(self) -> Optional[str]:
1108
+ """
1109
+ Phone number.
1110
+ """
1111
+ return pulumi.get(self, "phone_number")
1112
+
1113
+ @property
1114
+ @pulumi.getter(name="postalCode")
1115
+ def postal_code(self) -> Optional[str]:
1116
+ """
1117
+ Postal code.
1118
+ """
1119
+ return pulumi.get(self, "postal_code")
1120
+
1121
+ @property
1122
+ @pulumi.getter
1123
+ def region(self) -> Optional[str]:
1124
+ """
1125
+ Address region.
1126
+ """
1127
+ return pulumi.get(self, "region")
1128
+
1129
+
1130
+ @pulumi.output_type
1131
+ class BillingProfilePropertiesResponseSoldTo(dict):
1132
+ """
1133
+ The address of the individual or organization that is responsible for the billing account.
22
1134
  """
1135
+ @staticmethod
1136
+ def __key_warning(key: str):
1137
+ suggest = None
1138
+ if key == "addressLine1":
1139
+ suggest = "address_line1"
1140
+ elif key == "addressLine2":
1141
+ suggest = "address_line2"
1142
+ elif key == "addressLine3":
1143
+ suggest = "address_line3"
1144
+ elif key == "companyName":
1145
+ suggest = "company_name"
1146
+ elif key == "firstName":
1147
+ suggest = "first_name"
1148
+ elif key == "isValidAddress":
1149
+ suggest = "is_valid_address"
1150
+ elif key == "lastName":
1151
+ suggest = "last_name"
1152
+ elif key == "middleName":
1153
+ suggest = "middle_name"
1154
+ elif key == "phoneNumber":
1155
+ suggest = "phone_number"
1156
+ elif key == "postalCode":
1157
+ suggest = "postal_code"
1158
+
1159
+ if suggest:
1160
+ pulumi.log.warn(f"Key '{key}' not found in BillingProfilePropertiesResponseSoldTo. Access the value via the '{suggest}' property getter instead.")
1161
+
1162
+ def __getitem__(self, key: str) -> Any:
1163
+ BillingProfilePropertiesResponseSoldTo.__key_warning(key)
1164
+ return super().__getitem__(key)
1165
+
1166
+ def get(self, key: str, default = None) -> Any:
1167
+ BillingProfilePropertiesResponseSoldTo.__key_warning(key)
1168
+ return super().get(key, default)
1169
+
23
1170
  def __init__(__self__, *,
24
- sku_description: str,
25
- sku_id: Optional[str] = None):
1171
+ address_line1: str,
1172
+ country: str,
1173
+ address_line2: Optional[str] = None,
1174
+ address_line3: Optional[str] = None,
1175
+ city: Optional[str] = None,
1176
+ company_name: Optional[str] = None,
1177
+ district: Optional[str] = None,
1178
+ email: Optional[str] = None,
1179
+ first_name: Optional[str] = None,
1180
+ is_valid_address: Optional[bool] = None,
1181
+ last_name: Optional[str] = None,
1182
+ middle_name: Optional[str] = None,
1183
+ phone_number: Optional[str] = None,
1184
+ postal_code: Optional[str] = None,
1185
+ region: Optional[str] = None):
26
1186
  """
27
- Details of the Azure plan.
28
- :param str sku_description: The sku description.
29
- :param str sku_id: The sku id.
1187
+ The address of the individual or organization that is responsible for the billing account.
1188
+ :param str address_line1: Address line 1.
1189
+ :param str country: Country code uses ISO 3166-1 Alpha-2 format.
1190
+ :param str address_line2: Address line 2.
1191
+ :param str address_line3: Address line 3.
1192
+ :param str city: Address city.
1193
+ :param str company_name: Company name. Optional for MCA Individual (Pay-as-you-go).
1194
+ :param str district: Address district.
1195
+ :param str email: Email address.
1196
+ :param str first_name: First name. Optional for MCA Enterprise.
1197
+ :param bool is_valid_address: Indicates if the address is incomplete.
1198
+ :param str last_name: Last name. Optional for MCA Enterprise.
1199
+ :param str middle_name: Middle name.
1200
+ :param str phone_number: Phone number.
1201
+ :param str postal_code: Postal code.
1202
+ :param str region: Address region.
30
1203
  """
31
- pulumi.set(__self__, "sku_description", sku_description)
32
- if sku_id is not None:
33
- pulumi.set(__self__, "sku_id", sku_id)
1204
+ pulumi.set(__self__, "address_line1", address_line1)
1205
+ pulumi.set(__self__, "country", country)
1206
+ if address_line2 is not None:
1207
+ pulumi.set(__self__, "address_line2", address_line2)
1208
+ if address_line3 is not None:
1209
+ pulumi.set(__self__, "address_line3", address_line3)
1210
+ if city is not None:
1211
+ pulumi.set(__self__, "city", city)
1212
+ if company_name is not None:
1213
+ pulumi.set(__self__, "company_name", company_name)
1214
+ if district is not None:
1215
+ pulumi.set(__self__, "district", district)
1216
+ if email is not None:
1217
+ pulumi.set(__self__, "email", email)
1218
+ if first_name is not None:
1219
+ pulumi.set(__self__, "first_name", first_name)
1220
+ if is_valid_address is not None:
1221
+ pulumi.set(__self__, "is_valid_address", is_valid_address)
1222
+ if last_name is not None:
1223
+ pulumi.set(__self__, "last_name", last_name)
1224
+ if middle_name is not None:
1225
+ pulumi.set(__self__, "middle_name", middle_name)
1226
+ if phone_number is not None:
1227
+ pulumi.set(__self__, "phone_number", phone_number)
1228
+ if postal_code is not None:
1229
+ pulumi.set(__self__, "postal_code", postal_code)
1230
+ if region is not None:
1231
+ pulumi.set(__self__, "region", region)
34
1232
 
35
1233
  @property
36
- @pulumi.getter(name="skuDescription")
37
- def sku_description(self) -> str:
1234
+ @pulumi.getter(name="addressLine1")
1235
+ def address_line1(self) -> str:
38
1236
  """
39
- The sku description.
1237
+ Address line 1.
40
1238
  """
41
- return pulumi.get(self, "sku_description")
1239
+ return pulumi.get(self, "address_line1")
42
1240
 
43
1241
  @property
44
- @pulumi.getter(name="skuId")
45
- def sku_id(self) -> Optional[str]:
1242
+ @pulumi.getter
1243
+ def country(self) -> str:
46
1244
  """
47
- The sku id.
1245
+ Country code uses ISO 3166-1 Alpha-2 format.
48
1246
  """
49
- return pulumi.get(self, "sku_id")
1247
+ return pulumi.get(self, "country")
1248
+
1249
+ @property
1250
+ @pulumi.getter(name="addressLine2")
1251
+ def address_line2(self) -> Optional[str]:
1252
+ """
1253
+ Address line 2.
1254
+ """
1255
+ return pulumi.get(self, "address_line2")
1256
+
1257
+ @property
1258
+ @pulumi.getter(name="addressLine3")
1259
+ def address_line3(self) -> Optional[str]:
1260
+ """
1261
+ Address line 3.
1262
+ """
1263
+ return pulumi.get(self, "address_line3")
1264
+
1265
+ @property
1266
+ @pulumi.getter
1267
+ def city(self) -> Optional[str]:
1268
+ """
1269
+ Address city.
1270
+ """
1271
+ return pulumi.get(self, "city")
1272
+
1273
+ @property
1274
+ @pulumi.getter(name="companyName")
1275
+ def company_name(self) -> Optional[str]:
1276
+ """
1277
+ Company name. Optional for MCA Individual (Pay-as-you-go).
1278
+ """
1279
+ return pulumi.get(self, "company_name")
1280
+
1281
+ @property
1282
+ @pulumi.getter
1283
+ def district(self) -> Optional[str]:
1284
+ """
1285
+ Address district.
1286
+ """
1287
+ return pulumi.get(self, "district")
1288
+
1289
+ @property
1290
+ @pulumi.getter
1291
+ def email(self) -> Optional[str]:
1292
+ """
1293
+ Email address.
1294
+ """
1295
+ return pulumi.get(self, "email")
1296
+
1297
+ @property
1298
+ @pulumi.getter(name="firstName")
1299
+ def first_name(self) -> Optional[str]:
1300
+ """
1301
+ First name. Optional for MCA Enterprise.
1302
+ """
1303
+ return pulumi.get(self, "first_name")
1304
+
1305
+ @property
1306
+ @pulumi.getter(name="isValidAddress")
1307
+ def is_valid_address(self) -> Optional[bool]:
1308
+ """
1309
+ Indicates if the address is incomplete.
1310
+ """
1311
+ return pulumi.get(self, "is_valid_address")
1312
+
1313
+ @property
1314
+ @pulumi.getter(name="lastName")
1315
+ def last_name(self) -> Optional[str]:
1316
+ """
1317
+ Last name. Optional for MCA Enterprise.
1318
+ """
1319
+ return pulumi.get(self, "last_name")
1320
+
1321
+ @property
1322
+ @pulumi.getter(name="middleName")
1323
+ def middle_name(self) -> Optional[str]:
1324
+ """
1325
+ Middle name.
1326
+ """
1327
+ return pulumi.get(self, "middle_name")
1328
+
1329
+ @property
1330
+ @pulumi.getter(name="phoneNumber")
1331
+ def phone_number(self) -> Optional[str]:
1332
+ """
1333
+ Phone number.
1334
+ """
1335
+ return pulumi.get(self, "phone_number")
1336
+
1337
+ @property
1338
+ @pulumi.getter(name="postalCode")
1339
+ def postal_code(self) -> Optional[str]:
1340
+ """
1341
+ Postal code.
1342
+ """
1343
+ return pulumi.get(self, "postal_code")
1344
+
1345
+ @property
1346
+ @pulumi.getter
1347
+ def region(self) -> Optional[str]:
1348
+ """
1349
+ Address region.
1350
+ """
1351
+ return pulumi.get(self, "region")
1352
+
1353
+
1354
+ @pulumi.output_type
1355
+ class InvoiceSectionPropertiesResponse(dict):
1356
+ """
1357
+ An invoice section.
1358
+ """
1359
+ @staticmethod
1360
+ def __key_warning(key: str):
1361
+ suggest = None
1362
+ if key == "provisioningState":
1363
+ suggest = "provisioning_state"
1364
+ elif key == "systemId":
1365
+ suggest = "system_id"
1366
+ elif key == "displayName":
1367
+ suggest = "display_name"
1368
+ elif key == "reasonCode":
1369
+ suggest = "reason_code"
1370
+ elif key == "targetCloud":
1371
+ suggest = "target_cloud"
1372
+
1373
+ if suggest:
1374
+ pulumi.log.warn(f"Key '{key}' not found in InvoiceSectionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1375
+
1376
+ def __getitem__(self, key: str) -> Any:
1377
+ InvoiceSectionPropertiesResponse.__key_warning(key)
1378
+ return super().__getitem__(key)
1379
+
1380
+ def get(self, key: str, default = None) -> Any:
1381
+ InvoiceSectionPropertiesResponse.__key_warning(key)
1382
+ return super().get(key, default)
1383
+
1384
+ def __init__(__self__, *,
1385
+ provisioning_state: str,
1386
+ system_id: str,
1387
+ display_name: Optional[str] = None,
1388
+ reason_code: Optional[str] = None,
1389
+ state: Optional[str] = None,
1390
+ tags: Optional[Mapping[str, str]] = None,
1391
+ target_cloud: Optional[str] = None):
1392
+ """
1393
+ An invoice section.
1394
+ :param str provisioning_state: The provisioning state of the resource during a long-running operation.
1395
+ :param str system_id: The system generated unique identifier for an invoice section.
1396
+ :param str display_name: The name of the invoice section.
1397
+ :param str reason_code: Reason for the specified invoice section status.
1398
+ :param str state: Identifies the status of an invoice section.
1399
+ :param Mapping[str, str] tags: Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \\ ? /
1400
+ :param str target_cloud: Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
1401
+ """
1402
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
1403
+ pulumi.set(__self__, "system_id", system_id)
1404
+ if display_name is not None:
1405
+ pulumi.set(__self__, "display_name", display_name)
1406
+ if reason_code is not None:
1407
+ pulumi.set(__self__, "reason_code", reason_code)
1408
+ if state is not None:
1409
+ pulumi.set(__self__, "state", state)
1410
+ if tags is not None:
1411
+ pulumi.set(__self__, "tags", tags)
1412
+ if target_cloud is not None:
1413
+ pulumi.set(__self__, "target_cloud", target_cloud)
1414
+
1415
+ @property
1416
+ @pulumi.getter(name="provisioningState")
1417
+ def provisioning_state(self) -> str:
1418
+ """
1419
+ The provisioning state of the resource during a long-running operation.
1420
+ """
1421
+ return pulumi.get(self, "provisioning_state")
1422
+
1423
+ @property
1424
+ @pulumi.getter(name="systemId")
1425
+ def system_id(self) -> str:
1426
+ """
1427
+ The system generated unique identifier for an invoice section.
1428
+ """
1429
+ return pulumi.get(self, "system_id")
1430
+
1431
+ @property
1432
+ @pulumi.getter(name="displayName")
1433
+ def display_name(self) -> Optional[str]:
1434
+ """
1435
+ The name of the invoice section.
1436
+ """
1437
+ return pulumi.get(self, "display_name")
1438
+
1439
+ @property
1440
+ @pulumi.getter(name="reasonCode")
1441
+ def reason_code(self) -> Optional[str]:
1442
+ """
1443
+ Reason for the specified invoice section status.
1444
+ """
1445
+ return pulumi.get(self, "reason_code")
1446
+
1447
+ @property
1448
+ @pulumi.getter
1449
+ def state(self) -> Optional[str]:
1450
+ """
1451
+ Identifies the status of an invoice section.
1452
+ """
1453
+ return pulumi.get(self, "state")
1454
+
1455
+ @property
1456
+ @pulumi.getter
1457
+ def tags(self) -> Optional[Mapping[str, str]]:
1458
+ """
1459
+ Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \\ ? /
1460
+ """
1461
+ return pulumi.get(self, "tags")
1462
+
1463
+ @property
1464
+ @pulumi.getter(name="targetCloud")
1465
+ def target_cloud(self) -> Optional[str]:
1466
+ """
1467
+ Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
1468
+ """
1469
+ return pulumi.get(self, "target_cloud")
50
1470
 
51
1471
 
52
1472
  @pulumi.output_type
@@ -171,3 +1591,294 @@ class InvoiceSectionWithCreateSubPermissionResponse(dict):
171
1591
  return pulumi.get(self, "enabled_azure_plans")
172
1592
 
173
1593
 
1594
+ @pulumi.output_type
1595
+ class PaymentTermResponse(dict):
1596
+ """
1597
+ The properties of payment term.
1598
+ """
1599
+ @staticmethod
1600
+ def __key_warning(key: str):
1601
+ suggest = None
1602
+ if key == "isDefault":
1603
+ suggest = "is_default"
1604
+ elif key == "endDate":
1605
+ suggest = "end_date"
1606
+ elif key == "startDate":
1607
+ suggest = "start_date"
1608
+
1609
+ if suggest:
1610
+ pulumi.log.warn(f"Key '{key}' not found in PaymentTermResponse. Access the value via the '{suggest}' property getter instead.")
1611
+
1612
+ def __getitem__(self, key: str) -> Any:
1613
+ PaymentTermResponse.__key_warning(key)
1614
+ return super().__getitem__(key)
1615
+
1616
+ def get(self, key: str, default = None) -> Any:
1617
+ PaymentTermResponse.__key_warning(key)
1618
+ return super().get(key, default)
1619
+
1620
+ def __init__(__self__, *,
1621
+ is_default: bool,
1622
+ end_date: Optional[str] = None,
1623
+ start_date: Optional[str] = None,
1624
+ term: Optional[str] = None):
1625
+ """
1626
+ The properties of payment term.
1627
+ :param bool is_default: Indicates payment term is the standard payment term.
1628
+ :param str end_date: The date on when the defined 'Payment Term' will end and is always in UTC.
1629
+ :param str start_date: The date on when the defined 'Payment Term' will be effective from and is always in UTC.
1630
+ :param str term: Represents duration in netXX format. Always in days.
1631
+ """
1632
+ pulumi.set(__self__, "is_default", is_default)
1633
+ if end_date is not None:
1634
+ pulumi.set(__self__, "end_date", end_date)
1635
+ if start_date is not None:
1636
+ pulumi.set(__self__, "start_date", start_date)
1637
+ if term is not None:
1638
+ pulumi.set(__self__, "term", term)
1639
+
1640
+ @property
1641
+ @pulumi.getter(name="isDefault")
1642
+ def is_default(self) -> bool:
1643
+ """
1644
+ Indicates payment term is the standard payment term.
1645
+ """
1646
+ return pulumi.get(self, "is_default")
1647
+
1648
+ @property
1649
+ @pulumi.getter(name="endDate")
1650
+ def end_date(self) -> Optional[str]:
1651
+ """
1652
+ The date on when the defined 'Payment Term' will end and is always in UTC.
1653
+ """
1654
+ return pulumi.get(self, "end_date")
1655
+
1656
+ @property
1657
+ @pulumi.getter(name="startDate")
1658
+ def start_date(self) -> Optional[str]:
1659
+ """
1660
+ The date on when the defined 'Payment Term' will be effective from and is always in UTC.
1661
+ """
1662
+ return pulumi.get(self, "start_date")
1663
+
1664
+ @property
1665
+ @pulumi.getter
1666
+ def term(self) -> Optional[str]:
1667
+ """
1668
+ Represents duration in netXX format. Always in days.
1669
+ """
1670
+ return pulumi.get(self, "term")
1671
+
1672
+
1673
+ @pulumi.output_type
1674
+ class SpendingLimitDetailsResponse(dict):
1675
+ """
1676
+ The billing profile spending limit.
1677
+ """
1678
+ @staticmethod
1679
+ def __key_warning(key: str):
1680
+ suggest = None
1681
+ if key == "endDate":
1682
+ suggest = "end_date"
1683
+ elif key == "startDate":
1684
+ suggest = "start_date"
1685
+
1686
+ if suggest:
1687
+ pulumi.log.warn(f"Key '{key}' not found in SpendingLimitDetailsResponse. Access the value via the '{suggest}' property getter instead.")
1688
+
1689
+ def __getitem__(self, key: str) -> Any:
1690
+ SpendingLimitDetailsResponse.__key_warning(key)
1691
+ return super().__getitem__(key)
1692
+
1693
+ def get(self, key: str, default = None) -> Any:
1694
+ SpendingLimitDetailsResponse.__key_warning(key)
1695
+ return super().get(key, default)
1696
+
1697
+ def __init__(__self__, *,
1698
+ amount: Optional[float] = None,
1699
+ currency: Optional[str] = None,
1700
+ end_date: Optional[str] = None,
1701
+ start_date: Optional[str] = None,
1702
+ status: Optional[str] = None,
1703
+ type: Optional[str] = None):
1704
+ """
1705
+ The billing profile spending limit.
1706
+ :param float amount: The initial amount for the billing profile.
1707
+ :param str currency: The currency in which the charges for the billing profile are billed.
1708
+ :param str end_date: The date when this spending limit is no longer in effect.
1709
+ :param str start_date: The date when this spending limit goes into effect.
1710
+ :param str status: The status of current spending limit.
1711
+ :param str type: The type of spending limit.
1712
+ """
1713
+ if amount is not None:
1714
+ pulumi.set(__self__, "amount", amount)
1715
+ if currency is not None:
1716
+ pulumi.set(__self__, "currency", currency)
1717
+ if end_date is not None:
1718
+ pulumi.set(__self__, "end_date", end_date)
1719
+ if start_date is not None:
1720
+ pulumi.set(__self__, "start_date", start_date)
1721
+ if status is not None:
1722
+ pulumi.set(__self__, "status", status)
1723
+ if type is not None:
1724
+ pulumi.set(__self__, "type", type)
1725
+
1726
+ @property
1727
+ @pulumi.getter
1728
+ def amount(self) -> Optional[float]:
1729
+ """
1730
+ The initial amount for the billing profile.
1731
+ """
1732
+ return pulumi.get(self, "amount")
1733
+
1734
+ @property
1735
+ @pulumi.getter
1736
+ def currency(self) -> Optional[str]:
1737
+ """
1738
+ The currency in which the charges for the billing profile are billed.
1739
+ """
1740
+ return pulumi.get(self, "currency")
1741
+
1742
+ @property
1743
+ @pulumi.getter(name="endDate")
1744
+ def end_date(self) -> Optional[str]:
1745
+ """
1746
+ The date when this spending limit is no longer in effect.
1747
+ """
1748
+ return pulumi.get(self, "end_date")
1749
+
1750
+ @property
1751
+ @pulumi.getter(name="startDate")
1752
+ def start_date(self) -> Optional[str]:
1753
+ """
1754
+ The date when this spending limit goes into effect.
1755
+ """
1756
+ return pulumi.get(self, "start_date")
1757
+
1758
+ @property
1759
+ @pulumi.getter
1760
+ def status(self) -> Optional[str]:
1761
+ """
1762
+ The status of current spending limit.
1763
+ """
1764
+ return pulumi.get(self, "status")
1765
+
1766
+ @property
1767
+ @pulumi.getter
1768
+ def type(self) -> Optional[str]:
1769
+ """
1770
+ The type of spending limit.
1771
+ """
1772
+ return pulumi.get(self, "type")
1773
+
1774
+
1775
+ @pulumi.output_type
1776
+ class SystemDataResponse(dict):
1777
+ """
1778
+ Metadata pertaining to creation and last modification of the resource.
1779
+ """
1780
+ @staticmethod
1781
+ def __key_warning(key: str):
1782
+ suggest = None
1783
+ if key == "createdAt":
1784
+ suggest = "created_at"
1785
+ elif key == "createdBy":
1786
+ suggest = "created_by"
1787
+ elif key == "createdByType":
1788
+ suggest = "created_by_type"
1789
+ elif key == "lastModifiedAt":
1790
+ suggest = "last_modified_at"
1791
+ elif key == "lastModifiedBy":
1792
+ suggest = "last_modified_by"
1793
+ elif key == "lastModifiedByType":
1794
+ suggest = "last_modified_by_type"
1795
+
1796
+ if suggest:
1797
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
1798
+
1799
+ def __getitem__(self, key: str) -> Any:
1800
+ SystemDataResponse.__key_warning(key)
1801
+ return super().__getitem__(key)
1802
+
1803
+ def get(self, key: str, default = None) -> Any:
1804
+ SystemDataResponse.__key_warning(key)
1805
+ return super().get(key, default)
1806
+
1807
+ def __init__(__self__, *,
1808
+ created_at: Optional[str] = None,
1809
+ created_by: Optional[str] = None,
1810
+ created_by_type: Optional[str] = None,
1811
+ last_modified_at: Optional[str] = None,
1812
+ last_modified_by: Optional[str] = None,
1813
+ last_modified_by_type: Optional[str] = None):
1814
+ """
1815
+ Metadata pertaining to creation and last modification of the resource.
1816
+ :param str created_at: The timestamp of resource creation (UTC).
1817
+ :param str created_by: The identity that created the resource.
1818
+ :param str created_by_type: The type of identity that created the resource.
1819
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
1820
+ :param str last_modified_by: The identity that last modified the resource.
1821
+ :param str last_modified_by_type: The type of identity that last modified the resource.
1822
+ """
1823
+ if created_at is not None:
1824
+ pulumi.set(__self__, "created_at", created_at)
1825
+ if created_by is not None:
1826
+ pulumi.set(__self__, "created_by", created_by)
1827
+ if created_by_type is not None:
1828
+ pulumi.set(__self__, "created_by_type", created_by_type)
1829
+ if last_modified_at is not None:
1830
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
1831
+ if last_modified_by is not None:
1832
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
1833
+ if last_modified_by_type is not None:
1834
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
1835
+
1836
+ @property
1837
+ @pulumi.getter(name="createdAt")
1838
+ def created_at(self) -> Optional[str]:
1839
+ """
1840
+ The timestamp of resource creation (UTC).
1841
+ """
1842
+ return pulumi.get(self, "created_at")
1843
+
1844
+ @property
1845
+ @pulumi.getter(name="createdBy")
1846
+ def created_by(self) -> Optional[str]:
1847
+ """
1848
+ The identity that created the resource.
1849
+ """
1850
+ return pulumi.get(self, "created_by")
1851
+
1852
+ @property
1853
+ @pulumi.getter(name="createdByType")
1854
+ def created_by_type(self) -> Optional[str]:
1855
+ """
1856
+ The type of identity that created the resource.
1857
+ """
1858
+ return pulumi.get(self, "created_by_type")
1859
+
1860
+ @property
1861
+ @pulumi.getter(name="lastModifiedAt")
1862
+ def last_modified_at(self) -> Optional[str]:
1863
+ """
1864
+ The timestamp of resource last modification (UTC)
1865
+ """
1866
+ return pulumi.get(self, "last_modified_at")
1867
+
1868
+ @property
1869
+ @pulumi.getter(name="lastModifiedBy")
1870
+ def last_modified_by(self) -> Optional[str]:
1871
+ """
1872
+ The identity that last modified the resource.
1873
+ """
1874
+ return pulumi.get(self, "last_modified_by")
1875
+
1876
+ @property
1877
+ @pulumi.getter(name="lastModifiedByType")
1878
+ def last_modified_by_type(self) -> Optional[str]:
1879
+ """
1880
+ The type of identity that last modified the resource.
1881
+ """
1882
+ return pulumi.get(self, "last_modified_by_type")
1883
+
1884
+