pulumi-azure-native 2.47.0a1719232402__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.0a1719232402.dist-info → pulumi_azure_native-2.48.0.dist-info}/METADATA +1 -1
  293. {pulumi_azure_native-2.47.0a1719232402.dist-info → pulumi_azure_native-2.48.0.dist-info}/RECORD +295 -180
  294. {pulumi_azure_native-2.47.0a1719232402.dist-info → pulumi_azure_native-2.48.0.dist-info}/WHEEL +1 -1
  295. {pulumi_azure_native-2.47.0a1719232402.dist-info → pulumi_azure_native-2.48.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,2305 @@
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 pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+ from ._enums import *
13
+
14
+ __all__ = [
15
+ 'AssociatedTenantPropertiesResponse',
16
+ 'AzurePlanResponse',
17
+ 'BillingProfilePropertiesResponse',
18
+ 'BillingProfilePropertiesResponseBillTo',
19
+ 'BillingProfilePropertiesResponseCurrentPaymentTerm',
20
+ 'BillingProfilePropertiesResponseIndirectRelationshipInfo',
21
+ 'BillingProfilePropertiesResponseShipTo',
22
+ 'BillingProfilePropertiesResponseSoldTo',
23
+ 'BillingRoleAssignmentPropertiesResponse',
24
+ 'InvoiceSectionPropertiesResponse',
25
+ 'InvoiceSectionWithCreateSubPermissionResponse',
26
+ 'PaymentTermResponse',
27
+ 'SpendingLimitDetailsResponse',
28
+ 'SystemDataResponse',
29
+ ]
30
+
31
+ @pulumi.output_type
32
+ class AssociatedTenantPropertiesResponse(dict):
33
+ """
34
+ An associated tenant.
35
+ """
36
+ @staticmethod
37
+ def __key_warning(key: str):
38
+ suggest = None
39
+ if key == "provisioningBillingRequestId":
40
+ suggest = "provisioning_billing_request_id"
41
+ elif key == "provisioningState":
42
+ suggest = "provisioning_state"
43
+ elif key == "billingManagementState":
44
+ suggest = "billing_management_state"
45
+ elif key == "displayName":
46
+ suggest = "display_name"
47
+ elif key == "provisioningManagementState":
48
+ suggest = "provisioning_management_state"
49
+ elif key == "tenantId":
50
+ suggest = "tenant_id"
51
+
52
+ if suggest:
53
+ pulumi.log.warn(f"Key '{key}' not found in AssociatedTenantPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
54
+
55
+ def __getitem__(self, key: str) -> Any:
56
+ AssociatedTenantPropertiesResponse.__key_warning(key)
57
+ return super().__getitem__(key)
58
+
59
+ def get(self, key: str, default = None) -> Any:
60
+ AssociatedTenantPropertiesResponse.__key_warning(key)
61
+ return super().get(key, default)
62
+
63
+ def __init__(__self__, *,
64
+ provisioning_billing_request_id: str,
65
+ provisioning_state: str,
66
+ billing_management_state: Optional[str] = None,
67
+ display_name: Optional[str] = None,
68
+ provisioning_management_state: Optional[str] = None,
69
+ tenant_id: Optional[str] = None):
70
+ """
71
+ An associated tenant.
72
+ :param str provisioning_billing_request_id: The unique identifier for the billing request that is created when enabling provisioning for an associated tenant.
73
+ :param str provisioning_state: The provisioning state of the resource during a long-running operation.
74
+ :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.
75
+ :param str display_name: The name of the associated tenant.
76
+ :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.
77
+ :param str tenant_id: The ID that uniquely identifies a tenant.
78
+ """
79
+ pulumi.set(__self__, "provisioning_billing_request_id", provisioning_billing_request_id)
80
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
81
+ if billing_management_state is not None:
82
+ pulumi.set(__self__, "billing_management_state", billing_management_state)
83
+ if display_name is not None:
84
+ pulumi.set(__self__, "display_name", display_name)
85
+ if provisioning_management_state is not None:
86
+ pulumi.set(__self__, "provisioning_management_state", provisioning_management_state)
87
+ if tenant_id is not None:
88
+ pulumi.set(__self__, "tenant_id", tenant_id)
89
+
90
+ @property
91
+ @pulumi.getter(name="provisioningBillingRequestId")
92
+ def provisioning_billing_request_id(self) -> str:
93
+ """
94
+ The unique identifier for the billing request that is created when enabling provisioning for an associated tenant.
95
+ """
96
+ return pulumi.get(self, "provisioning_billing_request_id")
97
+
98
+ @property
99
+ @pulumi.getter(name="provisioningState")
100
+ def provisioning_state(self) -> str:
101
+ """
102
+ The provisioning state of the resource during a long-running operation.
103
+ """
104
+ return pulumi.get(self, "provisioning_state")
105
+
106
+ @property
107
+ @pulumi.getter(name="billingManagementState")
108
+ def billing_management_state(self) -> Optional[str]:
109
+ """
110
+ 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.
111
+ """
112
+ return pulumi.get(self, "billing_management_state")
113
+
114
+ @property
115
+ @pulumi.getter(name="displayName")
116
+ def display_name(self) -> Optional[str]:
117
+ """
118
+ The name of the associated tenant.
119
+ """
120
+ return pulumi.get(self, "display_name")
121
+
122
+ @property
123
+ @pulumi.getter(name="provisioningManagementState")
124
+ def provisioning_management_state(self) -> Optional[str]:
125
+ """
126
+ 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.
127
+ """
128
+ return pulumi.get(self, "provisioning_management_state")
129
+
130
+ @property
131
+ @pulumi.getter(name="tenantId")
132
+ def tenant_id(self) -> Optional[str]:
133
+ """
134
+ The ID that uniquely identifies a tenant.
135
+ """
136
+ return pulumi.get(self, "tenant_id")
137
+
138
+
139
+ @pulumi.output_type
140
+ class AzurePlanResponse(dict):
141
+ """
142
+ Details of the Azure plan.
143
+ """
144
+ @staticmethod
145
+ def __key_warning(key: str):
146
+ suggest = None
147
+ if key == "productId":
148
+ suggest = "product_id"
149
+ elif key == "skuDescription":
150
+ suggest = "sku_description"
151
+ elif key == "skuId":
152
+ suggest = "sku_id"
153
+
154
+ if suggest:
155
+ pulumi.log.warn(f"Key '{key}' not found in AzurePlanResponse. Access the value via the '{suggest}' property getter instead.")
156
+
157
+ def __getitem__(self, key: str) -> Any:
158
+ AzurePlanResponse.__key_warning(key)
159
+ return super().__getitem__(key)
160
+
161
+ def get(self, key: str, default = None) -> Any:
162
+ AzurePlanResponse.__key_warning(key)
163
+ return super().get(key, default)
164
+
165
+ def __init__(__self__, *,
166
+ product_id: Optional[str] = None,
167
+ sku_description: Optional[str] = None,
168
+ sku_id: Optional[str] = None):
169
+ """
170
+ Details of the Azure plan.
171
+ :param str product_id: The ID that uniquely identifies a product.
172
+ :param str sku_description: The sku description.
173
+ :param str sku_id: The ID that uniquely identifies a sku.
174
+ """
175
+ if product_id is not None:
176
+ pulumi.set(__self__, "product_id", product_id)
177
+ if sku_description is not None:
178
+ pulumi.set(__self__, "sku_description", sku_description)
179
+ if sku_id is not None:
180
+ pulumi.set(__self__, "sku_id", sku_id)
181
+
182
+ @property
183
+ @pulumi.getter(name="productId")
184
+ def product_id(self) -> Optional[str]:
185
+ """
186
+ The ID that uniquely identifies a product.
187
+ """
188
+ return pulumi.get(self, "product_id")
189
+
190
+ @property
191
+ @pulumi.getter(name="skuDescription")
192
+ def sku_description(self) -> Optional[str]:
193
+ """
194
+ The sku description.
195
+ """
196
+ return pulumi.get(self, "sku_description")
197
+
198
+ @property
199
+ @pulumi.getter(name="skuId")
200
+ def sku_id(self) -> Optional[str]:
201
+ """
202
+ The ID that uniquely identifies a sku.
203
+ """
204
+ return pulumi.get(self, "sku_id")
205
+
206
+
207
+ @pulumi.output_type
208
+ class BillingProfilePropertiesResponse(dict):
209
+ """
210
+ A billing profile.
211
+ """
212
+ @staticmethod
213
+ def __key_warning(key: str):
214
+ suggest = None
215
+ if key == "billingRelationshipType":
216
+ suggest = "billing_relationship_type"
217
+ elif key == "hasReadAccess":
218
+ suggest = "has_read_access"
219
+ elif key == "invoiceDay":
220
+ suggest = "invoice_day"
221
+ elif key == "otherPaymentTerms":
222
+ suggest = "other_payment_terms"
223
+ elif key == "provisioningState":
224
+ suggest = "provisioning_state"
225
+ elif key == "spendingLimit":
226
+ suggest = "spending_limit"
227
+ elif key == "spendingLimitDetails":
228
+ suggest = "spending_limit_details"
229
+ elif key == "statusReasonCode":
230
+ suggest = "status_reason_code"
231
+ elif key == "systemId":
232
+ suggest = "system_id"
233
+ elif key == "targetClouds":
234
+ suggest = "target_clouds"
235
+ elif key == "billTo":
236
+ suggest = "bill_to"
237
+ elif key == "currentPaymentTerm":
238
+ suggest = "current_payment_term"
239
+ elif key == "displayName":
240
+ suggest = "display_name"
241
+ elif key == "enabledAzurePlans":
242
+ suggest = "enabled_azure_plans"
243
+ elif key == "indirectRelationshipInfo":
244
+ suggest = "indirect_relationship_info"
245
+ elif key == "invoiceEmailOptIn":
246
+ suggest = "invoice_email_opt_in"
247
+ elif key == "invoiceRecipients":
248
+ suggest = "invoice_recipients"
249
+ elif key == "poNumber":
250
+ suggest = "po_number"
251
+ elif key == "shipTo":
252
+ suggest = "ship_to"
253
+ elif key == "soldTo":
254
+ suggest = "sold_to"
255
+
256
+ if suggest:
257
+ pulumi.log.warn(f"Key '{key}' not found in BillingProfilePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
258
+
259
+ def __getitem__(self, key: str) -> Any:
260
+ BillingProfilePropertiesResponse.__key_warning(key)
261
+ return super().__getitem__(key)
262
+
263
+ def get(self, key: str, default = None) -> Any:
264
+ BillingProfilePropertiesResponse.__key_warning(key)
265
+ return super().get(key, default)
266
+
267
+ def __init__(__self__, *,
268
+ billing_relationship_type: str,
269
+ currency: str,
270
+ has_read_access: bool,
271
+ invoice_day: int,
272
+ other_payment_terms: Sequence['outputs.PaymentTermResponse'],
273
+ provisioning_state: str,
274
+ spending_limit: str,
275
+ spending_limit_details: Sequence['outputs.SpendingLimitDetailsResponse'],
276
+ status: str,
277
+ status_reason_code: str,
278
+ system_id: str,
279
+ target_clouds: Sequence[str],
280
+ bill_to: Optional['outputs.BillingProfilePropertiesResponseBillTo'] = None,
281
+ current_payment_term: Optional['outputs.BillingProfilePropertiesResponseCurrentPaymentTerm'] = None,
282
+ display_name: Optional[str] = None,
283
+ enabled_azure_plans: Optional[Sequence['outputs.AzurePlanResponse']] = None,
284
+ indirect_relationship_info: Optional['outputs.BillingProfilePropertiesResponseIndirectRelationshipInfo'] = None,
285
+ invoice_email_opt_in: Optional[bool] = None,
286
+ invoice_recipients: Optional[Sequence[str]] = None,
287
+ po_number: Optional[str] = None,
288
+ ship_to: Optional['outputs.BillingProfilePropertiesResponseShipTo'] = None,
289
+ sold_to: Optional['outputs.BillingProfilePropertiesResponseSoldTo'] = None,
290
+ tags: Optional[Mapping[str, str]] = None):
291
+ """
292
+ A billing profile.
293
+ :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.
294
+ :param str currency: The currency in which the charges for the billing profile are billed.
295
+ :param bool has_read_access: Indicates whether user has read access to the billing profile.
296
+ :param int invoice_day: The day of the month when the invoice for the billing profile is generated.
297
+ :param Sequence['PaymentTermResponse'] other_payment_terms: The other payment terms of the billing profile.
298
+ :param str provisioning_state: The provisioning state of the resource during a long-running operation.
299
+ :param str spending_limit: The billing profile spending limit.
300
+ :param Sequence['SpendingLimitDetailsResponse'] spending_limit_details: The details of billing profile spending limit.
301
+ :param str status: The status of the billing profile.
302
+ :param str status_reason_code: Reason for the specified billing profile status.
303
+ :param str system_id: The system generated unique identifier for a billing profile.
304
+ :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.
305
+ :param 'BillingProfilePropertiesResponseBillTo' bill_to: Billing address.
306
+ :param 'BillingProfilePropertiesResponseCurrentPaymentTerm' current_payment_term: The current payment term of the billing profile.
307
+ :param str display_name: The name of the billing profile.
308
+ :param Sequence['AzurePlanResponse'] enabled_azure_plans: Information about the enabled azure plans.
309
+ :param 'BillingProfilePropertiesResponseIndirectRelationshipInfo' indirect_relationship_info: Identifies the billing profile that is linked to another billing profile in indirect purchase motion.
310
+ :param bool invoice_email_opt_in: Flag controlling whether the invoices for the billing profile are sent through email.
311
+ :param Sequence[str] invoice_recipients: The list of email addresses to receive invoices by email for the billing profile.
312
+ :param str po_number: The default purchase order number that will appear on the invoices generated for the billing profile.
313
+ :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.
314
+ :param 'BillingProfilePropertiesResponseSoldTo' sold_to: The address of the individual or organization that is responsible for the billing account.
315
+ :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 < > % & \\ ? /
316
+ """
317
+ pulumi.set(__self__, "billing_relationship_type", billing_relationship_type)
318
+ pulumi.set(__self__, "currency", currency)
319
+ pulumi.set(__self__, "has_read_access", has_read_access)
320
+ pulumi.set(__self__, "invoice_day", invoice_day)
321
+ pulumi.set(__self__, "other_payment_terms", other_payment_terms)
322
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
323
+ pulumi.set(__self__, "spending_limit", spending_limit)
324
+ pulumi.set(__self__, "spending_limit_details", spending_limit_details)
325
+ pulumi.set(__self__, "status", status)
326
+ pulumi.set(__self__, "status_reason_code", status_reason_code)
327
+ pulumi.set(__self__, "system_id", system_id)
328
+ pulumi.set(__self__, "target_clouds", target_clouds)
329
+ if bill_to is not None:
330
+ pulumi.set(__self__, "bill_to", bill_to)
331
+ if current_payment_term is not None:
332
+ pulumi.set(__self__, "current_payment_term", current_payment_term)
333
+ if display_name is not None:
334
+ pulumi.set(__self__, "display_name", display_name)
335
+ if enabled_azure_plans is not None:
336
+ pulumi.set(__self__, "enabled_azure_plans", enabled_azure_plans)
337
+ if indirect_relationship_info is not None:
338
+ pulumi.set(__self__, "indirect_relationship_info", indirect_relationship_info)
339
+ if invoice_email_opt_in is not None:
340
+ pulumi.set(__self__, "invoice_email_opt_in", invoice_email_opt_in)
341
+ if invoice_recipients is not None:
342
+ pulumi.set(__self__, "invoice_recipients", invoice_recipients)
343
+ if po_number is not None:
344
+ pulumi.set(__self__, "po_number", po_number)
345
+ if ship_to is not None:
346
+ pulumi.set(__self__, "ship_to", ship_to)
347
+ if sold_to is not None:
348
+ pulumi.set(__self__, "sold_to", sold_to)
349
+ if tags is not None:
350
+ pulumi.set(__self__, "tags", tags)
351
+
352
+ @property
353
+ @pulumi.getter(name="billingRelationshipType")
354
+ def billing_relationship_type(self) -> str:
355
+ """
356
+ Identifies the billing relationship represented by the billing profile. The billing relationship may be between Microsoft, the customer, and/or a third-party.
357
+ """
358
+ return pulumi.get(self, "billing_relationship_type")
359
+
360
+ @property
361
+ @pulumi.getter
362
+ def currency(self) -> str:
363
+ """
364
+ The currency in which the charges for the billing profile are billed.
365
+ """
366
+ return pulumi.get(self, "currency")
367
+
368
+ @property
369
+ @pulumi.getter(name="hasReadAccess")
370
+ def has_read_access(self) -> bool:
371
+ """
372
+ Indicates whether user has read access to the billing profile.
373
+ """
374
+ return pulumi.get(self, "has_read_access")
375
+
376
+ @property
377
+ @pulumi.getter(name="invoiceDay")
378
+ def invoice_day(self) -> int:
379
+ """
380
+ The day of the month when the invoice for the billing profile is generated.
381
+ """
382
+ return pulumi.get(self, "invoice_day")
383
+
384
+ @property
385
+ @pulumi.getter(name="otherPaymentTerms")
386
+ def other_payment_terms(self) -> Sequence['outputs.PaymentTermResponse']:
387
+ """
388
+ The other payment terms of the billing profile.
389
+ """
390
+ return pulumi.get(self, "other_payment_terms")
391
+
392
+ @property
393
+ @pulumi.getter(name="provisioningState")
394
+ def provisioning_state(self) -> str:
395
+ """
396
+ The provisioning state of the resource during a long-running operation.
397
+ """
398
+ return pulumi.get(self, "provisioning_state")
399
+
400
+ @property
401
+ @pulumi.getter(name="spendingLimit")
402
+ def spending_limit(self) -> str:
403
+ """
404
+ The billing profile spending limit.
405
+ """
406
+ return pulumi.get(self, "spending_limit")
407
+
408
+ @property
409
+ @pulumi.getter(name="spendingLimitDetails")
410
+ def spending_limit_details(self) -> Sequence['outputs.SpendingLimitDetailsResponse']:
411
+ """
412
+ The details of billing profile spending limit.
413
+ """
414
+ return pulumi.get(self, "spending_limit_details")
415
+
416
+ @property
417
+ @pulumi.getter
418
+ def status(self) -> str:
419
+ """
420
+ The status of the billing profile.
421
+ """
422
+ return pulumi.get(self, "status")
423
+
424
+ @property
425
+ @pulumi.getter(name="statusReasonCode")
426
+ def status_reason_code(self) -> str:
427
+ """
428
+ Reason for the specified billing profile status.
429
+ """
430
+ return pulumi.get(self, "status_reason_code")
431
+
432
+ @property
433
+ @pulumi.getter(name="systemId")
434
+ def system_id(self) -> str:
435
+ """
436
+ The system generated unique identifier for a billing profile.
437
+ """
438
+ return pulumi.get(self, "system_id")
439
+
440
+ @property
441
+ @pulumi.getter(name="targetClouds")
442
+ def target_clouds(self) -> Sequence[str]:
443
+ """
444
+ 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.
445
+ """
446
+ return pulumi.get(self, "target_clouds")
447
+
448
+ @property
449
+ @pulumi.getter(name="billTo")
450
+ def bill_to(self) -> Optional['outputs.BillingProfilePropertiesResponseBillTo']:
451
+ """
452
+ Billing address.
453
+ """
454
+ return pulumi.get(self, "bill_to")
455
+
456
+ @property
457
+ @pulumi.getter(name="currentPaymentTerm")
458
+ def current_payment_term(self) -> Optional['outputs.BillingProfilePropertiesResponseCurrentPaymentTerm']:
459
+ """
460
+ The current payment term of the billing profile.
461
+ """
462
+ return pulumi.get(self, "current_payment_term")
463
+
464
+ @property
465
+ @pulumi.getter(name="displayName")
466
+ def display_name(self) -> Optional[str]:
467
+ """
468
+ The name of the billing profile.
469
+ """
470
+ return pulumi.get(self, "display_name")
471
+
472
+ @property
473
+ @pulumi.getter(name="enabledAzurePlans")
474
+ def enabled_azure_plans(self) -> Optional[Sequence['outputs.AzurePlanResponse']]:
475
+ """
476
+ Information about the enabled azure plans.
477
+ """
478
+ return pulumi.get(self, "enabled_azure_plans")
479
+
480
+ @property
481
+ @pulumi.getter(name="indirectRelationshipInfo")
482
+ def indirect_relationship_info(self) -> Optional['outputs.BillingProfilePropertiesResponseIndirectRelationshipInfo']:
483
+ """
484
+ Identifies the billing profile that is linked to another billing profile in indirect purchase motion.
485
+ """
486
+ return pulumi.get(self, "indirect_relationship_info")
487
+
488
+ @property
489
+ @pulumi.getter(name="invoiceEmailOptIn")
490
+ def invoice_email_opt_in(self) -> Optional[bool]:
491
+ """
492
+ Flag controlling whether the invoices for the billing profile are sent through email.
493
+ """
494
+ return pulumi.get(self, "invoice_email_opt_in")
495
+
496
+ @property
497
+ @pulumi.getter(name="invoiceRecipients")
498
+ def invoice_recipients(self) -> Optional[Sequence[str]]:
499
+ """
500
+ The list of email addresses to receive invoices by email for the billing profile.
501
+ """
502
+ return pulumi.get(self, "invoice_recipients")
503
+
504
+ @property
505
+ @pulumi.getter(name="poNumber")
506
+ def po_number(self) -> Optional[str]:
507
+ """
508
+ The default purchase order number that will appear on the invoices generated for the billing profile.
509
+ """
510
+ return pulumi.get(self, "po_number")
511
+
512
+ @property
513
+ @pulumi.getter(name="shipTo")
514
+ def ship_to(self) -> Optional['outputs.BillingProfilePropertiesResponseShipTo']:
515
+ """
516
+ 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.
517
+ """
518
+ return pulumi.get(self, "ship_to")
519
+
520
+ @property
521
+ @pulumi.getter(name="soldTo")
522
+ def sold_to(self) -> Optional['outputs.BillingProfilePropertiesResponseSoldTo']:
523
+ """
524
+ The address of the individual or organization that is responsible for the billing account.
525
+ """
526
+ return pulumi.get(self, "sold_to")
527
+
528
+ @property
529
+ @pulumi.getter
530
+ def tags(self) -> Optional[Mapping[str, str]]:
531
+ """
532
+ 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 < > % & \\ ? /
533
+ """
534
+ return pulumi.get(self, "tags")
535
+
536
+
537
+ @pulumi.output_type
538
+ class BillingProfilePropertiesResponseBillTo(dict):
539
+ """
540
+ Billing address.
541
+ """
542
+ @staticmethod
543
+ def __key_warning(key: str):
544
+ suggest = None
545
+ if key == "addressLine1":
546
+ suggest = "address_line1"
547
+ elif key == "addressLine2":
548
+ suggest = "address_line2"
549
+ elif key == "addressLine3":
550
+ suggest = "address_line3"
551
+ elif key == "companyName":
552
+ suggest = "company_name"
553
+ elif key == "firstName":
554
+ suggest = "first_name"
555
+ elif key == "isValidAddress":
556
+ suggest = "is_valid_address"
557
+ elif key == "lastName":
558
+ suggest = "last_name"
559
+ elif key == "middleName":
560
+ suggest = "middle_name"
561
+ elif key == "phoneNumber":
562
+ suggest = "phone_number"
563
+ elif key == "postalCode":
564
+ suggest = "postal_code"
565
+
566
+ if suggest:
567
+ pulumi.log.warn(f"Key '{key}' not found in BillingProfilePropertiesResponseBillTo. Access the value via the '{suggest}' property getter instead.")
568
+
569
+ def __getitem__(self, key: str) -> Any:
570
+ BillingProfilePropertiesResponseBillTo.__key_warning(key)
571
+ return super().__getitem__(key)
572
+
573
+ def get(self, key: str, default = None) -> Any:
574
+ BillingProfilePropertiesResponseBillTo.__key_warning(key)
575
+ return super().get(key, default)
576
+
577
+ def __init__(__self__, *,
578
+ address_line1: str,
579
+ country: str,
580
+ address_line2: Optional[str] = None,
581
+ address_line3: Optional[str] = None,
582
+ city: Optional[str] = None,
583
+ company_name: Optional[str] = None,
584
+ district: Optional[str] = None,
585
+ email: Optional[str] = None,
586
+ first_name: Optional[str] = None,
587
+ is_valid_address: Optional[bool] = None,
588
+ last_name: Optional[str] = None,
589
+ middle_name: Optional[str] = None,
590
+ phone_number: Optional[str] = None,
591
+ postal_code: Optional[str] = None,
592
+ region: Optional[str] = None):
593
+ """
594
+ Billing address.
595
+ :param str address_line1: Address line 1.
596
+ :param str country: Country code uses ISO 3166-1 Alpha-2 format.
597
+ :param str address_line2: Address line 2.
598
+ :param str address_line3: Address line 3.
599
+ :param str city: Address city.
600
+ :param str company_name: Company name. Optional for MCA Individual (Pay-as-you-go).
601
+ :param str district: Address district.
602
+ :param str email: Email address.
603
+ :param str first_name: First name. Optional for MCA Enterprise.
604
+ :param bool is_valid_address: Indicates if the address is incomplete.
605
+ :param str last_name: Last name. Optional for MCA Enterprise.
606
+ :param str middle_name: Middle name.
607
+ :param str phone_number: Phone number.
608
+ :param str postal_code: Postal code.
609
+ :param str region: Address region.
610
+ """
611
+ pulumi.set(__self__, "address_line1", address_line1)
612
+ pulumi.set(__self__, "country", country)
613
+ if address_line2 is not None:
614
+ pulumi.set(__self__, "address_line2", address_line2)
615
+ if address_line3 is not None:
616
+ pulumi.set(__self__, "address_line3", address_line3)
617
+ if city is not None:
618
+ pulumi.set(__self__, "city", city)
619
+ if company_name is not None:
620
+ pulumi.set(__self__, "company_name", company_name)
621
+ if district is not None:
622
+ pulumi.set(__self__, "district", district)
623
+ if email is not None:
624
+ pulumi.set(__self__, "email", email)
625
+ if first_name is not None:
626
+ pulumi.set(__self__, "first_name", first_name)
627
+ if is_valid_address is not None:
628
+ pulumi.set(__self__, "is_valid_address", is_valid_address)
629
+ if last_name is not None:
630
+ pulumi.set(__self__, "last_name", last_name)
631
+ if middle_name is not None:
632
+ pulumi.set(__self__, "middle_name", middle_name)
633
+ if phone_number is not None:
634
+ pulumi.set(__self__, "phone_number", phone_number)
635
+ if postal_code is not None:
636
+ pulumi.set(__self__, "postal_code", postal_code)
637
+ if region is not None:
638
+ pulumi.set(__self__, "region", region)
639
+
640
+ @property
641
+ @pulumi.getter(name="addressLine1")
642
+ def address_line1(self) -> str:
643
+ """
644
+ Address line 1.
645
+ """
646
+ return pulumi.get(self, "address_line1")
647
+
648
+ @property
649
+ @pulumi.getter
650
+ def country(self) -> str:
651
+ """
652
+ Country code uses ISO 3166-1 Alpha-2 format.
653
+ """
654
+ return pulumi.get(self, "country")
655
+
656
+ @property
657
+ @pulumi.getter(name="addressLine2")
658
+ def address_line2(self) -> Optional[str]:
659
+ """
660
+ Address line 2.
661
+ """
662
+ return pulumi.get(self, "address_line2")
663
+
664
+ @property
665
+ @pulumi.getter(name="addressLine3")
666
+ def address_line3(self) -> Optional[str]:
667
+ """
668
+ Address line 3.
669
+ """
670
+ return pulumi.get(self, "address_line3")
671
+
672
+ @property
673
+ @pulumi.getter
674
+ def city(self) -> Optional[str]:
675
+ """
676
+ Address city.
677
+ """
678
+ return pulumi.get(self, "city")
679
+
680
+ @property
681
+ @pulumi.getter(name="companyName")
682
+ def company_name(self) -> Optional[str]:
683
+ """
684
+ Company name. Optional for MCA Individual (Pay-as-you-go).
685
+ """
686
+ return pulumi.get(self, "company_name")
687
+
688
+ @property
689
+ @pulumi.getter
690
+ def district(self) -> Optional[str]:
691
+ """
692
+ Address district.
693
+ """
694
+ return pulumi.get(self, "district")
695
+
696
+ @property
697
+ @pulumi.getter
698
+ def email(self) -> Optional[str]:
699
+ """
700
+ Email address.
701
+ """
702
+ return pulumi.get(self, "email")
703
+
704
+ @property
705
+ @pulumi.getter(name="firstName")
706
+ def first_name(self) -> Optional[str]:
707
+ """
708
+ First name. Optional for MCA Enterprise.
709
+ """
710
+ return pulumi.get(self, "first_name")
711
+
712
+ @property
713
+ @pulumi.getter(name="isValidAddress")
714
+ def is_valid_address(self) -> Optional[bool]:
715
+ """
716
+ Indicates if the address is incomplete.
717
+ """
718
+ return pulumi.get(self, "is_valid_address")
719
+
720
+ @property
721
+ @pulumi.getter(name="lastName")
722
+ def last_name(self) -> Optional[str]:
723
+ """
724
+ Last name. Optional for MCA Enterprise.
725
+ """
726
+ return pulumi.get(self, "last_name")
727
+
728
+ @property
729
+ @pulumi.getter(name="middleName")
730
+ def middle_name(self) -> Optional[str]:
731
+ """
732
+ Middle name.
733
+ """
734
+ return pulumi.get(self, "middle_name")
735
+
736
+ @property
737
+ @pulumi.getter(name="phoneNumber")
738
+ def phone_number(self) -> Optional[str]:
739
+ """
740
+ Phone number.
741
+ """
742
+ return pulumi.get(self, "phone_number")
743
+
744
+ @property
745
+ @pulumi.getter(name="postalCode")
746
+ def postal_code(self) -> Optional[str]:
747
+ """
748
+ Postal code.
749
+ """
750
+ return pulumi.get(self, "postal_code")
751
+
752
+ @property
753
+ @pulumi.getter
754
+ def region(self) -> Optional[str]:
755
+ """
756
+ Address region.
757
+ """
758
+ return pulumi.get(self, "region")
759
+
760
+
761
+ @pulumi.output_type
762
+ class BillingProfilePropertiesResponseCurrentPaymentTerm(dict):
763
+ """
764
+ The current payment term of the billing profile.
765
+ """
766
+ @staticmethod
767
+ def __key_warning(key: str):
768
+ suggest = None
769
+ if key == "isDefault":
770
+ suggest = "is_default"
771
+ elif key == "endDate":
772
+ suggest = "end_date"
773
+ elif key == "startDate":
774
+ suggest = "start_date"
775
+
776
+ if suggest:
777
+ pulumi.log.warn(f"Key '{key}' not found in BillingProfilePropertiesResponseCurrentPaymentTerm. Access the value via the '{suggest}' property getter instead.")
778
+
779
+ def __getitem__(self, key: str) -> Any:
780
+ BillingProfilePropertiesResponseCurrentPaymentTerm.__key_warning(key)
781
+ return super().__getitem__(key)
782
+
783
+ def get(self, key: str, default = None) -> Any:
784
+ BillingProfilePropertiesResponseCurrentPaymentTerm.__key_warning(key)
785
+ return super().get(key, default)
786
+
787
+ def __init__(__self__, *,
788
+ is_default: bool,
789
+ end_date: Optional[str] = None,
790
+ start_date: Optional[str] = None,
791
+ term: Optional[str] = None):
792
+ """
793
+ The current payment term of the billing profile.
794
+ :param bool is_default: Indicates payment term is the standard payment term.
795
+ :param str end_date: The date on when the defined 'Payment Term' will end and is always in UTC.
796
+ :param str start_date: The date on when the defined 'Payment Term' will be effective from and is always in UTC.
797
+ :param str term: Represents duration in netXX format. Always in days.
798
+ """
799
+ pulumi.set(__self__, "is_default", is_default)
800
+ if end_date is not None:
801
+ pulumi.set(__self__, "end_date", end_date)
802
+ if start_date is not None:
803
+ pulumi.set(__self__, "start_date", start_date)
804
+ if term is not None:
805
+ pulumi.set(__self__, "term", term)
806
+
807
+ @property
808
+ @pulumi.getter(name="isDefault")
809
+ def is_default(self) -> bool:
810
+ """
811
+ Indicates payment term is the standard payment term.
812
+ """
813
+ return pulumi.get(self, "is_default")
814
+
815
+ @property
816
+ @pulumi.getter(name="endDate")
817
+ def end_date(self) -> Optional[str]:
818
+ """
819
+ The date on when the defined 'Payment Term' will end and is always in UTC.
820
+ """
821
+ return pulumi.get(self, "end_date")
822
+
823
+ @property
824
+ @pulumi.getter(name="startDate")
825
+ def start_date(self) -> Optional[str]:
826
+ """
827
+ The date on when the defined 'Payment Term' will be effective from and is always in UTC.
828
+ """
829
+ return pulumi.get(self, "start_date")
830
+
831
+ @property
832
+ @pulumi.getter
833
+ def term(self) -> Optional[str]:
834
+ """
835
+ Represents duration in netXX format. Always in days.
836
+ """
837
+ return pulumi.get(self, "term")
838
+
839
+
840
+ @pulumi.output_type
841
+ class BillingProfilePropertiesResponseIndirectRelationshipInfo(dict):
842
+ """
843
+ Identifies the billing profile that is linked to another billing profile in indirect purchase motion.
844
+ """
845
+ @staticmethod
846
+ def __key_warning(key: str):
847
+ suggest = None
848
+ if key == "billingAccountName":
849
+ suggest = "billing_account_name"
850
+ elif key == "billingProfileName":
851
+ suggest = "billing_profile_name"
852
+ elif key == "displayName":
853
+ suggest = "display_name"
854
+
855
+ if suggest:
856
+ pulumi.log.warn(f"Key '{key}' not found in BillingProfilePropertiesResponseIndirectRelationshipInfo. Access the value via the '{suggest}' property getter instead.")
857
+
858
+ def __getitem__(self, key: str) -> Any:
859
+ BillingProfilePropertiesResponseIndirectRelationshipInfo.__key_warning(key)
860
+ return super().__getitem__(key)
861
+
862
+ def get(self, key: str, default = None) -> Any:
863
+ BillingProfilePropertiesResponseIndirectRelationshipInfo.__key_warning(key)
864
+ return super().get(key, default)
865
+
866
+ def __init__(__self__, *,
867
+ billing_account_name: Optional[str] = None,
868
+ billing_profile_name: Optional[str] = None,
869
+ display_name: Optional[str] = None):
870
+ """
871
+ Identifies the billing profile that is linked to another billing profile in indirect purchase motion.
872
+ :param str billing_account_name: The billing account name of the partner or the customer for an indirect motion.
873
+ :param str billing_profile_name: The billing profile name of the partner or the customer for an indirect motion.
874
+ :param str display_name: The display name of the partner or customer for an indirect motion.
875
+ """
876
+ if billing_account_name is not None:
877
+ pulumi.set(__self__, "billing_account_name", billing_account_name)
878
+ if billing_profile_name is not None:
879
+ pulumi.set(__self__, "billing_profile_name", billing_profile_name)
880
+ if display_name is not None:
881
+ pulumi.set(__self__, "display_name", display_name)
882
+
883
+ @property
884
+ @pulumi.getter(name="billingAccountName")
885
+ def billing_account_name(self) -> Optional[str]:
886
+ """
887
+ The billing account name of the partner or the customer for an indirect motion.
888
+ """
889
+ return pulumi.get(self, "billing_account_name")
890
+
891
+ @property
892
+ @pulumi.getter(name="billingProfileName")
893
+ def billing_profile_name(self) -> Optional[str]:
894
+ """
895
+ The billing profile name of the partner or the customer for an indirect motion.
896
+ """
897
+ return pulumi.get(self, "billing_profile_name")
898
+
899
+ @property
900
+ @pulumi.getter(name="displayName")
901
+ def display_name(self) -> Optional[str]:
902
+ """
903
+ The display name of the partner or customer for an indirect motion.
904
+ """
905
+ return pulumi.get(self, "display_name")
906
+
907
+
908
+ @pulumi.output_type
909
+ class BillingProfilePropertiesResponseShipTo(dict):
910
+ """
911
+ 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.
912
+ """
913
+ @staticmethod
914
+ def __key_warning(key: str):
915
+ suggest = None
916
+ if key == "addressLine1":
917
+ suggest = "address_line1"
918
+ elif key == "addressLine2":
919
+ suggest = "address_line2"
920
+ elif key == "addressLine3":
921
+ suggest = "address_line3"
922
+ elif key == "companyName":
923
+ suggest = "company_name"
924
+ elif key == "firstName":
925
+ suggest = "first_name"
926
+ elif key == "isValidAddress":
927
+ suggest = "is_valid_address"
928
+ elif key == "lastName":
929
+ suggest = "last_name"
930
+ elif key == "middleName":
931
+ suggest = "middle_name"
932
+ elif key == "phoneNumber":
933
+ suggest = "phone_number"
934
+ elif key == "postalCode":
935
+ suggest = "postal_code"
936
+
937
+ if suggest:
938
+ pulumi.log.warn(f"Key '{key}' not found in BillingProfilePropertiesResponseShipTo. Access the value via the '{suggest}' property getter instead.")
939
+
940
+ def __getitem__(self, key: str) -> Any:
941
+ BillingProfilePropertiesResponseShipTo.__key_warning(key)
942
+ return super().__getitem__(key)
943
+
944
+ def get(self, key: str, default = None) -> Any:
945
+ BillingProfilePropertiesResponseShipTo.__key_warning(key)
946
+ return super().get(key, default)
947
+
948
+ def __init__(__self__, *,
949
+ address_line1: str,
950
+ country: str,
951
+ address_line2: Optional[str] = None,
952
+ address_line3: Optional[str] = None,
953
+ city: Optional[str] = None,
954
+ company_name: Optional[str] = None,
955
+ district: Optional[str] = None,
956
+ email: Optional[str] = None,
957
+ first_name: Optional[str] = None,
958
+ is_valid_address: Optional[bool] = None,
959
+ last_name: Optional[str] = None,
960
+ middle_name: Optional[str] = None,
961
+ phone_number: Optional[str] = None,
962
+ postal_code: Optional[str] = None,
963
+ region: Optional[str] = None):
964
+ """
965
+ 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.
966
+ :param str address_line1: Address line 1.
967
+ :param str country: Country code uses ISO 3166-1 Alpha-2 format.
968
+ :param str address_line2: Address line 2.
969
+ :param str address_line3: Address line 3.
970
+ :param str city: Address city.
971
+ :param str company_name: Company name. Optional for MCA Individual (Pay-as-you-go).
972
+ :param str district: Address district.
973
+ :param str email: Email address.
974
+ :param str first_name: First name. Optional for MCA Enterprise.
975
+ :param bool is_valid_address: Indicates if the address is incomplete.
976
+ :param str last_name: Last name. Optional for MCA Enterprise.
977
+ :param str middle_name: Middle name.
978
+ :param str phone_number: Phone number.
979
+ :param str postal_code: Postal code.
980
+ :param str region: Address region.
981
+ """
982
+ pulumi.set(__self__, "address_line1", address_line1)
983
+ pulumi.set(__self__, "country", country)
984
+ if address_line2 is not None:
985
+ pulumi.set(__self__, "address_line2", address_line2)
986
+ if address_line3 is not None:
987
+ pulumi.set(__self__, "address_line3", address_line3)
988
+ if city is not None:
989
+ pulumi.set(__self__, "city", city)
990
+ if company_name is not None:
991
+ pulumi.set(__self__, "company_name", company_name)
992
+ if district is not None:
993
+ pulumi.set(__self__, "district", district)
994
+ if email is not None:
995
+ pulumi.set(__self__, "email", email)
996
+ if first_name is not None:
997
+ pulumi.set(__self__, "first_name", first_name)
998
+ if is_valid_address is not None:
999
+ pulumi.set(__self__, "is_valid_address", is_valid_address)
1000
+ if last_name is not None:
1001
+ pulumi.set(__self__, "last_name", last_name)
1002
+ if middle_name is not None:
1003
+ pulumi.set(__self__, "middle_name", middle_name)
1004
+ if phone_number is not None:
1005
+ pulumi.set(__self__, "phone_number", phone_number)
1006
+ if postal_code is not None:
1007
+ pulumi.set(__self__, "postal_code", postal_code)
1008
+ if region is not None:
1009
+ pulumi.set(__self__, "region", region)
1010
+
1011
+ @property
1012
+ @pulumi.getter(name="addressLine1")
1013
+ def address_line1(self) -> str:
1014
+ """
1015
+ Address line 1.
1016
+ """
1017
+ return pulumi.get(self, "address_line1")
1018
+
1019
+ @property
1020
+ @pulumi.getter
1021
+ def country(self) -> str:
1022
+ """
1023
+ Country code uses ISO 3166-1 Alpha-2 format.
1024
+ """
1025
+ return pulumi.get(self, "country")
1026
+
1027
+ @property
1028
+ @pulumi.getter(name="addressLine2")
1029
+ def address_line2(self) -> Optional[str]:
1030
+ """
1031
+ Address line 2.
1032
+ """
1033
+ return pulumi.get(self, "address_line2")
1034
+
1035
+ @property
1036
+ @pulumi.getter(name="addressLine3")
1037
+ def address_line3(self) -> Optional[str]:
1038
+ """
1039
+ Address line 3.
1040
+ """
1041
+ return pulumi.get(self, "address_line3")
1042
+
1043
+ @property
1044
+ @pulumi.getter
1045
+ def city(self) -> Optional[str]:
1046
+ """
1047
+ Address city.
1048
+ """
1049
+ return pulumi.get(self, "city")
1050
+
1051
+ @property
1052
+ @pulumi.getter(name="companyName")
1053
+ def company_name(self) -> Optional[str]:
1054
+ """
1055
+ Company name. Optional for MCA Individual (Pay-as-you-go).
1056
+ """
1057
+ return pulumi.get(self, "company_name")
1058
+
1059
+ @property
1060
+ @pulumi.getter
1061
+ def district(self) -> Optional[str]:
1062
+ """
1063
+ Address district.
1064
+ """
1065
+ return pulumi.get(self, "district")
1066
+
1067
+ @property
1068
+ @pulumi.getter
1069
+ def email(self) -> Optional[str]:
1070
+ """
1071
+ Email address.
1072
+ """
1073
+ return pulumi.get(self, "email")
1074
+
1075
+ @property
1076
+ @pulumi.getter(name="firstName")
1077
+ def first_name(self) -> Optional[str]:
1078
+ """
1079
+ First name. Optional for MCA Enterprise.
1080
+ """
1081
+ return pulumi.get(self, "first_name")
1082
+
1083
+ @property
1084
+ @pulumi.getter(name="isValidAddress")
1085
+ def is_valid_address(self) -> Optional[bool]:
1086
+ """
1087
+ Indicates if the address is incomplete.
1088
+ """
1089
+ return pulumi.get(self, "is_valid_address")
1090
+
1091
+ @property
1092
+ @pulumi.getter(name="lastName")
1093
+ def last_name(self) -> Optional[str]:
1094
+ """
1095
+ Last name. Optional for MCA Enterprise.
1096
+ """
1097
+ return pulumi.get(self, "last_name")
1098
+
1099
+ @property
1100
+ @pulumi.getter(name="middleName")
1101
+ def middle_name(self) -> Optional[str]:
1102
+ """
1103
+ Middle name.
1104
+ """
1105
+ return pulumi.get(self, "middle_name")
1106
+
1107
+ @property
1108
+ @pulumi.getter(name="phoneNumber")
1109
+ def phone_number(self) -> Optional[str]:
1110
+ """
1111
+ Phone number.
1112
+ """
1113
+ return pulumi.get(self, "phone_number")
1114
+
1115
+ @property
1116
+ @pulumi.getter(name="postalCode")
1117
+ def postal_code(self) -> Optional[str]:
1118
+ """
1119
+ Postal code.
1120
+ """
1121
+ return pulumi.get(self, "postal_code")
1122
+
1123
+ @property
1124
+ @pulumi.getter
1125
+ def region(self) -> Optional[str]:
1126
+ """
1127
+ Address region.
1128
+ """
1129
+ return pulumi.get(self, "region")
1130
+
1131
+
1132
+ @pulumi.output_type
1133
+ class BillingProfilePropertiesResponseSoldTo(dict):
1134
+ """
1135
+ The address of the individual or organization that is responsible for the billing account.
1136
+ """
1137
+ @staticmethod
1138
+ def __key_warning(key: str):
1139
+ suggest = None
1140
+ if key == "addressLine1":
1141
+ suggest = "address_line1"
1142
+ elif key == "addressLine2":
1143
+ suggest = "address_line2"
1144
+ elif key == "addressLine3":
1145
+ suggest = "address_line3"
1146
+ elif key == "companyName":
1147
+ suggest = "company_name"
1148
+ elif key == "firstName":
1149
+ suggest = "first_name"
1150
+ elif key == "isValidAddress":
1151
+ suggest = "is_valid_address"
1152
+ elif key == "lastName":
1153
+ suggest = "last_name"
1154
+ elif key == "middleName":
1155
+ suggest = "middle_name"
1156
+ elif key == "phoneNumber":
1157
+ suggest = "phone_number"
1158
+ elif key == "postalCode":
1159
+ suggest = "postal_code"
1160
+
1161
+ if suggest:
1162
+ pulumi.log.warn(f"Key '{key}' not found in BillingProfilePropertiesResponseSoldTo. Access the value via the '{suggest}' property getter instead.")
1163
+
1164
+ def __getitem__(self, key: str) -> Any:
1165
+ BillingProfilePropertiesResponseSoldTo.__key_warning(key)
1166
+ return super().__getitem__(key)
1167
+
1168
+ def get(self, key: str, default = None) -> Any:
1169
+ BillingProfilePropertiesResponseSoldTo.__key_warning(key)
1170
+ return super().get(key, default)
1171
+
1172
+ def __init__(__self__, *,
1173
+ address_line1: str,
1174
+ country: str,
1175
+ address_line2: Optional[str] = None,
1176
+ address_line3: Optional[str] = None,
1177
+ city: Optional[str] = None,
1178
+ company_name: Optional[str] = None,
1179
+ district: Optional[str] = None,
1180
+ email: Optional[str] = None,
1181
+ first_name: Optional[str] = None,
1182
+ is_valid_address: Optional[bool] = None,
1183
+ last_name: Optional[str] = None,
1184
+ middle_name: Optional[str] = None,
1185
+ phone_number: Optional[str] = None,
1186
+ postal_code: Optional[str] = None,
1187
+ region: Optional[str] = None):
1188
+ """
1189
+ The address of the individual or organization that is responsible for the billing account.
1190
+ :param str address_line1: Address line 1.
1191
+ :param str country: Country code uses ISO 3166-1 Alpha-2 format.
1192
+ :param str address_line2: Address line 2.
1193
+ :param str address_line3: Address line 3.
1194
+ :param str city: Address city.
1195
+ :param str company_name: Company name. Optional for MCA Individual (Pay-as-you-go).
1196
+ :param str district: Address district.
1197
+ :param str email: Email address.
1198
+ :param str first_name: First name. Optional for MCA Enterprise.
1199
+ :param bool is_valid_address: Indicates if the address is incomplete.
1200
+ :param str last_name: Last name. Optional for MCA Enterprise.
1201
+ :param str middle_name: Middle name.
1202
+ :param str phone_number: Phone number.
1203
+ :param str postal_code: Postal code.
1204
+ :param str region: Address region.
1205
+ """
1206
+ pulumi.set(__self__, "address_line1", address_line1)
1207
+ pulumi.set(__self__, "country", country)
1208
+ if address_line2 is not None:
1209
+ pulumi.set(__self__, "address_line2", address_line2)
1210
+ if address_line3 is not None:
1211
+ pulumi.set(__self__, "address_line3", address_line3)
1212
+ if city is not None:
1213
+ pulumi.set(__self__, "city", city)
1214
+ if company_name is not None:
1215
+ pulumi.set(__self__, "company_name", company_name)
1216
+ if district is not None:
1217
+ pulumi.set(__self__, "district", district)
1218
+ if email is not None:
1219
+ pulumi.set(__self__, "email", email)
1220
+ if first_name is not None:
1221
+ pulumi.set(__self__, "first_name", first_name)
1222
+ if is_valid_address is not None:
1223
+ pulumi.set(__self__, "is_valid_address", is_valid_address)
1224
+ if last_name is not None:
1225
+ pulumi.set(__self__, "last_name", last_name)
1226
+ if middle_name is not None:
1227
+ pulumi.set(__self__, "middle_name", middle_name)
1228
+ if phone_number is not None:
1229
+ pulumi.set(__self__, "phone_number", phone_number)
1230
+ if postal_code is not None:
1231
+ pulumi.set(__self__, "postal_code", postal_code)
1232
+ if region is not None:
1233
+ pulumi.set(__self__, "region", region)
1234
+
1235
+ @property
1236
+ @pulumi.getter(name="addressLine1")
1237
+ def address_line1(self) -> str:
1238
+ """
1239
+ Address line 1.
1240
+ """
1241
+ return pulumi.get(self, "address_line1")
1242
+
1243
+ @property
1244
+ @pulumi.getter
1245
+ def country(self) -> str:
1246
+ """
1247
+ Country code uses ISO 3166-1 Alpha-2 format.
1248
+ """
1249
+ return pulumi.get(self, "country")
1250
+
1251
+ @property
1252
+ @pulumi.getter(name="addressLine2")
1253
+ def address_line2(self) -> Optional[str]:
1254
+ """
1255
+ Address line 2.
1256
+ """
1257
+ return pulumi.get(self, "address_line2")
1258
+
1259
+ @property
1260
+ @pulumi.getter(name="addressLine3")
1261
+ def address_line3(self) -> Optional[str]:
1262
+ """
1263
+ Address line 3.
1264
+ """
1265
+ return pulumi.get(self, "address_line3")
1266
+
1267
+ @property
1268
+ @pulumi.getter
1269
+ def city(self) -> Optional[str]:
1270
+ """
1271
+ Address city.
1272
+ """
1273
+ return pulumi.get(self, "city")
1274
+
1275
+ @property
1276
+ @pulumi.getter(name="companyName")
1277
+ def company_name(self) -> Optional[str]:
1278
+ """
1279
+ Company name. Optional for MCA Individual (Pay-as-you-go).
1280
+ """
1281
+ return pulumi.get(self, "company_name")
1282
+
1283
+ @property
1284
+ @pulumi.getter
1285
+ def district(self) -> Optional[str]:
1286
+ """
1287
+ Address district.
1288
+ """
1289
+ return pulumi.get(self, "district")
1290
+
1291
+ @property
1292
+ @pulumi.getter
1293
+ def email(self) -> Optional[str]:
1294
+ """
1295
+ Email address.
1296
+ """
1297
+ return pulumi.get(self, "email")
1298
+
1299
+ @property
1300
+ @pulumi.getter(name="firstName")
1301
+ def first_name(self) -> Optional[str]:
1302
+ """
1303
+ First name. Optional for MCA Enterprise.
1304
+ """
1305
+ return pulumi.get(self, "first_name")
1306
+
1307
+ @property
1308
+ @pulumi.getter(name="isValidAddress")
1309
+ def is_valid_address(self) -> Optional[bool]:
1310
+ """
1311
+ Indicates if the address is incomplete.
1312
+ """
1313
+ return pulumi.get(self, "is_valid_address")
1314
+
1315
+ @property
1316
+ @pulumi.getter(name="lastName")
1317
+ def last_name(self) -> Optional[str]:
1318
+ """
1319
+ Last name. Optional for MCA Enterprise.
1320
+ """
1321
+ return pulumi.get(self, "last_name")
1322
+
1323
+ @property
1324
+ @pulumi.getter(name="middleName")
1325
+ def middle_name(self) -> Optional[str]:
1326
+ """
1327
+ Middle name.
1328
+ """
1329
+ return pulumi.get(self, "middle_name")
1330
+
1331
+ @property
1332
+ @pulumi.getter(name="phoneNumber")
1333
+ def phone_number(self) -> Optional[str]:
1334
+ """
1335
+ Phone number.
1336
+ """
1337
+ return pulumi.get(self, "phone_number")
1338
+
1339
+ @property
1340
+ @pulumi.getter(name="postalCode")
1341
+ def postal_code(self) -> Optional[str]:
1342
+ """
1343
+ Postal code.
1344
+ """
1345
+ return pulumi.get(self, "postal_code")
1346
+
1347
+ @property
1348
+ @pulumi.getter
1349
+ def region(self) -> Optional[str]:
1350
+ """
1351
+ Address region.
1352
+ """
1353
+ return pulumi.get(self, "region")
1354
+
1355
+
1356
+ @pulumi.output_type
1357
+ class BillingRoleAssignmentPropertiesResponse(dict):
1358
+ """
1359
+ The properties of the billing role assignment.
1360
+ """
1361
+ @staticmethod
1362
+ def __key_warning(key: str):
1363
+ suggest = None
1364
+ if key == "billingAccountDisplayName":
1365
+ suggest = "billing_account_display_name"
1366
+ elif key == "billingAccountId":
1367
+ suggest = "billing_account_id"
1368
+ elif key == "billingProfileDisplayName":
1369
+ suggest = "billing_profile_display_name"
1370
+ elif key == "billingProfileId":
1371
+ suggest = "billing_profile_id"
1372
+ elif key == "billingRequestId":
1373
+ suggest = "billing_request_id"
1374
+ elif key == "createdByPrincipalId":
1375
+ suggest = "created_by_principal_id"
1376
+ elif key == "createdByPrincipalPuid":
1377
+ suggest = "created_by_principal_puid"
1378
+ elif key == "createdByPrincipalTenantId":
1379
+ suggest = "created_by_principal_tenant_id"
1380
+ elif key == "createdByUserEmailAddress":
1381
+ suggest = "created_by_user_email_address"
1382
+ elif key == "createdOn":
1383
+ suggest = "created_on"
1384
+ elif key == "customerDisplayName":
1385
+ suggest = "customer_display_name"
1386
+ elif key == "customerId":
1387
+ suggest = "customer_id"
1388
+ elif key == "invoiceSectionDisplayName":
1389
+ suggest = "invoice_section_display_name"
1390
+ elif key == "invoiceSectionId":
1391
+ suggest = "invoice_section_id"
1392
+ elif key == "modifiedByPrincipalId":
1393
+ suggest = "modified_by_principal_id"
1394
+ elif key == "modifiedByPrincipalPuid":
1395
+ suggest = "modified_by_principal_puid"
1396
+ elif key == "modifiedByPrincipalTenantId":
1397
+ suggest = "modified_by_principal_tenant_id"
1398
+ elif key == "modifiedByUserEmailAddress":
1399
+ suggest = "modified_by_user_email_address"
1400
+ elif key == "modifiedOn":
1401
+ suggest = "modified_on"
1402
+ elif key == "principalDisplayName":
1403
+ suggest = "principal_display_name"
1404
+ elif key == "principalTenantName":
1405
+ suggest = "principal_tenant_name"
1406
+ elif key == "principalType":
1407
+ suggest = "principal_type"
1408
+ elif key == "provisioningState":
1409
+ suggest = "provisioning_state"
1410
+ elif key == "roleDefinitionId":
1411
+ suggest = "role_definition_id"
1412
+ elif key == "principalId":
1413
+ suggest = "principal_id"
1414
+ elif key == "principalPuid":
1415
+ suggest = "principal_puid"
1416
+ elif key == "principalTenantId":
1417
+ suggest = "principal_tenant_id"
1418
+ elif key == "userAuthenticationType":
1419
+ suggest = "user_authentication_type"
1420
+ elif key == "userEmailAddress":
1421
+ suggest = "user_email_address"
1422
+
1423
+ if suggest:
1424
+ pulumi.log.warn(f"Key '{key}' not found in BillingRoleAssignmentPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1425
+
1426
+ def __getitem__(self, key: str) -> Any:
1427
+ BillingRoleAssignmentPropertiesResponse.__key_warning(key)
1428
+ return super().__getitem__(key)
1429
+
1430
+ def get(self, key: str, default = None) -> Any:
1431
+ BillingRoleAssignmentPropertiesResponse.__key_warning(key)
1432
+ return super().get(key, default)
1433
+
1434
+ def __init__(__self__, *,
1435
+ billing_account_display_name: str,
1436
+ billing_account_id: str,
1437
+ billing_profile_display_name: str,
1438
+ billing_profile_id: str,
1439
+ billing_request_id: str,
1440
+ created_by_principal_id: str,
1441
+ created_by_principal_puid: str,
1442
+ created_by_principal_tenant_id: str,
1443
+ created_by_user_email_address: str,
1444
+ created_on: str,
1445
+ customer_display_name: str,
1446
+ customer_id: str,
1447
+ invoice_section_display_name: str,
1448
+ invoice_section_id: str,
1449
+ modified_by_principal_id: str,
1450
+ modified_by_principal_puid: str,
1451
+ modified_by_principal_tenant_id: str,
1452
+ modified_by_user_email_address: str,
1453
+ modified_on: str,
1454
+ principal_display_name: str,
1455
+ principal_tenant_name: str,
1456
+ principal_type: str,
1457
+ provisioning_state: str,
1458
+ role_definition_id: str,
1459
+ principal_id: Optional[str] = None,
1460
+ principal_puid: Optional[str] = None,
1461
+ principal_tenant_id: Optional[str] = None,
1462
+ scope: Optional[str] = None,
1463
+ user_authentication_type: Optional[str] = None,
1464
+ user_email_address: Optional[str] = None):
1465
+ """
1466
+ The properties of the billing role assignment.
1467
+ :param str billing_account_display_name: The name of the billing account.
1468
+ :param str billing_account_id: The fully qualified ID that uniquely identifies a billing account.
1469
+ :param str billing_profile_display_name: The name of the billing profile.
1470
+ :param str billing_profile_id: The fully qualified ID that uniquely identifies a billing profile.
1471
+ :param str billing_request_id: The ID of the billing request that was created for the role assignment. This is only applicable to cross tenant role assignments or role assignments created through the billing request.
1472
+ :param str created_by_principal_id: The object ID of the user who created the role assignment.
1473
+ :param str created_by_principal_puid: The principal PUID of the user who created the role assignment.
1474
+ :param str created_by_principal_tenant_id: The tenant Id of the user who created the role assignment.
1475
+ :param str created_by_user_email_address: The email address of the user who created the role assignment. This is supported only for billing accounts with agreement type Enterprise Agreement.
1476
+ :param str created_on: The date the role assignment was created.
1477
+ :param str customer_display_name: The name of the customer.
1478
+ :param str customer_id: The fully qualified ID that uniquely identifies a customer.
1479
+ :param str invoice_section_display_name: The name of the invoice section.
1480
+ :param str invoice_section_id: The fully qualified ID that uniquely identifies an invoice section.
1481
+ :param str modified_by_principal_id: The principal PUID of the user who modified the role assignment.
1482
+ :param str modified_by_principal_puid: The principal PUID of the user who modified the role assignment.
1483
+ :param str modified_by_principal_tenant_id: The tenant Id of the user who modified the role assignment.
1484
+ :param str modified_by_user_email_address: The email address of the user who modified the role assignment. This is supported only for billing accounts with agreement type Enterprise Agreement.
1485
+ :param str modified_on: The date the role assignment was modified.
1486
+ :param str principal_display_name: The display name of the principal to whom the role was assigned.
1487
+ :param str principal_tenant_name: The friendly name of the tenant of the user to whom the role was assigned. This will be 'Primary Tenant' for the primary tenant of the billing account.
1488
+ :param str principal_type: The type of a role Assignment.
1489
+ :param str provisioning_state: The provisioning state of the resource during a long-running operation.
1490
+ :param str role_definition_id: The ID of the role definition.
1491
+ :param str principal_id: The object id of the user to whom the role was assigned.
1492
+ :param str principal_puid: The principal PUID of the user to whom the role was assigned.
1493
+ :param str principal_tenant_id: The principal tenant id of the user to whom the role was assigned.
1494
+ :param str scope: The scope at which the role was assigned.
1495
+ :param str user_authentication_type: The authentication type of the user, whether Organization or MSA, of the user to whom the role was assigned. This is supported only for billing accounts with agreement type Enterprise Agreement.
1496
+ :param str user_email_address: The email address of the user to whom the role was assigned. This is supported only for billing accounts with agreement type Enterprise Agreement.
1497
+ """
1498
+ pulumi.set(__self__, "billing_account_display_name", billing_account_display_name)
1499
+ pulumi.set(__self__, "billing_account_id", billing_account_id)
1500
+ pulumi.set(__self__, "billing_profile_display_name", billing_profile_display_name)
1501
+ pulumi.set(__self__, "billing_profile_id", billing_profile_id)
1502
+ pulumi.set(__self__, "billing_request_id", billing_request_id)
1503
+ pulumi.set(__self__, "created_by_principal_id", created_by_principal_id)
1504
+ pulumi.set(__self__, "created_by_principal_puid", created_by_principal_puid)
1505
+ pulumi.set(__self__, "created_by_principal_tenant_id", created_by_principal_tenant_id)
1506
+ pulumi.set(__self__, "created_by_user_email_address", created_by_user_email_address)
1507
+ pulumi.set(__self__, "created_on", created_on)
1508
+ pulumi.set(__self__, "customer_display_name", customer_display_name)
1509
+ pulumi.set(__self__, "customer_id", customer_id)
1510
+ pulumi.set(__self__, "invoice_section_display_name", invoice_section_display_name)
1511
+ pulumi.set(__self__, "invoice_section_id", invoice_section_id)
1512
+ pulumi.set(__self__, "modified_by_principal_id", modified_by_principal_id)
1513
+ pulumi.set(__self__, "modified_by_principal_puid", modified_by_principal_puid)
1514
+ pulumi.set(__self__, "modified_by_principal_tenant_id", modified_by_principal_tenant_id)
1515
+ pulumi.set(__self__, "modified_by_user_email_address", modified_by_user_email_address)
1516
+ pulumi.set(__self__, "modified_on", modified_on)
1517
+ pulumi.set(__self__, "principal_display_name", principal_display_name)
1518
+ pulumi.set(__self__, "principal_tenant_name", principal_tenant_name)
1519
+ pulumi.set(__self__, "principal_type", principal_type)
1520
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
1521
+ pulumi.set(__self__, "role_definition_id", role_definition_id)
1522
+ if principal_id is not None:
1523
+ pulumi.set(__self__, "principal_id", principal_id)
1524
+ if principal_puid is not None:
1525
+ pulumi.set(__self__, "principal_puid", principal_puid)
1526
+ if principal_tenant_id is not None:
1527
+ pulumi.set(__self__, "principal_tenant_id", principal_tenant_id)
1528
+ if scope is not None:
1529
+ pulumi.set(__self__, "scope", scope)
1530
+ if user_authentication_type is not None:
1531
+ pulumi.set(__self__, "user_authentication_type", user_authentication_type)
1532
+ if user_email_address is not None:
1533
+ pulumi.set(__self__, "user_email_address", user_email_address)
1534
+
1535
+ @property
1536
+ @pulumi.getter(name="billingAccountDisplayName")
1537
+ def billing_account_display_name(self) -> str:
1538
+ """
1539
+ The name of the billing account.
1540
+ """
1541
+ return pulumi.get(self, "billing_account_display_name")
1542
+
1543
+ @property
1544
+ @pulumi.getter(name="billingAccountId")
1545
+ def billing_account_id(self) -> str:
1546
+ """
1547
+ The fully qualified ID that uniquely identifies a billing account.
1548
+ """
1549
+ return pulumi.get(self, "billing_account_id")
1550
+
1551
+ @property
1552
+ @pulumi.getter(name="billingProfileDisplayName")
1553
+ def billing_profile_display_name(self) -> str:
1554
+ """
1555
+ The name of the billing profile.
1556
+ """
1557
+ return pulumi.get(self, "billing_profile_display_name")
1558
+
1559
+ @property
1560
+ @pulumi.getter(name="billingProfileId")
1561
+ def billing_profile_id(self) -> str:
1562
+ """
1563
+ The fully qualified ID that uniquely identifies a billing profile.
1564
+ """
1565
+ return pulumi.get(self, "billing_profile_id")
1566
+
1567
+ @property
1568
+ @pulumi.getter(name="billingRequestId")
1569
+ def billing_request_id(self) -> str:
1570
+ """
1571
+ The ID of the billing request that was created for the role assignment. This is only applicable to cross tenant role assignments or role assignments created through the billing request.
1572
+ """
1573
+ return pulumi.get(self, "billing_request_id")
1574
+
1575
+ @property
1576
+ @pulumi.getter(name="createdByPrincipalId")
1577
+ def created_by_principal_id(self) -> str:
1578
+ """
1579
+ The object ID of the user who created the role assignment.
1580
+ """
1581
+ return pulumi.get(self, "created_by_principal_id")
1582
+
1583
+ @property
1584
+ @pulumi.getter(name="createdByPrincipalPuid")
1585
+ def created_by_principal_puid(self) -> str:
1586
+ """
1587
+ The principal PUID of the user who created the role assignment.
1588
+ """
1589
+ return pulumi.get(self, "created_by_principal_puid")
1590
+
1591
+ @property
1592
+ @pulumi.getter(name="createdByPrincipalTenantId")
1593
+ def created_by_principal_tenant_id(self) -> str:
1594
+ """
1595
+ The tenant Id of the user who created the role assignment.
1596
+ """
1597
+ return pulumi.get(self, "created_by_principal_tenant_id")
1598
+
1599
+ @property
1600
+ @pulumi.getter(name="createdByUserEmailAddress")
1601
+ def created_by_user_email_address(self) -> str:
1602
+ """
1603
+ The email address of the user who created the role assignment. This is supported only for billing accounts with agreement type Enterprise Agreement.
1604
+ """
1605
+ return pulumi.get(self, "created_by_user_email_address")
1606
+
1607
+ @property
1608
+ @pulumi.getter(name="createdOn")
1609
+ def created_on(self) -> str:
1610
+ """
1611
+ The date the role assignment was created.
1612
+ """
1613
+ return pulumi.get(self, "created_on")
1614
+
1615
+ @property
1616
+ @pulumi.getter(name="customerDisplayName")
1617
+ def customer_display_name(self) -> str:
1618
+ """
1619
+ The name of the customer.
1620
+ """
1621
+ return pulumi.get(self, "customer_display_name")
1622
+
1623
+ @property
1624
+ @pulumi.getter(name="customerId")
1625
+ def customer_id(self) -> str:
1626
+ """
1627
+ The fully qualified ID that uniquely identifies a customer.
1628
+ """
1629
+ return pulumi.get(self, "customer_id")
1630
+
1631
+ @property
1632
+ @pulumi.getter(name="invoiceSectionDisplayName")
1633
+ def invoice_section_display_name(self) -> str:
1634
+ """
1635
+ The name of the invoice section.
1636
+ """
1637
+ return pulumi.get(self, "invoice_section_display_name")
1638
+
1639
+ @property
1640
+ @pulumi.getter(name="invoiceSectionId")
1641
+ def invoice_section_id(self) -> str:
1642
+ """
1643
+ The fully qualified ID that uniquely identifies an invoice section.
1644
+ """
1645
+ return pulumi.get(self, "invoice_section_id")
1646
+
1647
+ @property
1648
+ @pulumi.getter(name="modifiedByPrincipalId")
1649
+ def modified_by_principal_id(self) -> str:
1650
+ """
1651
+ The principal PUID of the user who modified the role assignment.
1652
+ """
1653
+ return pulumi.get(self, "modified_by_principal_id")
1654
+
1655
+ @property
1656
+ @pulumi.getter(name="modifiedByPrincipalPuid")
1657
+ def modified_by_principal_puid(self) -> str:
1658
+ """
1659
+ The principal PUID of the user who modified the role assignment.
1660
+ """
1661
+ return pulumi.get(self, "modified_by_principal_puid")
1662
+
1663
+ @property
1664
+ @pulumi.getter(name="modifiedByPrincipalTenantId")
1665
+ def modified_by_principal_tenant_id(self) -> str:
1666
+ """
1667
+ The tenant Id of the user who modified the role assignment.
1668
+ """
1669
+ return pulumi.get(self, "modified_by_principal_tenant_id")
1670
+
1671
+ @property
1672
+ @pulumi.getter(name="modifiedByUserEmailAddress")
1673
+ def modified_by_user_email_address(self) -> str:
1674
+ """
1675
+ The email address of the user who modified the role assignment. This is supported only for billing accounts with agreement type Enterprise Agreement.
1676
+ """
1677
+ return pulumi.get(self, "modified_by_user_email_address")
1678
+
1679
+ @property
1680
+ @pulumi.getter(name="modifiedOn")
1681
+ def modified_on(self) -> str:
1682
+ """
1683
+ The date the role assignment was modified.
1684
+ """
1685
+ return pulumi.get(self, "modified_on")
1686
+
1687
+ @property
1688
+ @pulumi.getter(name="principalDisplayName")
1689
+ def principal_display_name(self) -> str:
1690
+ """
1691
+ The display name of the principal to whom the role was assigned.
1692
+ """
1693
+ return pulumi.get(self, "principal_display_name")
1694
+
1695
+ @property
1696
+ @pulumi.getter(name="principalTenantName")
1697
+ def principal_tenant_name(self) -> str:
1698
+ """
1699
+ The friendly name of the tenant of the user to whom the role was assigned. This will be 'Primary Tenant' for the primary tenant of the billing account.
1700
+ """
1701
+ return pulumi.get(self, "principal_tenant_name")
1702
+
1703
+ @property
1704
+ @pulumi.getter(name="principalType")
1705
+ def principal_type(self) -> str:
1706
+ """
1707
+ The type of a role Assignment.
1708
+ """
1709
+ return pulumi.get(self, "principal_type")
1710
+
1711
+ @property
1712
+ @pulumi.getter(name="provisioningState")
1713
+ def provisioning_state(self) -> str:
1714
+ """
1715
+ The provisioning state of the resource during a long-running operation.
1716
+ """
1717
+ return pulumi.get(self, "provisioning_state")
1718
+
1719
+ @property
1720
+ @pulumi.getter(name="roleDefinitionId")
1721
+ def role_definition_id(self) -> str:
1722
+ """
1723
+ The ID of the role definition.
1724
+ """
1725
+ return pulumi.get(self, "role_definition_id")
1726
+
1727
+ @property
1728
+ @pulumi.getter(name="principalId")
1729
+ def principal_id(self) -> Optional[str]:
1730
+ """
1731
+ The object id of the user to whom the role was assigned.
1732
+ """
1733
+ return pulumi.get(self, "principal_id")
1734
+
1735
+ @property
1736
+ @pulumi.getter(name="principalPuid")
1737
+ def principal_puid(self) -> Optional[str]:
1738
+ """
1739
+ The principal PUID of the user to whom the role was assigned.
1740
+ """
1741
+ return pulumi.get(self, "principal_puid")
1742
+
1743
+ @property
1744
+ @pulumi.getter(name="principalTenantId")
1745
+ def principal_tenant_id(self) -> Optional[str]:
1746
+ """
1747
+ The principal tenant id of the user to whom the role was assigned.
1748
+ """
1749
+ return pulumi.get(self, "principal_tenant_id")
1750
+
1751
+ @property
1752
+ @pulumi.getter
1753
+ def scope(self) -> Optional[str]:
1754
+ """
1755
+ The scope at which the role was assigned.
1756
+ """
1757
+ return pulumi.get(self, "scope")
1758
+
1759
+ @property
1760
+ @pulumi.getter(name="userAuthenticationType")
1761
+ def user_authentication_type(self) -> Optional[str]:
1762
+ """
1763
+ The authentication type of the user, whether Organization or MSA, of the user to whom the role was assigned. This is supported only for billing accounts with agreement type Enterprise Agreement.
1764
+ """
1765
+ return pulumi.get(self, "user_authentication_type")
1766
+
1767
+ @property
1768
+ @pulumi.getter(name="userEmailAddress")
1769
+ def user_email_address(self) -> Optional[str]:
1770
+ """
1771
+ The email address of the user to whom the role was assigned. This is supported only for billing accounts with agreement type Enterprise Agreement.
1772
+ """
1773
+ return pulumi.get(self, "user_email_address")
1774
+
1775
+
1776
+ @pulumi.output_type
1777
+ class InvoiceSectionPropertiesResponse(dict):
1778
+ """
1779
+ An invoice section.
1780
+ """
1781
+ @staticmethod
1782
+ def __key_warning(key: str):
1783
+ suggest = None
1784
+ if key == "provisioningState":
1785
+ suggest = "provisioning_state"
1786
+ elif key == "systemId":
1787
+ suggest = "system_id"
1788
+ elif key == "displayName":
1789
+ suggest = "display_name"
1790
+ elif key == "reasonCode":
1791
+ suggest = "reason_code"
1792
+ elif key == "targetCloud":
1793
+ suggest = "target_cloud"
1794
+
1795
+ if suggest:
1796
+ pulumi.log.warn(f"Key '{key}' not found in InvoiceSectionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1797
+
1798
+ def __getitem__(self, key: str) -> Any:
1799
+ InvoiceSectionPropertiesResponse.__key_warning(key)
1800
+ return super().__getitem__(key)
1801
+
1802
+ def get(self, key: str, default = None) -> Any:
1803
+ InvoiceSectionPropertiesResponse.__key_warning(key)
1804
+ return super().get(key, default)
1805
+
1806
+ def __init__(__self__, *,
1807
+ provisioning_state: str,
1808
+ system_id: str,
1809
+ display_name: Optional[str] = None,
1810
+ reason_code: Optional[str] = None,
1811
+ state: Optional[str] = None,
1812
+ tags: Optional[Mapping[str, str]] = None,
1813
+ target_cloud: Optional[str] = None):
1814
+ """
1815
+ An invoice section.
1816
+ :param str provisioning_state: The provisioning state of the resource during a long-running operation.
1817
+ :param str system_id: The system generated unique identifier for an invoice section.
1818
+ :param str display_name: The name of the invoice section.
1819
+ :param str reason_code: Reason for the specified invoice section status.
1820
+ :param str state: Identifies the status of an invoice section.
1821
+ :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 < > % & \\ ? /
1822
+ :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.
1823
+ """
1824
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
1825
+ pulumi.set(__self__, "system_id", system_id)
1826
+ if display_name is not None:
1827
+ pulumi.set(__self__, "display_name", display_name)
1828
+ if reason_code is not None:
1829
+ pulumi.set(__self__, "reason_code", reason_code)
1830
+ if state is not None:
1831
+ pulumi.set(__self__, "state", state)
1832
+ if tags is not None:
1833
+ pulumi.set(__self__, "tags", tags)
1834
+ if target_cloud is not None:
1835
+ pulumi.set(__self__, "target_cloud", target_cloud)
1836
+
1837
+ @property
1838
+ @pulumi.getter(name="provisioningState")
1839
+ def provisioning_state(self) -> str:
1840
+ """
1841
+ The provisioning state of the resource during a long-running operation.
1842
+ """
1843
+ return pulumi.get(self, "provisioning_state")
1844
+
1845
+ @property
1846
+ @pulumi.getter(name="systemId")
1847
+ def system_id(self) -> str:
1848
+ """
1849
+ The system generated unique identifier for an invoice section.
1850
+ """
1851
+ return pulumi.get(self, "system_id")
1852
+
1853
+ @property
1854
+ @pulumi.getter(name="displayName")
1855
+ def display_name(self) -> Optional[str]:
1856
+ """
1857
+ The name of the invoice section.
1858
+ """
1859
+ return pulumi.get(self, "display_name")
1860
+
1861
+ @property
1862
+ @pulumi.getter(name="reasonCode")
1863
+ def reason_code(self) -> Optional[str]:
1864
+ """
1865
+ Reason for the specified invoice section status.
1866
+ """
1867
+ return pulumi.get(self, "reason_code")
1868
+
1869
+ @property
1870
+ @pulumi.getter
1871
+ def state(self) -> Optional[str]:
1872
+ """
1873
+ Identifies the status of an invoice section.
1874
+ """
1875
+ return pulumi.get(self, "state")
1876
+
1877
+ @property
1878
+ @pulumi.getter
1879
+ def tags(self) -> Optional[Mapping[str, str]]:
1880
+ """
1881
+ 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 < > % & \\ ? /
1882
+ """
1883
+ return pulumi.get(self, "tags")
1884
+
1885
+ @property
1886
+ @pulumi.getter(name="targetCloud")
1887
+ def target_cloud(self) -> Optional[str]:
1888
+ """
1889
+ 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.
1890
+ """
1891
+ return pulumi.get(self, "target_cloud")
1892
+
1893
+
1894
+ @pulumi.output_type
1895
+ class InvoiceSectionWithCreateSubPermissionResponse(dict):
1896
+ """
1897
+ Invoice section properties with create subscription permission.
1898
+ """
1899
+ def __init__(__self__, *,
1900
+ billing_profile_display_name: str,
1901
+ billing_profile_id: str,
1902
+ billing_profile_spending_limit: str,
1903
+ billing_profile_status: str,
1904
+ billing_profile_status_reason_code: str,
1905
+ billing_profile_system_id: str,
1906
+ enabled_azure_plans: Sequence['outputs.AzurePlanResponse'],
1907
+ invoice_section_display_name: str,
1908
+ invoice_section_id: str,
1909
+ invoice_section_system_id: str):
1910
+ """
1911
+ Invoice section properties with create subscription permission.
1912
+ :param str billing_profile_display_name: The name of the billing profile.
1913
+ :param str billing_profile_id: The fully qualified ID that uniquely identifies a billing profile.
1914
+ :param str billing_profile_spending_limit: The billing profile spending limit.
1915
+ :param str billing_profile_status: The status of the billing profile.
1916
+ :param str billing_profile_status_reason_code: Reason for the specified billing profile status.
1917
+ :param str billing_profile_system_id: The system generated unique identifier for a billing profile.
1918
+ :param Sequence['AzurePlanResponse'] enabled_azure_plans: Enabled azure plans for the associated billing profile.
1919
+ :param str invoice_section_display_name: The name of the invoice section.
1920
+ :param str invoice_section_id: The fully qualified ID that uniquely identifies an invoice section.
1921
+ :param str invoice_section_system_id: The system generated unique identifier for an invoice section.
1922
+ """
1923
+ pulumi.set(__self__, "billing_profile_display_name", billing_profile_display_name)
1924
+ pulumi.set(__self__, "billing_profile_id", billing_profile_id)
1925
+ pulumi.set(__self__, "billing_profile_spending_limit", billing_profile_spending_limit)
1926
+ pulumi.set(__self__, "billing_profile_status", billing_profile_status)
1927
+ pulumi.set(__self__, "billing_profile_status_reason_code", billing_profile_status_reason_code)
1928
+ pulumi.set(__self__, "billing_profile_system_id", billing_profile_system_id)
1929
+ pulumi.set(__self__, "enabled_azure_plans", enabled_azure_plans)
1930
+ pulumi.set(__self__, "invoice_section_display_name", invoice_section_display_name)
1931
+ pulumi.set(__self__, "invoice_section_id", invoice_section_id)
1932
+ pulumi.set(__self__, "invoice_section_system_id", invoice_section_system_id)
1933
+
1934
+ @property
1935
+ @pulumi.getter(name="billingProfileDisplayName")
1936
+ def billing_profile_display_name(self) -> str:
1937
+ """
1938
+ The name of the billing profile.
1939
+ """
1940
+ return pulumi.get(self, "billing_profile_display_name")
1941
+
1942
+ @property
1943
+ @pulumi.getter(name="billingProfileId")
1944
+ def billing_profile_id(self) -> str:
1945
+ """
1946
+ The fully qualified ID that uniquely identifies a billing profile.
1947
+ """
1948
+ return pulumi.get(self, "billing_profile_id")
1949
+
1950
+ @property
1951
+ @pulumi.getter(name="billingProfileSpendingLimit")
1952
+ def billing_profile_spending_limit(self) -> str:
1953
+ """
1954
+ The billing profile spending limit.
1955
+ """
1956
+ return pulumi.get(self, "billing_profile_spending_limit")
1957
+
1958
+ @property
1959
+ @pulumi.getter(name="billingProfileStatus")
1960
+ def billing_profile_status(self) -> str:
1961
+ """
1962
+ The status of the billing profile.
1963
+ """
1964
+ return pulumi.get(self, "billing_profile_status")
1965
+
1966
+ @property
1967
+ @pulumi.getter(name="billingProfileStatusReasonCode")
1968
+ def billing_profile_status_reason_code(self) -> str:
1969
+ """
1970
+ Reason for the specified billing profile status.
1971
+ """
1972
+ return pulumi.get(self, "billing_profile_status_reason_code")
1973
+
1974
+ @property
1975
+ @pulumi.getter(name="billingProfileSystemId")
1976
+ def billing_profile_system_id(self) -> str:
1977
+ """
1978
+ The system generated unique identifier for a billing profile.
1979
+ """
1980
+ return pulumi.get(self, "billing_profile_system_id")
1981
+
1982
+ @property
1983
+ @pulumi.getter(name="enabledAzurePlans")
1984
+ def enabled_azure_plans(self) -> Sequence['outputs.AzurePlanResponse']:
1985
+ """
1986
+ Enabled azure plans for the associated billing profile.
1987
+ """
1988
+ return pulumi.get(self, "enabled_azure_plans")
1989
+
1990
+ @property
1991
+ @pulumi.getter(name="invoiceSectionDisplayName")
1992
+ def invoice_section_display_name(self) -> str:
1993
+ """
1994
+ The name of the invoice section.
1995
+ """
1996
+ return pulumi.get(self, "invoice_section_display_name")
1997
+
1998
+ @property
1999
+ @pulumi.getter(name="invoiceSectionId")
2000
+ def invoice_section_id(self) -> str:
2001
+ """
2002
+ The fully qualified ID that uniquely identifies an invoice section.
2003
+ """
2004
+ return pulumi.get(self, "invoice_section_id")
2005
+
2006
+ @property
2007
+ @pulumi.getter(name="invoiceSectionSystemId")
2008
+ def invoice_section_system_id(self) -> str:
2009
+ """
2010
+ The system generated unique identifier for an invoice section.
2011
+ """
2012
+ return pulumi.get(self, "invoice_section_system_id")
2013
+
2014
+
2015
+ @pulumi.output_type
2016
+ class PaymentTermResponse(dict):
2017
+ """
2018
+ The properties of payment term.
2019
+ """
2020
+ @staticmethod
2021
+ def __key_warning(key: str):
2022
+ suggest = None
2023
+ if key == "isDefault":
2024
+ suggest = "is_default"
2025
+ elif key == "endDate":
2026
+ suggest = "end_date"
2027
+ elif key == "startDate":
2028
+ suggest = "start_date"
2029
+
2030
+ if suggest:
2031
+ pulumi.log.warn(f"Key '{key}' not found in PaymentTermResponse. Access the value via the '{suggest}' property getter instead.")
2032
+
2033
+ def __getitem__(self, key: str) -> Any:
2034
+ PaymentTermResponse.__key_warning(key)
2035
+ return super().__getitem__(key)
2036
+
2037
+ def get(self, key: str, default = None) -> Any:
2038
+ PaymentTermResponse.__key_warning(key)
2039
+ return super().get(key, default)
2040
+
2041
+ def __init__(__self__, *,
2042
+ is_default: bool,
2043
+ end_date: Optional[str] = None,
2044
+ start_date: Optional[str] = None,
2045
+ term: Optional[str] = None):
2046
+ """
2047
+ The properties of payment term.
2048
+ :param bool is_default: Indicates payment term is the standard payment term.
2049
+ :param str end_date: The date on when the defined 'Payment Term' will end and is always in UTC.
2050
+ :param str start_date: The date on when the defined 'Payment Term' will be effective from and is always in UTC.
2051
+ :param str term: Represents duration in netXX format. Always in days.
2052
+ """
2053
+ pulumi.set(__self__, "is_default", is_default)
2054
+ if end_date is not None:
2055
+ pulumi.set(__self__, "end_date", end_date)
2056
+ if start_date is not None:
2057
+ pulumi.set(__self__, "start_date", start_date)
2058
+ if term is not None:
2059
+ pulumi.set(__self__, "term", term)
2060
+
2061
+ @property
2062
+ @pulumi.getter(name="isDefault")
2063
+ def is_default(self) -> bool:
2064
+ """
2065
+ Indicates payment term is the standard payment term.
2066
+ """
2067
+ return pulumi.get(self, "is_default")
2068
+
2069
+ @property
2070
+ @pulumi.getter(name="endDate")
2071
+ def end_date(self) -> Optional[str]:
2072
+ """
2073
+ The date on when the defined 'Payment Term' will end and is always in UTC.
2074
+ """
2075
+ return pulumi.get(self, "end_date")
2076
+
2077
+ @property
2078
+ @pulumi.getter(name="startDate")
2079
+ def start_date(self) -> Optional[str]:
2080
+ """
2081
+ The date on when the defined 'Payment Term' will be effective from and is always in UTC.
2082
+ """
2083
+ return pulumi.get(self, "start_date")
2084
+
2085
+ @property
2086
+ @pulumi.getter
2087
+ def term(self) -> Optional[str]:
2088
+ """
2089
+ Represents duration in netXX format. Always in days.
2090
+ """
2091
+ return pulumi.get(self, "term")
2092
+
2093
+
2094
+ @pulumi.output_type
2095
+ class SpendingLimitDetailsResponse(dict):
2096
+ """
2097
+ The billing profile spending limit.
2098
+ """
2099
+ @staticmethod
2100
+ def __key_warning(key: str):
2101
+ suggest = None
2102
+ if key == "endDate":
2103
+ suggest = "end_date"
2104
+ elif key == "startDate":
2105
+ suggest = "start_date"
2106
+
2107
+ if suggest:
2108
+ pulumi.log.warn(f"Key '{key}' not found in SpendingLimitDetailsResponse. Access the value via the '{suggest}' property getter instead.")
2109
+
2110
+ def __getitem__(self, key: str) -> Any:
2111
+ SpendingLimitDetailsResponse.__key_warning(key)
2112
+ return super().__getitem__(key)
2113
+
2114
+ def get(self, key: str, default = None) -> Any:
2115
+ SpendingLimitDetailsResponse.__key_warning(key)
2116
+ return super().get(key, default)
2117
+
2118
+ def __init__(__self__, *,
2119
+ amount: Optional[float] = None,
2120
+ currency: Optional[str] = None,
2121
+ end_date: Optional[str] = None,
2122
+ start_date: Optional[str] = None,
2123
+ status: Optional[str] = None,
2124
+ type: Optional[str] = None):
2125
+ """
2126
+ The billing profile spending limit.
2127
+ :param float amount: The initial amount for the billing profile.
2128
+ :param str currency: The currency in which the charges for the billing profile are billed.
2129
+ :param str end_date: The date when this spending limit is no longer in effect.
2130
+ :param str start_date: The date when this spending limit goes into effect.
2131
+ :param str status: The status of current spending limit.
2132
+ :param str type: The type of spending limit.
2133
+ """
2134
+ if amount is not None:
2135
+ pulumi.set(__self__, "amount", amount)
2136
+ if currency is not None:
2137
+ pulumi.set(__self__, "currency", currency)
2138
+ if end_date is not None:
2139
+ pulumi.set(__self__, "end_date", end_date)
2140
+ if start_date is not None:
2141
+ pulumi.set(__self__, "start_date", start_date)
2142
+ if status is not None:
2143
+ pulumi.set(__self__, "status", status)
2144
+ if type is not None:
2145
+ pulumi.set(__self__, "type", type)
2146
+
2147
+ @property
2148
+ @pulumi.getter
2149
+ def amount(self) -> Optional[float]:
2150
+ """
2151
+ The initial amount for the billing profile.
2152
+ """
2153
+ return pulumi.get(self, "amount")
2154
+
2155
+ @property
2156
+ @pulumi.getter
2157
+ def currency(self) -> Optional[str]:
2158
+ """
2159
+ The currency in which the charges for the billing profile are billed.
2160
+ """
2161
+ return pulumi.get(self, "currency")
2162
+
2163
+ @property
2164
+ @pulumi.getter(name="endDate")
2165
+ def end_date(self) -> Optional[str]:
2166
+ """
2167
+ The date when this spending limit is no longer in effect.
2168
+ """
2169
+ return pulumi.get(self, "end_date")
2170
+
2171
+ @property
2172
+ @pulumi.getter(name="startDate")
2173
+ def start_date(self) -> Optional[str]:
2174
+ """
2175
+ The date when this spending limit goes into effect.
2176
+ """
2177
+ return pulumi.get(self, "start_date")
2178
+
2179
+ @property
2180
+ @pulumi.getter
2181
+ def status(self) -> Optional[str]:
2182
+ """
2183
+ The status of current spending limit.
2184
+ """
2185
+ return pulumi.get(self, "status")
2186
+
2187
+ @property
2188
+ @pulumi.getter
2189
+ def type(self) -> Optional[str]:
2190
+ """
2191
+ The type of spending limit.
2192
+ """
2193
+ return pulumi.get(self, "type")
2194
+
2195
+
2196
+ @pulumi.output_type
2197
+ class SystemDataResponse(dict):
2198
+ """
2199
+ Metadata pertaining to creation and last modification of the resource.
2200
+ """
2201
+ @staticmethod
2202
+ def __key_warning(key: str):
2203
+ suggest = None
2204
+ if key == "createdAt":
2205
+ suggest = "created_at"
2206
+ elif key == "createdBy":
2207
+ suggest = "created_by"
2208
+ elif key == "createdByType":
2209
+ suggest = "created_by_type"
2210
+ elif key == "lastModifiedAt":
2211
+ suggest = "last_modified_at"
2212
+ elif key == "lastModifiedBy":
2213
+ suggest = "last_modified_by"
2214
+ elif key == "lastModifiedByType":
2215
+ suggest = "last_modified_by_type"
2216
+
2217
+ if suggest:
2218
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
2219
+
2220
+ def __getitem__(self, key: str) -> Any:
2221
+ SystemDataResponse.__key_warning(key)
2222
+ return super().__getitem__(key)
2223
+
2224
+ def get(self, key: str, default = None) -> Any:
2225
+ SystemDataResponse.__key_warning(key)
2226
+ return super().get(key, default)
2227
+
2228
+ def __init__(__self__, *,
2229
+ created_at: Optional[str] = None,
2230
+ created_by: Optional[str] = None,
2231
+ created_by_type: Optional[str] = None,
2232
+ last_modified_at: Optional[str] = None,
2233
+ last_modified_by: Optional[str] = None,
2234
+ last_modified_by_type: Optional[str] = None):
2235
+ """
2236
+ Metadata pertaining to creation and last modification of the resource.
2237
+ :param str created_at: The timestamp of resource creation (UTC).
2238
+ :param str created_by: The identity that created the resource.
2239
+ :param str created_by_type: The type of identity that created the resource.
2240
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
2241
+ :param str last_modified_by: The identity that last modified the resource.
2242
+ :param str last_modified_by_type: The type of identity that last modified the resource.
2243
+ """
2244
+ if created_at is not None:
2245
+ pulumi.set(__self__, "created_at", created_at)
2246
+ if created_by is not None:
2247
+ pulumi.set(__self__, "created_by", created_by)
2248
+ if created_by_type is not None:
2249
+ pulumi.set(__self__, "created_by_type", created_by_type)
2250
+ if last_modified_at is not None:
2251
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
2252
+ if last_modified_by is not None:
2253
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
2254
+ if last_modified_by_type is not None:
2255
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
2256
+
2257
+ @property
2258
+ @pulumi.getter(name="createdAt")
2259
+ def created_at(self) -> Optional[str]:
2260
+ """
2261
+ The timestamp of resource creation (UTC).
2262
+ """
2263
+ return pulumi.get(self, "created_at")
2264
+
2265
+ @property
2266
+ @pulumi.getter(name="createdBy")
2267
+ def created_by(self) -> Optional[str]:
2268
+ """
2269
+ The identity that created the resource.
2270
+ """
2271
+ return pulumi.get(self, "created_by")
2272
+
2273
+ @property
2274
+ @pulumi.getter(name="createdByType")
2275
+ def created_by_type(self) -> Optional[str]:
2276
+ """
2277
+ The type of identity that created the resource.
2278
+ """
2279
+ return pulumi.get(self, "created_by_type")
2280
+
2281
+ @property
2282
+ @pulumi.getter(name="lastModifiedAt")
2283
+ def last_modified_at(self) -> Optional[str]:
2284
+ """
2285
+ The timestamp of resource last modification (UTC)
2286
+ """
2287
+ return pulumi.get(self, "last_modified_at")
2288
+
2289
+ @property
2290
+ @pulumi.getter(name="lastModifiedBy")
2291
+ def last_modified_by(self) -> Optional[str]:
2292
+ """
2293
+ The identity that last modified the resource.
2294
+ """
2295
+ return pulumi.get(self, "last_modified_by")
2296
+
2297
+ @property
2298
+ @pulumi.getter(name="lastModifiedByType")
2299
+ def last_modified_by_type(self) -> Optional[str]:
2300
+ """
2301
+ The type of identity that last modified the resource.
2302
+ """
2303
+ return pulumi.get(self, "last_modified_by_type")
2304
+
2305
+