pulumi-azure-native 2.65.0a1728039140__py3-none-any.whl → 2.65.1__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (273) hide show
  1. pulumi_azure_native/__init__.py +95 -2
  2. pulumi_azure_native/authorization/__init__.py +3 -0
  3. pulumi_azure_native/authorization/get_role_management_policy_assignment.py +2 -2
  4. pulumi_azure_native/authorization/role_management_policy_assignment.py +3 -3
  5. pulumi_azure_native/authorization/v20201001/role_management_policy_assignment.py +1 -1
  6. pulumi_azure_native/authorization/v20201001preview/role_management_policy_assignment.py +1 -1
  7. pulumi_azure_native/authorization/v20240201preview/role_management_policy_assignment.py +1 -1
  8. pulumi_azure_native/authorization/v20240901preview/__init__.py +10 -0
  9. pulumi_azure_native/authorization/v20240901preview/get_role_management_policy_assignment.py +175 -0
  10. pulumi_azure_native/authorization/v20240901preview/outputs.py +1456 -0
  11. pulumi_azure_native/authorization/v20240901preview/role_management_policy_assignment.py +246 -0
  12. pulumi_azure_native/azurearcdata/__init__.py +8 -0
  13. pulumi_azure_native/azurearcdata/_enums.py +55 -0
  14. pulumi_azure_native/azurearcdata/_inputs.py +226 -0
  15. pulumi_azure_native/azurearcdata/active_directory_connector.py +3 -3
  16. pulumi_azure_native/azurearcdata/data_controller.py +3 -3
  17. pulumi_azure_native/azurearcdata/failover_group.py +3 -3
  18. pulumi_azure_native/azurearcdata/get_active_directory_connector.py +2 -2
  19. pulumi_azure_native/azurearcdata/get_data_controller.py +2 -2
  20. pulumi_azure_native/azurearcdata/get_failover_group.py +2 -2
  21. pulumi_azure_native/azurearcdata/get_postgres_instance.py +2 -2
  22. pulumi_azure_native/azurearcdata/get_sql_managed_instance.py +2 -2
  23. pulumi_azure_native/azurearcdata/get_sql_server_availability_group.py +4 -0
  24. pulumi_azure_native/azurearcdata/get_sql_server_availability_group_detail_view.py +4 -0
  25. pulumi_azure_native/azurearcdata/get_sql_server_database.py +2 -2
  26. pulumi_azure_native/azurearcdata/get_sql_server_esu_license.py +164 -0
  27. pulumi_azure_native/azurearcdata/get_sql_server_instance.py +2 -2
  28. pulumi_azure_native/azurearcdata/get_sql_server_instance_jobs_status.py +96 -0
  29. pulumi_azure_native/azurearcdata/get_sql_server_instance_telemetry.py +4 -0
  30. pulumi_azure_native/azurearcdata/get_sql_server_license.py +164 -0
  31. pulumi_azure_native/azurearcdata/outputs.py +489 -0
  32. pulumi_azure_native/azurearcdata/postgres_instance.py +3 -3
  33. pulumi_azure_native/azurearcdata/sql_managed_instance.py +3 -3
  34. pulumi_azure_native/azurearcdata/sql_server_availability_group.py +5 -1
  35. pulumi_azure_native/azurearcdata/sql_server_database.py +3 -3
  36. pulumi_azure_native/azurearcdata/sql_server_esu_license.py +261 -0
  37. pulumi_azure_native/azurearcdata/sql_server_instance.py +3 -3
  38. pulumi_azure_native/azurearcdata/sql_server_license.py +261 -0
  39. pulumi_azure_native/azurearcdata/v20230115preview/active_directory_connector.py +1 -1
  40. pulumi_azure_native/azurearcdata/v20230115preview/data_controller.py +1 -1
  41. pulumi_azure_native/azurearcdata/v20230115preview/failover_group.py +1 -1
  42. pulumi_azure_native/azurearcdata/v20230115preview/postgres_instance.py +1 -1
  43. pulumi_azure_native/azurearcdata/v20230115preview/sql_managed_instance.py +1 -1
  44. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_database.py +1 -1
  45. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_instance.py +1 -1
  46. pulumi_azure_native/azurearcdata/v20240101/active_directory_connector.py +1 -1
  47. pulumi_azure_native/azurearcdata/v20240101/data_controller.py +1 -1
  48. pulumi_azure_native/azurearcdata/v20240101/failover_group.py +1 -1
  49. pulumi_azure_native/azurearcdata/v20240101/postgres_instance.py +1 -1
  50. pulumi_azure_native/azurearcdata/v20240101/sql_managed_instance.py +1 -1
  51. pulumi_azure_native/azurearcdata/v20240101/sql_server_availability_group.py +1 -1
  52. pulumi_azure_native/azurearcdata/v20240101/sql_server_database.py +1 -1
  53. pulumi_azure_native/azurearcdata/v20240101/sql_server_instance.py +1 -1
  54. pulumi_azure_native/azurearcdata/v20240501preview/__init__.py +33 -0
  55. pulumi_azure_native/azurearcdata/v20240501preview/_enums.py +334 -0
  56. pulumi_azure_native/azurearcdata/v20240501preview/_inputs.py +4953 -0
  57. pulumi_azure_native/azurearcdata/v20240501preview/active_directory_connector.py +222 -0
  58. pulumi_azure_native/azurearcdata/v20240501preview/data_controller.py +288 -0
  59. pulumi_azure_native/azurearcdata/v20240501preview/failover_group.py +222 -0
  60. pulumi_azure_native/azurearcdata/v20240501preview/get_active_directory_connector.py +141 -0
  61. pulumi_azure_native/azurearcdata/v20240501preview/get_data_controller.py +175 -0
  62. pulumi_azure_native/azurearcdata/v20240501preview/get_failover_group.py +141 -0
  63. pulumi_azure_native/azurearcdata/v20240501preview/get_postgres_instance.py +188 -0
  64. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_managed_instance.py +188 -0
  65. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group.py +167 -0
  66. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group_detail_view.py +167 -0
  67. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_database.py +167 -0
  68. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_esu_license.py +162 -0
  69. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance.py +162 -0
  70. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_jobs_status.py +94 -0
  71. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_telemetry.py +141 -0
  72. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_license.py +162 -0
  73. pulumi_azure_native/azurearcdata/v20240501preview/outputs.py +6407 -0
  74. pulumi_azure_native/azurearcdata/v20240501preview/postgres_instance.py +317 -0
  75. pulumi_azure_native/azurearcdata/v20240501preview/sql_managed_instance.py +317 -0
  76. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_availability_group.py +280 -0
  77. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_database.py +280 -0
  78. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_esu_license.py +259 -0
  79. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_instance.py +258 -0
  80. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_license.py +259 -0
  81. pulumi_azure_native/azurefleet/__init__.py +3 -0
  82. pulumi_azure_native/azurefleet/fleet.py +3 -3
  83. pulumi_azure_native/azurefleet/get_fleet.py +2 -2
  84. pulumi_azure_native/azurefleet/v20231101preview/fleet.py +1 -1
  85. pulumi_azure_native/azurefleet/v20240501preview/fleet.py +1 -1
  86. pulumi_azure_native/azurefleet/v20241101/__init__.py +12 -0
  87. pulumi_azure_native/azurefleet/v20241101/_enums.py +795 -0
  88. pulumi_azure_native/azurefleet/v20241101/_inputs.py +7209 -0
  89. pulumi_azure_native/azurefleet/v20241101/fleet.py +522 -0
  90. pulumi_azure_native/azurefleet/v20241101/get_fleet.py +305 -0
  91. pulumi_azure_native/azurefleet/v20241101/outputs.py +5832 -0
  92. pulumi_azure_native/codesigning/__init__.py +3 -0
  93. pulumi_azure_native/codesigning/certificate_profile.py +5 -1
  94. pulumi_azure_native/codesigning/code_signing_account.py +5 -1
  95. pulumi_azure_native/codesigning/get_certificate_profile.py +4 -0
  96. pulumi_azure_native/codesigning/get_code_signing_account.py +4 -0
  97. pulumi_azure_native/codesigning/v20240205preview/certificate_profile.py +1 -1
  98. pulumi_azure_native/codesigning/v20240205preview/code_signing_account.py +1 -1
  99. pulumi_azure_native/codesigning/v20240930preview/__init__.py +14 -0
  100. pulumi_azure_native/codesigning/v20240930preview/_enums.py +50 -0
  101. pulumi_azure_native/codesigning/v20240930preview/_inputs.py +59 -0
  102. pulumi_azure_native/codesigning/v20240930preview/certificate_profile.py +436 -0
  103. pulumi_azure_native/codesigning/v20240930preview/code_signing_account.py +278 -0
  104. pulumi_azure_native/codesigning/v20240930preview/get_certificate_profile.py +245 -0
  105. pulumi_azure_native/codesigning/v20240930preview/get_code_signing_account.py +188 -0
  106. pulumi_azure_native/codesigning/v20240930preview/outputs.py +154 -0
  107. pulumi_azure_native/containerinstance/__init__.py +8 -0
  108. pulumi_azure_native/containerinstance/_enums.py +1 -1
  109. pulumi_azure_native/containerinstance/_inputs.py +165 -0
  110. pulumi_azure_native/containerinstance/container_group.py +3 -3
  111. pulumi_azure_native/containerinstance/get_container_group.py +2 -2
  112. pulumi_azure_native/containerinstance/get_n_group.py +216 -0
  113. pulumi_azure_native/containerinstance/n_group.py +357 -0
  114. pulumi_azure_native/containerinstance/outputs.py +328 -0
  115. pulumi_azure_native/containerinstance/v20210301/container_group.py +1 -1
  116. pulumi_azure_native/containerinstance/v20210701/container_group.py +1 -1
  117. pulumi_azure_native/containerinstance/v20230201preview/container_group.py +1 -1
  118. pulumi_azure_native/containerinstance/v20230501/container_group.py +1 -1
  119. pulumi_azure_native/containerinstance/v20240501preview/container_group.py +1 -1
  120. pulumi_azure_native/containerinstance/v20240901preview/__init__.py +14 -0
  121. pulumi_azure_native/containerinstance/v20240901preview/_enums.py +127 -0
  122. pulumi_azure_native/containerinstance/v20240901preview/_inputs.py +2739 -0
  123. pulumi_azure_native/containerinstance/v20240901preview/container_group.py +746 -0
  124. pulumi_azure_native/containerinstance/v20240901preview/get_container_group.py +386 -0
  125. pulumi_azure_native/containerinstance/v20240901preview/get_n_group.py +214 -0
  126. pulumi_azure_native/containerinstance/v20240901preview/n_group.py +355 -0
  127. pulumi_azure_native/containerinstance/v20240901preview/outputs.py +2792 -0
  128. pulumi_azure_native/containerinstance/v20241001preview/__init__.py +12 -0
  129. pulumi_azure_native/containerinstance/v20241001preview/_enums.py +127 -0
  130. pulumi_azure_native/containerinstance/v20241001preview/_inputs.py +2729 -0
  131. pulumi_azure_native/containerinstance/v20241001preview/container_group.py +775 -0
  132. pulumi_azure_native/containerinstance/v20241001preview/get_container_group.py +399 -0
  133. pulumi_azure_native/containerinstance/v20241001preview/outputs.py +2582 -0
  134. pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
  135. pulumi_azure_native/dbforpostgresql/administrator.py +3 -3
  136. pulumi_azure_native/dbforpostgresql/backup.py +5 -1
  137. pulumi_azure_native/dbforpostgresql/configuration.py +3 -3
  138. pulumi_azure_native/dbforpostgresql/database.py +3 -3
  139. pulumi_azure_native/dbforpostgresql/firewall_rule.py +3 -3
  140. pulumi_azure_native/dbforpostgresql/get_administrator.py +2 -2
  141. pulumi_azure_native/dbforpostgresql/get_backup.py +4 -0
  142. pulumi_azure_native/dbforpostgresql/get_configuration.py +2 -2
  143. pulumi_azure_native/dbforpostgresql/get_database.py +2 -2
  144. pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
  145. pulumi_azure_native/dbforpostgresql/get_get_private_dns_zone_suffix_execute.py +2 -2
  146. pulumi_azure_native/dbforpostgresql/get_migration.py +2 -2
  147. pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
  148. pulumi_azure_native/dbforpostgresql/get_server.py +2 -2
  149. pulumi_azure_native/dbforpostgresql/get_virtual_endpoint.py +2 -2
  150. pulumi_azure_native/dbforpostgresql/migration.py +3 -3
  151. pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +2 -2
  152. pulumi_azure_native/dbforpostgresql/server.py +3 -3
  153. pulumi_azure_native/dbforpostgresql/v20200214preview/server.py +1 -1
  154. pulumi_azure_native/dbforpostgresql/v20210410privatepreview/server.py +1 -1
  155. pulumi_azure_native/dbforpostgresql/v20210615privatepreview/migration.py +1 -1
  156. pulumi_azure_native/dbforpostgresql/v20210615privatepreview/server.py +1 -1
  157. pulumi_azure_native/dbforpostgresql/v20220308preview/server.py +1 -1
  158. pulumi_azure_native/dbforpostgresql/v20220501preview/migration.py +1 -1
  159. pulumi_azure_native/dbforpostgresql/v20221201/administrator.py +1 -1
  160. pulumi_azure_native/dbforpostgresql/v20221201/configuration.py +1 -1
  161. pulumi_azure_native/dbforpostgresql/v20221201/database.py +1 -1
  162. pulumi_azure_native/dbforpostgresql/v20221201/firewall_rule.py +1 -1
  163. pulumi_azure_native/dbforpostgresql/v20221201/server.py +1 -1
  164. pulumi_azure_native/dbforpostgresql/v20230301preview/administrator.py +1 -1
  165. pulumi_azure_native/dbforpostgresql/v20230301preview/configuration.py +1 -1
  166. pulumi_azure_native/dbforpostgresql/v20230301preview/database.py +1 -1
  167. pulumi_azure_native/dbforpostgresql/v20230301preview/firewall_rule.py +1 -1
  168. pulumi_azure_native/dbforpostgresql/v20230301preview/migration.py +1 -1
  169. pulumi_azure_native/dbforpostgresql/v20230301preview/server.py +1 -1
  170. pulumi_azure_native/dbforpostgresql/v20230601preview/administrator.py +1 -1
  171. pulumi_azure_native/dbforpostgresql/v20230601preview/configuration.py +1 -1
  172. pulumi_azure_native/dbforpostgresql/v20230601preview/database.py +1 -1
  173. pulumi_azure_native/dbforpostgresql/v20230601preview/firewall_rule.py +1 -1
  174. pulumi_azure_native/dbforpostgresql/v20230601preview/migration.py +1 -1
  175. pulumi_azure_native/dbforpostgresql/v20230601preview/private_endpoint_connection.py +1 -1
  176. pulumi_azure_native/dbforpostgresql/v20230601preview/server.py +1 -1
  177. pulumi_azure_native/dbforpostgresql/v20230601preview/virtual_endpoint.py +1 -1
  178. pulumi_azure_native/dbforpostgresql/v20231201preview/administrator.py +1 -1
  179. pulumi_azure_native/dbforpostgresql/v20231201preview/configuration.py +1 -1
  180. pulumi_azure_native/dbforpostgresql/v20231201preview/database.py +1 -1
  181. pulumi_azure_native/dbforpostgresql/v20231201preview/firewall_rule.py +1 -1
  182. pulumi_azure_native/dbforpostgresql/v20231201preview/migration.py +1 -1
  183. pulumi_azure_native/dbforpostgresql/v20231201preview/private_endpoint_connection.py +1 -1
  184. pulumi_azure_native/dbforpostgresql/v20231201preview/server.py +1 -1
  185. pulumi_azure_native/dbforpostgresql/v20231201preview/virtual_endpoint.py +1 -1
  186. pulumi_azure_native/dbforpostgresql/v20240301preview/administrator.py +1 -1
  187. pulumi_azure_native/dbforpostgresql/v20240301preview/backup.py +1 -1
  188. pulumi_azure_native/dbforpostgresql/v20240301preview/configuration.py +1 -1
  189. pulumi_azure_native/dbforpostgresql/v20240301preview/database.py +1 -1
  190. pulumi_azure_native/dbforpostgresql/v20240301preview/firewall_rule.py +1 -1
  191. pulumi_azure_native/dbforpostgresql/v20240301preview/migration.py +1 -1
  192. pulumi_azure_native/dbforpostgresql/v20240301preview/private_endpoint_connection.py +1 -1
  193. pulumi_azure_native/dbforpostgresql/v20240301preview/server.py +1 -1
  194. pulumi_azure_native/dbforpostgresql/v20240301preview/virtual_endpoint.py +1 -1
  195. pulumi_azure_native/dbforpostgresql/v20240801/__init__.py +29 -0
  196. pulumi_azure_native/dbforpostgresql/v20240801/_enums.py +318 -0
  197. pulumi_azure_native/dbforpostgresql/v20240801/_inputs.py +1168 -0
  198. pulumi_azure_native/dbforpostgresql/v20240801/administrator.py +287 -0
  199. pulumi_azure_native/dbforpostgresql/v20240801/backup.py +220 -0
  200. pulumi_azure_native/dbforpostgresql/v20240801/configuration.py +338 -0
  201. pulumi_azure_native/dbforpostgresql/v20240801/database.py +248 -0
  202. pulumi_azure_native/dbforpostgresql/v20240801/firewall_rule.py +250 -0
  203. pulumi_azure_native/dbforpostgresql/v20240801/get_administrator.py +180 -0
  204. pulumi_azure_native/dbforpostgresql/v20240801/get_backup.py +167 -0
  205. pulumi_azure_native/dbforpostgresql/v20240801/get_configuration.py +271 -0
  206. pulumi_azure_native/dbforpostgresql/v20240801/get_database.py +154 -0
  207. pulumi_azure_native/dbforpostgresql/v20240801/get_firewall_rule.py +154 -0
  208. pulumi_azure_native/dbforpostgresql/v20240801/get_get_private_dns_zone_suffix_execute.py +66 -0
  209. pulumi_azure_native/dbforpostgresql/v20240801/get_migration.py +471 -0
  210. pulumi_azure_native/dbforpostgresql/v20240801/get_private_endpoint_connection.py +180 -0
  211. pulumi_azure_native/dbforpostgresql/v20240801/get_server.py +409 -0
  212. pulumi_azure_native/dbforpostgresql/v20240801/get_virtual_endpoint.py +167 -0
  213. pulumi_azure_native/dbforpostgresql/v20240801/migration.py +891 -0
  214. pulumi_azure_native/dbforpostgresql/v20240801/outputs.py +1907 -0
  215. pulumi_azure_native/dbforpostgresql/v20240801/private_endpoint_connection.py +252 -0
  216. pulumi_azure_native/dbforpostgresql/v20240801/server.py +778 -0
  217. pulumi_azure_native/dbforpostgresql/v20240801/virtual_endpoint.py +259 -0
  218. pulumi_azure_native/dbforpostgresql/virtual_endpoint.py +3 -3
  219. pulumi_azure_native/iotoperations/__init__.py +3 -0
  220. pulumi_azure_native/iotoperations/broker.py +3 -3
  221. pulumi_azure_native/iotoperations/broker_authentication.py +3 -3
  222. pulumi_azure_native/iotoperations/broker_authorization.py +3 -3
  223. pulumi_azure_native/iotoperations/broker_listener.py +3 -3
  224. pulumi_azure_native/iotoperations/data_flow.py +1 -1
  225. pulumi_azure_native/iotoperations/data_flow_endpoint.py +1 -1
  226. pulumi_azure_native/iotoperations/data_flow_profile.py +1 -1
  227. pulumi_azure_native/iotoperations/get_broker.py +2 -2
  228. pulumi_azure_native/iotoperations/get_broker_authentication.py +2 -2
  229. pulumi_azure_native/iotoperations/get_broker_authorization.py +2 -2
  230. pulumi_azure_native/iotoperations/get_broker_listener.py +2 -2
  231. pulumi_azure_native/iotoperations/get_instance.py +2 -2
  232. pulumi_azure_native/iotoperations/instance.py +3 -3
  233. pulumi_azure_native/iotoperations/v20240701preview/broker.py +1 -1
  234. pulumi_azure_native/iotoperations/v20240701preview/broker_authentication.py +1 -1
  235. pulumi_azure_native/iotoperations/v20240701preview/broker_authorization.py +1 -1
  236. pulumi_azure_native/iotoperations/v20240701preview/broker_listener.py +1 -1
  237. pulumi_azure_native/iotoperations/v20240701preview/data_flow.py +1 -1
  238. pulumi_azure_native/iotoperations/v20240701preview/data_flow_endpoint.py +1 -1
  239. pulumi_azure_native/iotoperations/v20240701preview/data_flow_profile.py +1 -1
  240. pulumi_azure_native/iotoperations/v20240701preview/instance.py +1 -1
  241. pulumi_azure_native/iotoperations/v20240815preview/broker.py +1 -1
  242. pulumi_azure_native/iotoperations/v20240815preview/broker_authentication.py +1 -1
  243. pulumi_azure_native/iotoperations/v20240815preview/broker_authorization.py +1 -1
  244. pulumi_azure_native/iotoperations/v20240815preview/broker_listener.py +1 -1
  245. pulumi_azure_native/iotoperations/v20240815preview/dataflow.py +1 -1
  246. pulumi_azure_native/iotoperations/v20240815preview/dataflow_endpoint.py +1 -1
  247. pulumi_azure_native/iotoperations/v20240815preview/dataflow_profile.py +1 -1
  248. pulumi_azure_native/iotoperations/v20240815preview/instance.py +1 -1
  249. pulumi_azure_native/iotoperations/v20240915preview/__init__.py +26 -0
  250. pulumi_azure_native/iotoperations/v20240915preview/_enums.py +616 -0
  251. pulumi_azure_native/iotoperations/v20240915preview/_inputs.py +6404 -0
  252. pulumi_azure_native/iotoperations/v20240915preview/broker.py +251 -0
  253. pulumi_azure_native/iotoperations/v20240915preview/broker_authentication.py +272 -0
  254. pulumi_azure_native/iotoperations/v20240915preview/broker_authorization.py +272 -0
  255. pulumi_azure_native/iotoperations/v20240915preview/broker_listener.py +272 -0
  256. pulumi_azure_native/iotoperations/v20240915preview/dataflow.py +272 -0
  257. pulumi_azure_native/iotoperations/v20240915preview/dataflow_endpoint.py +251 -0
  258. pulumi_azure_native/iotoperations/v20240915preview/dataflow_profile.py +251 -0
  259. pulumi_azure_native/iotoperations/v20240915preview/get_broker.py +154 -0
  260. pulumi_azure_native/iotoperations/v20240915preview/get_broker_authentication.py +159 -0
  261. pulumi_azure_native/iotoperations/v20240915preview/get_broker_authorization.py +159 -0
  262. pulumi_azure_native/iotoperations/v20240915preview/get_broker_listener.py +159 -0
  263. pulumi_azure_native/iotoperations/v20240915preview/get_dataflow.py +159 -0
  264. pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_endpoint.py +154 -0
  265. pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_profile.py +154 -0
  266. pulumi_azure_native/iotoperations/v20240915preview/get_instance.py +188 -0
  267. pulumi_azure_native/iotoperations/v20240915preview/instance.py +317 -0
  268. pulumi_azure_native/iotoperations/v20240915preview/outputs.py +5389 -0
  269. pulumi_azure_native/pulumi-plugin.json +1 -1
  270. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.1.dist-info}/METADATA +1 -1
  271. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.1.dist-info}/RECORD +273 -164
  272. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.1.dist-info}/WHEEL +0 -0
  273. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1456 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'ApprovalSettingsResponse',
20
+ 'ApprovalStageResponse',
21
+ 'PIMOnlyModeSettingsResponse',
22
+ 'PolicyAssignmentPropertiesResponse',
23
+ 'PolicyAssignmentPropertiesResponsePolicy',
24
+ 'PolicyAssignmentPropertiesResponseRoleDefinition',
25
+ 'PolicyAssignmentPropertiesResponseScope',
26
+ 'PrincipalResponse',
27
+ 'RoleManagementPolicyApprovalRuleResponse',
28
+ 'RoleManagementPolicyAuthenticationContextRuleResponse',
29
+ 'RoleManagementPolicyEnablementRuleResponse',
30
+ 'RoleManagementPolicyExpirationRuleResponse',
31
+ 'RoleManagementPolicyNotificationRuleResponse',
32
+ 'RoleManagementPolicyPimOnlyModeRuleResponse',
33
+ 'RoleManagementPolicyRuleTargetResponse',
34
+ 'UserSetResponse',
35
+ 'UsersOrServicePrincipalSetResponse',
36
+ ]
37
+
38
+ @pulumi.output_type
39
+ class ApprovalSettingsResponse(dict):
40
+ """
41
+ The approval settings.
42
+ """
43
+ @staticmethod
44
+ def __key_warning(key: str):
45
+ suggest = None
46
+ if key == "approvalMode":
47
+ suggest = "approval_mode"
48
+ elif key == "approvalStages":
49
+ suggest = "approval_stages"
50
+ elif key == "isApprovalRequired":
51
+ suggest = "is_approval_required"
52
+ elif key == "isApprovalRequiredForExtension":
53
+ suggest = "is_approval_required_for_extension"
54
+ elif key == "isRequestorJustificationRequired":
55
+ suggest = "is_requestor_justification_required"
56
+
57
+ if suggest:
58
+ pulumi.log.warn(f"Key '{key}' not found in ApprovalSettingsResponse. Access the value via the '{suggest}' property getter instead.")
59
+
60
+ def __getitem__(self, key: str) -> Any:
61
+ ApprovalSettingsResponse.__key_warning(key)
62
+ return super().__getitem__(key)
63
+
64
+ def get(self, key: str, default = None) -> Any:
65
+ ApprovalSettingsResponse.__key_warning(key)
66
+ return super().get(key, default)
67
+
68
+ def __init__(__self__, *,
69
+ approval_mode: Optional[str] = None,
70
+ approval_stages: Optional[Sequence['outputs.ApprovalStageResponse']] = None,
71
+ is_approval_required: Optional[bool] = None,
72
+ is_approval_required_for_extension: Optional[bool] = None,
73
+ is_requestor_justification_required: Optional[bool] = None):
74
+ """
75
+ The approval settings.
76
+ :param str approval_mode: The type of rule
77
+ :param Sequence['ApprovalStageResponse'] approval_stages: The approval stages of the request.
78
+ :param bool is_approval_required: Determines whether approval is required or not.
79
+ :param bool is_approval_required_for_extension: Determines whether approval is required for assignment extension.
80
+ :param bool is_requestor_justification_required: Determine whether requestor justification is required.
81
+ """
82
+ if approval_mode is not None:
83
+ pulumi.set(__self__, "approval_mode", approval_mode)
84
+ if approval_stages is not None:
85
+ pulumi.set(__self__, "approval_stages", approval_stages)
86
+ if is_approval_required is not None:
87
+ pulumi.set(__self__, "is_approval_required", is_approval_required)
88
+ if is_approval_required_for_extension is not None:
89
+ pulumi.set(__self__, "is_approval_required_for_extension", is_approval_required_for_extension)
90
+ if is_requestor_justification_required is not None:
91
+ pulumi.set(__self__, "is_requestor_justification_required", is_requestor_justification_required)
92
+
93
+ @property
94
+ @pulumi.getter(name="approvalMode")
95
+ def approval_mode(self) -> Optional[str]:
96
+ """
97
+ The type of rule
98
+ """
99
+ return pulumi.get(self, "approval_mode")
100
+
101
+ @property
102
+ @pulumi.getter(name="approvalStages")
103
+ def approval_stages(self) -> Optional[Sequence['outputs.ApprovalStageResponse']]:
104
+ """
105
+ The approval stages of the request.
106
+ """
107
+ return pulumi.get(self, "approval_stages")
108
+
109
+ @property
110
+ @pulumi.getter(name="isApprovalRequired")
111
+ def is_approval_required(self) -> Optional[bool]:
112
+ """
113
+ Determines whether approval is required or not.
114
+ """
115
+ return pulumi.get(self, "is_approval_required")
116
+
117
+ @property
118
+ @pulumi.getter(name="isApprovalRequiredForExtension")
119
+ def is_approval_required_for_extension(self) -> Optional[bool]:
120
+ """
121
+ Determines whether approval is required for assignment extension.
122
+ """
123
+ return pulumi.get(self, "is_approval_required_for_extension")
124
+
125
+ @property
126
+ @pulumi.getter(name="isRequestorJustificationRequired")
127
+ def is_requestor_justification_required(self) -> Optional[bool]:
128
+ """
129
+ Determine whether requestor justification is required.
130
+ """
131
+ return pulumi.get(self, "is_requestor_justification_required")
132
+
133
+
134
+ @pulumi.output_type
135
+ class ApprovalStageResponse(dict):
136
+ """
137
+ The approval stage.
138
+ """
139
+ @staticmethod
140
+ def __key_warning(key: str):
141
+ suggest = None
142
+ if key == "approvalStageTimeOutInDays":
143
+ suggest = "approval_stage_time_out_in_days"
144
+ elif key == "escalationApprovers":
145
+ suggest = "escalation_approvers"
146
+ elif key == "escalationTimeInMinutes":
147
+ suggest = "escalation_time_in_minutes"
148
+ elif key == "isApproverJustificationRequired":
149
+ suggest = "is_approver_justification_required"
150
+ elif key == "isEscalationEnabled":
151
+ suggest = "is_escalation_enabled"
152
+ elif key == "primaryApprovers":
153
+ suggest = "primary_approvers"
154
+
155
+ if suggest:
156
+ pulumi.log.warn(f"Key '{key}' not found in ApprovalStageResponse. Access the value via the '{suggest}' property getter instead.")
157
+
158
+ def __getitem__(self, key: str) -> Any:
159
+ ApprovalStageResponse.__key_warning(key)
160
+ return super().__getitem__(key)
161
+
162
+ def get(self, key: str, default = None) -> Any:
163
+ ApprovalStageResponse.__key_warning(key)
164
+ return super().get(key, default)
165
+
166
+ def __init__(__self__, *,
167
+ approval_stage_time_out_in_days: Optional[int] = None,
168
+ escalation_approvers: Optional[Sequence['outputs.UserSetResponse']] = None,
169
+ escalation_time_in_minutes: Optional[int] = None,
170
+ is_approver_justification_required: Optional[bool] = None,
171
+ is_escalation_enabled: Optional[bool] = None,
172
+ primary_approvers: Optional[Sequence['outputs.UserSetResponse']] = None):
173
+ """
174
+ The approval stage.
175
+ :param int approval_stage_time_out_in_days: The time in days when approval request would be timed out
176
+ :param Sequence['UserSetResponse'] escalation_approvers: The escalation approver of the request.
177
+ :param int escalation_time_in_minutes: The time in minutes when the approval request would be escalated if the primary approver does not approve
178
+ :param bool is_approver_justification_required: Determines whether approver need to provide justification for his decision.
179
+ :param bool is_escalation_enabled: The value determine whether escalation feature is enabled.
180
+ :param Sequence['UserSetResponse'] primary_approvers: The primary approver of the request.
181
+ """
182
+ if approval_stage_time_out_in_days is not None:
183
+ pulumi.set(__self__, "approval_stage_time_out_in_days", approval_stage_time_out_in_days)
184
+ if escalation_approvers is not None:
185
+ pulumi.set(__self__, "escalation_approvers", escalation_approvers)
186
+ if escalation_time_in_minutes is not None:
187
+ pulumi.set(__self__, "escalation_time_in_minutes", escalation_time_in_minutes)
188
+ if is_approver_justification_required is not None:
189
+ pulumi.set(__self__, "is_approver_justification_required", is_approver_justification_required)
190
+ if is_escalation_enabled is not None:
191
+ pulumi.set(__self__, "is_escalation_enabled", is_escalation_enabled)
192
+ if primary_approvers is not None:
193
+ pulumi.set(__self__, "primary_approvers", primary_approvers)
194
+
195
+ @property
196
+ @pulumi.getter(name="approvalStageTimeOutInDays")
197
+ def approval_stage_time_out_in_days(self) -> Optional[int]:
198
+ """
199
+ The time in days when approval request would be timed out
200
+ """
201
+ return pulumi.get(self, "approval_stage_time_out_in_days")
202
+
203
+ @property
204
+ @pulumi.getter(name="escalationApprovers")
205
+ def escalation_approvers(self) -> Optional[Sequence['outputs.UserSetResponse']]:
206
+ """
207
+ The escalation approver of the request.
208
+ """
209
+ return pulumi.get(self, "escalation_approvers")
210
+
211
+ @property
212
+ @pulumi.getter(name="escalationTimeInMinutes")
213
+ def escalation_time_in_minutes(self) -> Optional[int]:
214
+ """
215
+ The time in minutes when the approval request would be escalated if the primary approver does not approve
216
+ """
217
+ return pulumi.get(self, "escalation_time_in_minutes")
218
+
219
+ @property
220
+ @pulumi.getter(name="isApproverJustificationRequired")
221
+ def is_approver_justification_required(self) -> Optional[bool]:
222
+ """
223
+ Determines whether approver need to provide justification for his decision.
224
+ """
225
+ return pulumi.get(self, "is_approver_justification_required")
226
+
227
+ @property
228
+ @pulumi.getter(name="isEscalationEnabled")
229
+ def is_escalation_enabled(self) -> Optional[bool]:
230
+ """
231
+ The value determine whether escalation feature is enabled.
232
+ """
233
+ return pulumi.get(self, "is_escalation_enabled")
234
+
235
+ @property
236
+ @pulumi.getter(name="primaryApprovers")
237
+ def primary_approvers(self) -> Optional[Sequence['outputs.UserSetResponse']]:
238
+ """
239
+ The primary approver of the request.
240
+ """
241
+ return pulumi.get(self, "primary_approvers")
242
+
243
+
244
+ @pulumi.output_type
245
+ class PIMOnlyModeSettingsResponse(dict):
246
+ """
247
+ The PIM Only Mode settings.
248
+ """
249
+ @staticmethod
250
+ def __key_warning(key: str):
251
+ suggest = None
252
+ if key == "excludedAssignmentTypes":
253
+ suggest = "excluded_assignment_types"
254
+
255
+ if suggest:
256
+ pulumi.log.warn(f"Key '{key}' not found in PIMOnlyModeSettingsResponse. Access the value via the '{suggest}' property getter instead.")
257
+
258
+ def __getitem__(self, key: str) -> Any:
259
+ PIMOnlyModeSettingsResponse.__key_warning(key)
260
+ return super().__getitem__(key)
261
+
262
+ def get(self, key: str, default = None) -> Any:
263
+ PIMOnlyModeSettingsResponse.__key_warning(key)
264
+ return super().get(key, default)
265
+
266
+ def __init__(__self__, *,
267
+ excluded_assignment_types: Optional[Sequence[str]] = None,
268
+ excludes: Optional[Sequence['outputs.UsersOrServicePrincipalSetResponse']] = None,
269
+ mode: Optional[str] = None):
270
+ """
271
+ The PIM Only Mode settings.
272
+ :param Sequence[str] excluded_assignment_types: The list of excluded assignment types allowed.
273
+ :param Sequence['UsersOrServicePrincipalSetResponse'] excludes: The list of excluded entities that the rule does not apply to.
274
+ :param str mode: Determines whether the setting is enabled, disabled or report only.
275
+ """
276
+ if excluded_assignment_types is not None:
277
+ pulumi.set(__self__, "excluded_assignment_types", excluded_assignment_types)
278
+ if excludes is not None:
279
+ pulumi.set(__self__, "excludes", excludes)
280
+ if mode is not None:
281
+ pulumi.set(__self__, "mode", mode)
282
+
283
+ @property
284
+ @pulumi.getter(name="excludedAssignmentTypes")
285
+ def excluded_assignment_types(self) -> Optional[Sequence[str]]:
286
+ """
287
+ The list of excluded assignment types allowed.
288
+ """
289
+ return pulumi.get(self, "excluded_assignment_types")
290
+
291
+ @property
292
+ @pulumi.getter
293
+ def excludes(self) -> Optional[Sequence['outputs.UsersOrServicePrincipalSetResponse']]:
294
+ """
295
+ The list of excluded entities that the rule does not apply to.
296
+ """
297
+ return pulumi.get(self, "excludes")
298
+
299
+ @property
300
+ @pulumi.getter
301
+ def mode(self) -> Optional[str]:
302
+ """
303
+ Determines whether the setting is enabled, disabled or report only.
304
+ """
305
+ return pulumi.get(self, "mode")
306
+
307
+
308
+ @pulumi.output_type
309
+ class PolicyAssignmentPropertiesResponse(dict):
310
+ """
311
+ Expanded info of resource scope, role definition and policy
312
+ """
313
+ @staticmethod
314
+ def __key_warning(key: str):
315
+ suggest = None
316
+ if key == "roleDefinition":
317
+ suggest = "role_definition"
318
+
319
+ if suggest:
320
+ pulumi.log.warn(f"Key '{key}' not found in PolicyAssignmentPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
321
+
322
+ def __getitem__(self, key: str) -> Any:
323
+ PolicyAssignmentPropertiesResponse.__key_warning(key)
324
+ return super().__getitem__(key)
325
+
326
+ def get(self, key: str, default = None) -> Any:
327
+ PolicyAssignmentPropertiesResponse.__key_warning(key)
328
+ return super().get(key, default)
329
+
330
+ def __init__(__self__, *,
331
+ policy: Optional['outputs.PolicyAssignmentPropertiesResponsePolicy'] = None,
332
+ role_definition: Optional['outputs.PolicyAssignmentPropertiesResponseRoleDefinition'] = None,
333
+ scope: Optional['outputs.PolicyAssignmentPropertiesResponseScope'] = None):
334
+ """
335
+ Expanded info of resource scope, role definition and policy
336
+ :param 'PolicyAssignmentPropertiesResponsePolicy' policy: Details of the policy
337
+ :param 'PolicyAssignmentPropertiesResponseRoleDefinition' role_definition: Details of role definition
338
+ :param 'PolicyAssignmentPropertiesResponseScope' scope: Details of the resource scope
339
+ """
340
+ if policy is not None:
341
+ pulumi.set(__self__, "policy", policy)
342
+ if role_definition is not None:
343
+ pulumi.set(__self__, "role_definition", role_definition)
344
+ if scope is not None:
345
+ pulumi.set(__self__, "scope", scope)
346
+
347
+ @property
348
+ @pulumi.getter
349
+ def policy(self) -> Optional['outputs.PolicyAssignmentPropertiesResponsePolicy']:
350
+ """
351
+ Details of the policy
352
+ """
353
+ return pulumi.get(self, "policy")
354
+
355
+ @property
356
+ @pulumi.getter(name="roleDefinition")
357
+ def role_definition(self) -> Optional['outputs.PolicyAssignmentPropertiesResponseRoleDefinition']:
358
+ """
359
+ Details of role definition
360
+ """
361
+ return pulumi.get(self, "role_definition")
362
+
363
+ @property
364
+ @pulumi.getter
365
+ def scope(self) -> Optional['outputs.PolicyAssignmentPropertiesResponseScope']:
366
+ """
367
+ Details of the resource scope
368
+ """
369
+ return pulumi.get(self, "scope")
370
+
371
+
372
+ @pulumi.output_type
373
+ class PolicyAssignmentPropertiesResponsePolicy(dict):
374
+ """
375
+ Details of the policy
376
+ """
377
+ @staticmethod
378
+ def __key_warning(key: str):
379
+ suggest = None
380
+ if key == "lastModifiedBy":
381
+ suggest = "last_modified_by"
382
+ elif key == "lastModifiedDateTime":
383
+ suggest = "last_modified_date_time"
384
+
385
+ if suggest:
386
+ pulumi.log.warn(f"Key '{key}' not found in PolicyAssignmentPropertiesResponsePolicy. Access the value via the '{suggest}' property getter instead.")
387
+
388
+ def __getitem__(self, key: str) -> Any:
389
+ PolicyAssignmentPropertiesResponsePolicy.__key_warning(key)
390
+ return super().__getitem__(key)
391
+
392
+ def get(self, key: str, default = None) -> Any:
393
+ PolicyAssignmentPropertiesResponsePolicy.__key_warning(key)
394
+ return super().get(key, default)
395
+
396
+ def __init__(__self__, *,
397
+ last_modified_by: 'outputs.PrincipalResponse',
398
+ id: Optional[str] = None,
399
+ last_modified_date_time: Optional[str] = None):
400
+ """
401
+ Details of the policy
402
+ :param 'PrincipalResponse' last_modified_by: The name of the entity last modified it
403
+ :param str id: Id of the policy
404
+ :param str last_modified_date_time: The last modified date time.
405
+ """
406
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
407
+ if id is not None:
408
+ pulumi.set(__self__, "id", id)
409
+ if last_modified_date_time is not None:
410
+ pulumi.set(__self__, "last_modified_date_time", last_modified_date_time)
411
+
412
+ @property
413
+ @pulumi.getter(name="lastModifiedBy")
414
+ def last_modified_by(self) -> 'outputs.PrincipalResponse':
415
+ """
416
+ The name of the entity last modified it
417
+ """
418
+ return pulumi.get(self, "last_modified_by")
419
+
420
+ @property
421
+ @pulumi.getter
422
+ def id(self) -> Optional[str]:
423
+ """
424
+ Id of the policy
425
+ """
426
+ return pulumi.get(self, "id")
427
+
428
+ @property
429
+ @pulumi.getter(name="lastModifiedDateTime")
430
+ def last_modified_date_time(self) -> Optional[str]:
431
+ """
432
+ The last modified date time.
433
+ """
434
+ return pulumi.get(self, "last_modified_date_time")
435
+
436
+
437
+ @pulumi.output_type
438
+ class PolicyAssignmentPropertiesResponseRoleDefinition(dict):
439
+ """
440
+ Details of role definition
441
+ """
442
+ @staticmethod
443
+ def __key_warning(key: str):
444
+ suggest = None
445
+ if key == "displayName":
446
+ suggest = "display_name"
447
+
448
+ if suggest:
449
+ pulumi.log.warn(f"Key '{key}' not found in PolicyAssignmentPropertiesResponseRoleDefinition. Access the value via the '{suggest}' property getter instead.")
450
+
451
+ def __getitem__(self, key: str) -> Any:
452
+ PolicyAssignmentPropertiesResponseRoleDefinition.__key_warning(key)
453
+ return super().__getitem__(key)
454
+
455
+ def get(self, key: str, default = None) -> Any:
456
+ PolicyAssignmentPropertiesResponseRoleDefinition.__key_warning(key)
457
+ return super().get(key, default)
458
+
459
+ def __init__(__self__, *,
460
+ display_name: Optional[str] = None,
461
+ id: Optional[str] = None,
462
+ type: Optional[str] = None):
463
+ """
464
+ Details of role definition
465
+ :param str display_name: Display name of the role definition
466
+ :param str id: Id of the role definition
467
+ :param str type: Type of the role definition
468
+ """
469
+ if display_name is not None:
470
+ pulumi.set(__self__, "display_name", display_name)
471
+ if id is not None:
472
+ pulumi.set(__self__, "id", id)
473
+ if type is not None:
474
+ pulumi.set(__self__, "type", type)
475
+
476
+ @property
477
+ @pulumi.getter(name="displayName")
478
+ def display_name(self) -> Optional[str]:
479
+ """
480
+ Display name of the role definition
481
+ """
482
+ return pulumi.get(self, "display_name")
483
+
484
+ @property
485
+ @pulumi.getter
486
+ def id(self) -> Optional[str]:
487
+ """
488
+ Id of the role definition
489
+ """
490
+ return pulumi.get(self, "id")
491
+
492
+ @property
493
+ @pulumi.getter
494
+ def type(self) -> Optional[str]:
495
+ """
496
+ Type of the role definition
497
+ """
498
+ return pulumi.get(self, "type")
499
+
500
+
501
+ @pulumi.output_type
502
+ class PolicyAssignmentPropertiesResponseScope(dict):
503
+ """
504
+ Details of the resource scope
505
+ """
506
+ @staticmethod
507
+ def __key_warning(key: str):
508
+ suggest = None
509
+ if key == "displayName":
510
+ suggest = "display_name"
511
+
512
+ if suggest:
513
+ pulumi.log.warn(f"Key '{key}' not found in PolicyAssignmentPropertiesResponseScope. Access the value via the '{suggest}' property getter instead.")
514
+
515
+ def __getitem__(self, key: str) -> Any:
516
+ PolicyAssignmentPropertiesResponseScope.__key_warning(key)
517
+ return super().__getitem__(key)
518
+
519
+ def get(self, key: str, default = None) -> Any:
520
+ PolicyAssignmentPropertiesResponseScope.__key_warning(key)
521
+ return super().get(key, default)
522
+
523
+ def __init__(__self__, *,
524
+ display_name: Optional[str] = None,
525
+ id: Optional[str] = None,
526
+ type: Optional[str] = None):
527
+ """
528
+ Details of the resource scope
529
+ :param str display_name: Display name of the resource
530
+ :param str id: Scope id of the resource
531
+ :param str type: Type of the resource
532
+ """
533
+ if display_name is not None:
534
+ pulumi.set(__self__, "display_name", display_name)
535
+ if id is not None:
536
+ pulumi.set(__self__, "id", id)
537
+ if type is not None:
538
+ pulumi.set(__self__, "type", type)
539
+
540
+ @property
541
+ @pulumi.getter(name="displayName")
542
+ def display_name(self) -> Optional[str]:
543
+ """
544
+ Display name of the resource
545
+ """
546
+ return pulumi.get(self, "display_name")
547
+
548
+ @property
549
+ @pulumi.getter
550
+ def id(self) -> Optional[str]:
551
+ """
552
+ Scope id of the resource
553
+ """
554
+ return pulumi.get(self, "id")
555
+
556
+ @property
557
+ @pulumi.getter
558
+ def type(self) -> Optional[str]:
559
+ """
560
+ Type of the resource
561
+ """
562
+ return pulumi.get(self, "type")
563
+
564
+
565
+ @pulumi.output_type
566
+ class PrincipalResponse(dict):
567
+ """
568
+ The name of the entity last modified it
569
+ """
570
+ @staticmethod
571
+ def __key_warning(key: str):
572
+ suggest = None
573
+ if key == "displayName":
574
+ suggest = "display_name"
575
+
576
+ if suggest:
577
+ pulumi.log.warn(f"Key '{key}' not found in PrincipalResponse. Access the value via the '{suggest}' property getter instead.")
578
+
579
+ def __getitem__(self, key: str) -> Any:
580
+ PrincipalResponse.__key_warning(key)
581
+ return super().__getitem__(key)
582
+
583
+ def get(self, key: str, default = None) -> Any:
584
+ PrincipalResponse.__key_warning(key)
585
+ return super().get(key, default)
586
+
587
+ def __init__(__self__, *,
588
+ display_name: Optional[str] = None,
589
+ email: Optional[str] = None,
590
+ id: Optional[str] = None,
591
+ type: Optional[str] = None):
592
+ """
593
+ The name of the entity last modified it
594
+ :param str display_name: The name of the principal made changes
595
+ :param str email: Email of principal
596
+ :param str id: The id of the principal made changes
597
+ :param str type: Type of principal such as user , group etc
598
+ """
599
+ if display_name is not None:
600
+ pulumi.set(__self__, "display_name", display_name)
601
+ if email is not None:
602
+ pulumi.set(__self__, "email", email)
603
+ if id is not None:
604
+ pulumi.set(__self__, "id", id)
605
+ if type is not None:
606
+ pulumi.set(__self__, "type", type)
607
+
608
+ @property
609
+ @pulumi.getter(name="displayName")
610
+ def display_name(self) -> Optional[str]:
611
+ """
612
+ The name of the principal made changes
613
+ """
614
+ return pulumi.get(self, "display_name")
615
+
616
+ @property
617
+ @pulumi.getter
618
+ def email(self) -> Optional[str]:
619
+ """
620
+ Email of principal
621
+ """
622
+ return pulumi.get(self, "email")
623
+
624
+ @property
625
+ @pulumi.getter
626
+ def id(self) -> Optional[str]:
627
+ """
628
+ The id of the principal made changes
629
+ """
630
+ return pulumi.get(self, "id")
631
+
632
+ @property
633
+ @pulumi.getter
634
+ def type(self) -> Optional[str]:
635
+ """
636
+ Type of principal such as user , group etc
637
+ """
638
+ return pulumi.get(self, "type")
639
+
640
+
641
+ @pulumi.output_type
642
+ class RoleManagementPolicyApprovalRuleResponse(dict):
643
+ """
644
+ The role management policy approval rule.
645
+ """
646
+ @staticmethod
647
+ def __key_warning(key: str):
648
+ suggest = None
649
+ if key == "ruleType":
650
+ suggest = "rule_type"
651
+
652
+ if suggest:
653
+ pulumi.log.warn(f"Key '{key}' not found in RoleManagementPolicyApprovalRuleResponse. Access the value via the '{suggest}' property getter instead.")
654
+
655
+ def __getitem__(self, key: str) -> Any:
656
+ RoleManagementPolicyApprovalRuleResponse.__key_warning(key)
657
+ return super().__getitem__(key)
658
+
659
+ def get(self, key: str, default = None) -> Any:
660
+ RoleManagementPolicyApprovalRuleResponse.__key_warning(key)
661
+ return super().get(key, default)
662
+
663
+ def __init__(__self__, *,
664
+ rule_type: str,
665
+ id: Optional[str] = None,
666
+ setting: Optional['outputs.ApprovalSettingsResponse'] = None,
667
+ target: Optional['outputs.RoleManagementPolicyRuleTargetResponse'] = None):
668
+ """
669
+ The role management policy approval rule.
670
+ :param str rule_type: The type of rule
671
+ Expected value is 'RoleManagementPolicyApprovalRule'.
672
+ :param str id: The id of the rule.
673
+ :param 'ApprovalSettingsResponse' setting: The approval setting
674
+ :param 'RoleManagementPolicyRuleTargetResponse' target: The target of the current rule.
675
+ """
676
+ pulumi.set(__self__, "rule_type", 'RoleManagementPolicyApprovalRule')
677
+ if id is not None:
678
+ pulumi.set(__self__, "id", id)
679
+ if setting is not None:
680
+ pulumi.set(__self__, "setting", setting)
681
+ if target is not None:
682
+ pulumi.set(__self__, "target", target)
683
+
684
+ @property
685
+ @pulumi.getter(name="ruleType")
686
+ def rule_type(self) -> str:
687
+ """
688
+ The type of rule
689
+ Expected value is 'RoleManagementPolicyApprovalRule'.
690
+ """
691
+ return pulumi.get(self, "rule_type")
692
+
693
+ @property
694
+ @pulumi.getter
695
+ def id(self) -> Optional[str]:
696
+ """
697
+ The id of the rule.
698
+ """
699
+ return pulumi.get(self, "id")
700
+
701
+ @property
702
+ @pulumi.getter
703
+ def setting(self) -> Optional['outputs.ApprovalSettingsResponse']:
704
+ """
705
+ The approval setting
706
+ """
707
+ return pulumi.get(self, "setting")
708
+
709
+ @property
710
+ @pulumi.getter
711
+ def target(self) -> Optional['outputs.RoleManagementPolicyRuleTargetResponse']:
712
+ """
713
+ The target of the current rule.
714
+ """
715
+ return pulumi.get(self, "target")
716
+
717
+
718
+ @pulumi.output_type
719
+ class RoleManagementPolicyAuthenticationContextRuleResponse(dict):
720
+ """
721
+ The role management policy authentication context rule.
722
+ """
723
+ @staticmethod
724
+ def __key_warning(key: str):
725
+ suggest = None
726
+ if key == "ruleType":
727
+ suggest = "rule_type"
728
+ elif key == "claimValue":
729
+ suggest = "claim_value"
730
+ elif key == "isEnabled":
731
+ suggest = "is_enabled"
732
+
733
+ if suggest:
734
+ pulumi.log.warn(f"Key '{key}' not found in RoleManagementPolicyAuthenticationContextRuleResponse. Access the value via the '{suggest}' property getter instead.")
735
+
736
+ def __getitem__(self, key: str) -> Any:
737
+ RoleManagementPolicyAuthenticationContextRuleResponse.__key_warning(key)
738
+ return super().__getitem__(key)
739
+
740
+ def get(self, key: str, default = None) -> Any:
741
+ RoleManagementPolicyAuthenticationContextRuleResponse.__key_warning(key)
742
+ return super().get(key, default)
743
+
744
+ def __init__(__self__, *,
745
+ rule_type: str,
746
+ claim_value: Optional[str] = None,
747
+ id: Optional[str] = None,
748
+ is_enabled: Optional[bool] = None,
749
+ target: Optional['outputs.RoleManagementPolicyRuleTargetResponse'] = None):
750
+ """
751
+ The role management policy authentication context rule.
752
+ :param str rule_type: The type of rule
753
+ Expected value is 'RoleManagementPolicyAuthenticationContextRule'.
754
+ :param str claim_value: The claim value.
755
+ :param str id: The id of the rule.
756
+ :param bool is_enabled: The value indicating if rule is enabled.
757
+ :param 'RoleManagementPolicyRuleTargetResponse' target: The target of the current rule.
758
+ """
759
+ pulumi.set(__self__, "rule_type", 'RoleManagementPolicyAuthenticationContextRule')
760
+ if claim_value is not None:
761
+ pulumi.set(__self__, "claim_value", claim_value)
762
+ if id is not None:
763
+ pulumi.set(__self__, "id", id)
764
+ if is_enabled is not None:
765
+ pulumi.set(__self__, "is_enabled", is_enabled)
766
+ if target is not None:
767
+ pulumi.set(__self__, "target", target)
768
+
769
+ @property
770
+ @pulumi.getter(name="ruleType")
771
+ def rule_type(self) -> str:
772
+ """
773
+ The type of rule
774
+ Expected value is 'RoleManagementPolicyAuthenticationContextRule'.
775
+ """
776
+ return pulumi.get(self, "rule_type")
777
+
778
+ @property
779
+ @pulumi.getter(name="claimValue")
780
+ def claim_value(self) -> Optional[str]:
781
+ """
782
+ The claim value.
783
+ """
784
+ return pulumi.get(self, "claim_value")
785
+
786
+ @property
787
+ @pulumi.getter
788
+ def id(self) -> Optional[str]:
789
+ """
790
+ The id of the rule.
791
+ """
792
+ return pulumi.get(self, "id")
793
+
794
+ @property
795
+ @pulumi.getter(name="isEnabled")
796
+ def is_enabled(self) -> Optional[bool]:
797
+ """
798
+ The value indicating if rule is enabled.
799
+ """
800
+ return pulumi.get(self, "is_enabled")
801
+
802
+ @property
803
+ @pulumi.getter
804
+ def target(self) -> Optional['outputs.RoleManagementPolicyRuleTargetResponse']:
805
+ """
806
+ The target of the current rule.
807
+ """
808
+ return pulumi.get(self, "target")
809
+
810
+
811
+ @pulumi.output_type
812
+ class RoleManagementPolicyEnablementRuleResponse(dict):
813
+ """
814
+ The role management policy enablement rule.
815
+ """
816
+ @staticmethod
817
+ def __key_warning(key: str):
818
+ suggest = None
819
+ if key == "ruleType":
820
+ suggest = "rule_type"
821
+ elif key == "enabledRules":
822
+ suggest = "enabled_rules"
823
+
824
+ if suggest:
825
+ pulumi.log.warn(f"Key '{key}' not found in RoleManagementPolicyEnablementRuleResponse. Access the value via the '{suggest}' property getter instead.")
826
+
827
+ def __getitem__(self, key: str) -> Any:
828
+ RoleManagementPolicyEnablementRuleResponse.__key_warning(key)
829
+ return super().__getitem__(key)
830
+
831
+ def get(self, key: str, default = None) -> Any:
832
+ RoleManagementPolicyEnablementRuleResponse.__key_warning(key)
833
+ return super().get(key, default)
834
+
835
+ def __init__(__self__, *,
836
+ rule_type: str,
837
+ enabled_rules: Optional[Sequence[str]] = None,
838
+ id: Optional[str] = None,
839
+ target: Optional['outputs.RoleManagementPolicyRuleTargetResponse'] = None):
840
+ """
841
+ The role management policy enablement rule.
842
+ :param str rule_type: The type of rule
843
+ Expected value is 'RoleManagementPolicyEnablementRule'.
844
+ :param Sequence[str] enabled_rules: The list of enabled rules.
845
+ :param str id: The id of the rule.
846
+ :param 'RoleManagementPolicyRuleTargetResponse' target: The target of the current rule.
847
+ """
848
+ pulumi.set(__self__, "rule_type", 'RoleManagementPolicyEnablementRule')
849
+ if enabled_rules is not None:
850
+ pulumi.set(__self__, "enabled_rules", enabled_rules)
851
+ if id is not None:
852
+ pulumi.set(__self__, "id", id)
853
+ if target is not None:
854
+ pulumi.set(__self__, "target", target)
855
+
856
+ @property
857
+ @pulumi.getter(name="ruleType")
858
+ def rule_type(self) -> str:
859
+ """
860
+ The type of rule
861
+ Expected value is 'RoleManagementPolicyEnablementRule'.
862
+ """
863
+ return pulumi.get(self, "rule_type")
864
+
865
+ @property
866
+ @pulumi.getter(name="enabledRules")
867
+ def enabled_rules(self) -> Optional[Sequence[str]]:
868
+ """
869
+ The list of enabled rules.
870
+ """
871
+ return pulumi.get(self, "enabled_rules")
872
+
873
+ @property
874
+ @pulumi.getter
875
+ def id(self) -> Optional[str]:
876
+ """
877
+ The id of the rule.
878
+ """
879
+ return pulumi.get(self, "id")
880
+
881
+ @property
882
+ @pulumi.getter
883
+ def target(self) -> Optional['outputs.RoleManagementPolicyRuleTargetResponse']:
884
+ """
885
+ The target of the current rule.
886
+ """
887
+ return pulumi.get(self, "target")
888
+
889
+
890
+ @pulumi.output_type
891
+ class RoleManagementPolicyExpirationRuleResponse(dict):
892
+ """
893
+ The role management policy expiration rule.
894
+ """
895
+ @staticmethod
896
+ def __key_warning(key: str):
897
+ suggest = None
898
+ if key == "ruleType":
899
+ suggest = "rule_type"
900
+ elif key == "exceptionMembers":
901
+ suggest = "exception_members"
902
+ elif key == "isExpirationRequired":
903
+ suggest = "is_expiration_required"
904
+ elif key == "maximumDuration":
905
+ suggest = "maximum_duration"
906
+
907
+ if suggest:
908
+ pulumi.log.warn(f"Key '{key}' not found in RoleManagementPolicyExpirationRuleResponse. Access the value via the '{suggest}' property getter instead.")
909
+
910
+ def __getitem__(self, key: str) -> Any:
911
+ RoleManagementPolicyExpirationRuleResponse.__key_warning(key)
912
+ return super().__getitem__(key)
913
+
914
+ def get(self, key: str, default = None) -> Any:
915
+ RoleManagementPolicyExpirationRuleResponse.__key_warning(key)
916
+ return super().get(key, default)
917
+
918
+ def __init__(__self__, *,
919
+ rule_type: str,
920
+ exception_members: Optional[Sequence['outputs.UserSetResponse']] = None,
921
+ id: Optional[str] = None,
922
+ is_expiration_required: Optional[bool] = None,
923
+ maximum_duration: Optional[str] = None,
924
+ target: Optional['outputs.RoleManagementPolicyRuleTargetResponse'] = None):
925
+ """
926
+ The role management policy expiration rule.
927
+ :param str rule_type: The type of rule
928
+ Expected value is 'RoleManagementPolicyExpirationRule'.
929
+ :param Sequence['UserSetResponse'] exception_members: The members not restricted by expiration rule.
930
+ :param str id: The id of the rule.
931
+ :param bool is_expiration_required: The value indicating whether expiration is required.
932
+ :param str maximum_duration: The maximum duration of expiration in timespan.
933
+ :param 'RoleManagementPolicyRuleTargetResponse' target: The target of the current rule.
934
+ """
935
+ pulumi.set(__self__, "rule_type", 'RoleManagementPolicyExpirationRule')
936
+ if exception_members is not None:
937
+ pulumi.set(__self__, "exception_members", exception_members)
938
+ if id is not None:
939
+ pulumi.set(__self__, "id", id)
940
+ if is_expiration_required is not None:
941
+ pulumi.set(__self__, "is_expiration_required", is_expiration_required)
942
+ if maximum_duration is not None:
943
+ pulumi.set(__self__, "maximum_duration", maximum_duration)
944
+ if target is not None:
945
+ pulumi.set(__self__, "target", target)
946
+
947
+ @property
948
+ @pulumi.getter(name="ruleType")
949
+ def rule_type(self) -> str:
950
+ """
951
+ The type of rule
952
+ Expected value is 'RoleManagementPolicyExpirationRule'.
953
+ """
954
+ return pulumi.get(self, "rule_type")
955
+
956
+ @property
957
+ @pulumi.getter(name="exceptionMembers")
958
+ def exception_members(self) -> Optional[Sequence['outputs.UserSetResponse']]:
959
+ """
960
+ The members not restricted by expiration rule.
961
+ """
962
+ return pulumi.get(self, "exception_members")
963
+
964
+ @property
965
+ @pulumi.getter
966
+ def id(self) -> Optional[str]:
967
+ """
968
+ The id of the rule.
969
+ """
970
+ return pulumi.get(self, "id")
971
+
972
+ @property
973
+ @pulumi.getter(name="isExpirationRequired")
974
+ def is_expiration_required(self) -> Optional[bool]:
975
+ """
976
+ The value indicating whether expiration is required.
977
+ """
978
+ return pulumi.get(self, "is_expiration_required")
979
+
980
+ @property
981
+ @pulumi.getter(name="maximumDuration")
982
+ def maximum_duration(self) -> Optional[str]:
983
+ """
984
+ The maximum duration of expiration in timespan.
985
+ """
986
+ return pulumi.get(self, "maximum_duration")
987
+
988
+ @property
989
+ @pulumi.getter
990
+ def target(self) -> Optional['outputs.RoleManagementPolicyRuleTargetResponse']:
991
+ """
992
+ The target of the current rule.
993
+ """
994
+ return pulumi.get(self, "target")
995
+
996
+
997
+ @pulumi.output_type
998
+ class RoleManagementPolicyNotificationRuleResponse(dict):
999
+ """
1000
+ The role management policy notification rule.
1001
+ """
1002
+ @staticmethod
1003
+ def __key_warning(key: str):
1004
+ suggest = None
1005
+ if key == "ruleType":
1006
+ suggest = "rule_type"
1007
+ elif key == "isDefaultRecipientsEnabled":
1008
+ suggest = "is_default_recipients_enabled"
1009
+ elif key == "notificationLevel":
1010
+ suggest = "notification_level"
1011
+ elif key == "notificationRecipients":
1012
+ suggest = "notification_recipients"
1013
+ elif key == "notificationType":
1014
+ suggest = "notification_type"
1015
+ elif key == "recipientType":
1016
+ suggest = "recipient_type"
1017
+
1018
+ if suggest:
1019
+ pulumi.log.warn(f"Key '{key}' not found in RoleManagementPolicyNotificationRuleResponse. Access the value via the '{suggest}' property getter instead.")
1020
+
1021
+ def __getitem__(self, key: str) -> Any:
1022
+ RoleManagementPolicyNotificationRuleResponse.__key_warning(key)
1023
+ return super().__getitem__(key)
1024
+
1025
+ def get(self, key: str, default = None) -> Any:
1026
+ RoleManagementPolicyNotificationRuleResponse.__key_warning(key)
1027
+ return super().get(key, default)
1028
+
1029
+ def __init__(__self__, *,
1030
+ rule_type: str,
1031
+ id: Optional[str] = None,
1032
+ is_default_recipients_enabled: Optional[bool] = None,
1033
+ notification_level: Optional[str] = None,
1034
+ notification_recipients: Optional[Sequence[str]] = None,
1035
+ notification_type: Optional[str] = None,
1036
+ recipient_type: Optional[str] = None,
1037
+ target: Optional['outputs.RoleManagementPolicyRuleTargetResponse'] = None):
1038
+ """
1039
+ The role management policy notification rule.
1040
+ :param str rule_type: The type of rule
1041
+ Expected value is 'RoleManagementPolicyNotificationRule'.
1042
+ :param str id: The id of the rule.
1043
+ :param bool is_default_recipients_enabled: Determines if the notification will be sent to the recipient type specified in the policy rule.
1044
+ :param str notification_level: The notification level.
1045
+ :param Sequence[str] notification_recipients: The list of notification recipients.
1046
+ :param str notification_type: The type of notification.
1047
+ :param str recipient_type: The recipient type.
1048
+ :param 'RoleManagementPolicyRuleTargetResponse' target: The target of the current rule.
1049
+ """
1050
+ pulumi.set(__self__, "rule_type", 'RoleManagementPolicyNotificationRule')
1051
+ if id is not None:
1052
+ pulumi.set(__self__, "id", id)
1053
+ if is_default_recipients_enabled is not None:
1054
+ pulumi.set(__self__, "is_default_recipients_enabled", is_default_recipients_enabled)
1055
+ if notification_level is not None:
1056
+ pulumi.set(__self__, "notification_level", notification_level)
1057
+ if notification_recipients is not None:
1058
+ pulumi.set(__self__, "notification_recipients", notification_recipients)
1059
+ if notification_type is not None:
1060
+ pulumi.set(__self__, "notification_type", notification_type)
1061
+ if recipient_type is not None:
1062
+ pulumi.set(__self__, "recipient_type", recipient_type)
1063
+ if target is not None:
1064
+ pulumi.set(__self__, "target", target)
1065
+
1066
+ @property
1067
+ @pulumi.getter(name="ruleType")
1068
+ def rule_type(self) -> str:
1069
+ """
1070
+ The type of rule
1071
+ Expected value is 'RoleManagementPolicyNotificationRule'.
1072
+ """
1073
+ return pulumi.get(self, "rule_type")
1074
+
1075
+ @property
1076
+ @pulumi.getter
1077
+ def id(self) -> Optional[str]:
1078
+ """
1079
+ The id of the rule.
1080
+ """
1081
+ return pulumi.get(self, "id")
1082
+
1083
+ @property
1084
+ @pulumi.getter(name="isDefaultRecipientsEnabled")
1085
+ def is_default_recipients_enabled(self) -> Optional[bool]:
1086
+ """
1087
+ Determines if the notification will be sent to the recipient type specified in the policy rule.
1088
+ """
1089
+ return pulumi.get(self, "is_default_recipients_enabled")
1090
+
1091
+ @property
1092
+ @pulumi.getter(name="notificationLevel")
1093
+ def notification_level(self) -> Optional[str]:
1094
+ """
1095
+ The notification level.
1096
+ """
1097
+ return pulumi.get(self, "notification_level")
1098
+
1099
+ @property
1100
+ @pulumi.getter(name="notificationRecipients")
1101
+ def notification_recipients(self) -> Optional[Sequence[str]]:
1102
+ """
1103
+ The list of notification recipients.
1104
+ """
1105
+ return pulumi.get(self, "notification_recipients")
1106
+
1107
+ @property
1108
+ @pulumi.getter(name="notificationType")
1109
+ def notification_type(self) -> Optional[str]:
1110
+ """
1111
+ The type of notification.
1112
+ """
1113
+ return pulumi.get(self, "notification_type")
1114
+
1115
+ @property
1116
+ @pulumi.getter(name="recipientType")
1117
+ def recipient_type(self) -> Optional[str]:
1118
+ """
1119
+ The recipient type.
1120
+ """
1121
+ return pulumi.get(self, "recipient_type")
1122
+
1123
+ @property
1124
+ @pulumi.getter
1125
+ def target(self) -> Optional['outputs.RoleManagementPolicyRuleTargetResponse']:
1126
+ """
1127
+ The target of the current rule.
1128
+ """
1129
+ return pulumi.get(self, "target")
1130
+
1131
+
1132
+ @pulumi.output_type
1133
+ class RoleManagementPolicyPimOnlyModeRuleResponse(dict):
1134
+ """
1135
+ The role management policy PIM only mode rule.
1136
+ """
1137
+ @staticmethod
1138
+ def __key_warning(key: str):
1139
+ suggest = None
1140
+ if key == "ruleType":
1141
+ suggest = "rule_type"
1142
+ elif key == "pimOnlyModeSettings":
1143
+ suggest = "pim_only_mode_settings"
1144
+
1145
+ if suggest:
1146
+ pulumi.log.warn(f"Key '{key}' not found in RoleManagementPolicyPimOnlyModeRuleResponse. Access the value via the '{suggest}' property getter instead.")
1147
+
1148
+ def __getitem__(self, key: str) -> Any:
1149
+ RoleManagementPolicyPimOnlyModeRuleResponse.__key_warning(key)
1150
+ return super().__getitem__(key)
1151
+
1152
+ def get(self, key: str, default = None) -> Any:
1153
+ RoleManagementPolicyPimOnlyModeRuleResponse.__key_warning(key)
1154
+ return super().get(key, default)
1155
+
1156
+ def __init__(__self__, *,
1157
+ rule_type: str,
1158
+ id: Optional[str] = None,
1159
+ pim_only_mode_settings: Optional['outputs.PIMOnlyModeSettingsResponse'] = None,
1160
+ target: Optional['outputs.RoleManagementPolicyRuleTargetResponse'] = None):
1161
+ """
1162
+ The role management policy PIM only mode rule.
1163
+ :param str rule_type: The type of rule
1164
+ Expected value is 'RoleManagementPolicyPimOnlyModeRule'.
1165
+ :param str id: The id of the rule.
1166
+ :param 'PIMOnlyModeSettingsResponse' pim_only_mode_settings: The PIM Only Mode settings
1167
+ :param 'RoleManagementPolicyRuleTargetResponse' target: The target of the current rule.
1168
+ """
1169
+ pulumi.set(__self__, "rule_type", 'RoleManagementPolicyPimOnlyModeRule')
1170
+ if id is not None:
1171
+ pulumi.set(__self__, "id", id)
1172
+ if pim_only_mode_settings is not None:
1173
+ pulumi.set(__self__, "pim_only_mode_settings", pim_only_mode_settings)
1174
+ if target is not None:
1175
+ pulumi.set(__self__, "target", target)
1176
+
1177
+ @property
1178
+ @pulumi.getter(name="ruleType")
1179
+ def rule_type(self) -> str:
1180
+ """
1181
+ The type of rule
1182
+ Expected value is 'RoleManagementPolicyPimOnlyModeRule'.
1183
+ """
1184
+ return pulumi.get(self, "rule_type")
1185
+
1186
+ @property
1187
+ @pulumi.getter
1188
+ def id(self) -> Optional[str]:
1189
+ """
1190
+ The id of the rule.
1191
+ """
1192
+ return pulumi.get(self, "id")
1193
+
1194
+ @property
1195
+ @pulumi.getter(name="pimOnlyModeSettings")
1196
+ def pim_only_mode_settings(self) -> Optional['outputs.PIMOnlyModeSettingsResponse']:
1197
+ """
1198
+ The PIM Only Mode settings
1199
+ """
1200
+ return pulumi.get(self, "pim_only_mode_settings")
1201
+
1202
+ @property
1203
+ @pulumi.getter
1204
+ def target(self) -> Optional['outputs.RoleManagementPolicyRuleTargetResponse']:
1205
+ """
1206
+ The target of the current rule.
1207
+ """
1208
+ return pulumi.get(self, "target")
1209
+
1210
+
1211
+ @pulumi.output_type
1212
+ class RoleManagementPolicyRuleTargetResponse(dict):
1213
+ """
1214
+ The role management policy rule target.
1215
+ """
1216
+ @staticmethod
1217
+ def __key_warning(key: str):
1218
+ suggest = None
1219
+ if key == "enforcedSettings":
1220
+ suggest = "enforced_settings"
1221
+ elif key == "inheritableSettings":
1222
+ suggest = "inheritable_settings"
1223
+ elif key == "targetObjects":
1224
+ suggest = "target_objects"
1225
+
1226
+ if suggest:
1227
+ pulumi.log.warn(f"Key '{key}' not found in RoleManagementPolicyRuleTargetResponse. Access the value via the '{suggest}' property getter instead.")
1228
+
1229
+ def __getitem__(self, key: str) -> Any:
1230
+ RoleManagementPolicyRuleTargetResponse.__key_warning(key)
1231
+ return super().__getitem__(key)
1232
+
1233
+ def get(self, key: str, default = None) -> Any:
1234
+ RoleManagementPolicyRuleTargetResponse.__key_warning(key)
1235
+ return super().get(key, default)
1236
+
1237
+ def __init__(__self__, *,
1238
+ caller: Optional[str] = None,
1239
+ enforced_settings: Optional[Sequence[str]] = None,
1240
+ inheritable_settings: Optional[Sequence[str]] = None,
1241
+ level: Optional[str] = None,
1242
+ operations: Optional[Sequence[str]] = None,
1243
+ target_objects: Optional[Sequence[str]] = None):
1244
+ """
1245
+ The role management policy rule target.
1246
+ :param str caller: The caller of the setting.
1247
+ :param Sequence[str] enforced_settings: The list of enforced settings.
1248
+ :param Sequence[str] inheritable_settings: The list of inheritable settings.
1249
+ :param str level: The assignment level to which rule is applied.
1250
+ :param Sequence[str] operations: The type of operation.
1251
+ :param Sequence[str] target_objects: The list of target objects.
1252
+ """
1253
+ if caller is not None:
1254
+ pulumi.set(__self__, "caller", caller)
1255
+ if enforced_settings is not None:
1256
+ pulumi.set(__self__, "enforced_settings", enforced_settings)
1257
+ if inheritable_settings is not None:
1258
+ pulumi.set(__self__, "inheritable_settings", inheritable_settings)
1259
+ if level is not None:
1260
+ pulumi.set(__self__, "level", level)
1261
+ if operations is not None:
1262
+ pulumi.set(__self__, "operations", operations)
1263
+ if target_objects is not None:
1264
+ pulumi.set(__self__, "target_objects", target_objects)
1265
+
1266
+ @property
1267
+ @pulumi.getter
1268
+ def caller(self) -> Optional[str]:
1269
+ """
1270
+ The caller of the setting.
1271
+ """
1272
+ return pulumi.get(self, "caller")
1273
+
1274
+ @property
1275
+ @pulumi.getter(name="enforcedSettings")
1276
+ def enforced_settings(self) -> Optional[Sequence[str]]:
1277
+ """
1278
+ The list of enforced settings.
1279
+ """
1280
+ return pulumi.get(self, "enforced_settings")
1281
+
1282
+ @property
1283
+ @pulumi.getter(name="inheritableSettings")
1284
+ def inheritable_settings(self) -> Optional[Sequence[str]]:
1285
+ """
1286
+ The list of inheritable settings.
1287
+ """
1288
+ return pulumi.get(self, "inheritable_settings")
1289
+
1290
+ @property
1291
+ @pulumi.getter
1292
+ def level(self) -> Optional[str]:
1293
+ """
1294
+ The assignment level to which rule is applied.
1295
+ """
1296
+ return pulumi.get(self, "level")
1297
+
1298
+ @property
1299
+ @pulumi.getter
1300
+ def operations(self) -> Optional[Sequence[str]]:
1301
+ """
1302
+ The type of operation.
1303
+ """
1304
+ return pulumi.get(self, "operations")
1305
+
1306
+ @property
1307
+ @pulumi.getter(name="targetObjects")
1308
+ def target_objects(self) -> Optional[Sequence[str]]:
1309
+ """
1310
+ The list of target objects.
1311
+ """
1312
+ return pulumi.get(self, "target_objects")
1313
+
1314
+
1315
+ @pulumi.output_type
1316
+ class UserSetResponse(dict):
1317
+ """
1318
+ The detail of a user.
1319
+ """
1320
+ @staticmethod
1321
+ def __key_warning(key: str):
1322
+ suggest = None
1323
+ if key == "isBackup":
1324
+ suggest = "is_backup"
1325
+ elif key == "userType":
1326
+ suggest = "user_type"
1327
+
1328
+ if suggest:
1329
+ pulumi.log.warn(f"Key '{key}' not found in UserSetResponse. Access the value via the '{suggest}' property getter instead.")
1330
+
1331
+ def __getitem__(self, key: str) -> Any:
1332
+ UserSetResponse.__key_warning(key)
1333
+ return super().__getitem__(key)
1334
+
1335
+ def get(self, key: str, default = None) -> Any:
1336
+ UserSetResponse.__key_warning(key)
1337
+ return super().get(key, default)
1338
+
1339
+ def __init__(__self__, *,
1340
+ description: Optional[str] = None,
1341
+ id: Optional[str] = None,
1342
+ is_backup: Optional[bool] = None,
1343
+ user_type: Optional[str] = None):
1344
+ """
1345
+ The detail of a user.
1346
+ :param str description: The description of the user.
1347
+ :param str id: The object id of the user.
1348
+ :param bool is_backup: The value indicating whether the user is a backup fallback approver
1349
+ :param str user_type: The type of user.
1350
+ """
1351
+ if description is not None:
1352
+ pulumi.set(__self__, "description", description)
1353
+ if id is not None:
1354
+ pulumi.set(__self__, "id", id)
1355
+ if is_backup is not None:
1356
+ pulumi.set(__self__, "is_backup", is_backup)
1357
+ if user_type is not None:
1358
+ pulumi.set(__self__, "user_type", user_type)
1359
+
1360
+ @property
1361
+ @pulumi.getter
1362
+ def description(self) -> Optional[str]:
1363
+ """
1364
+ The description of the user.
1365
+ """
1366
+ return pulumi.get(self, "description")
1367
+
1368
+ @property
1369
+ @pulumi.getter
1370
+ def id(self) -> Optional[str]:
1371
+ """
1372
+ The object id of the user.
1373
+ """
1374
+ return pulumi.get(self, "id")
1375
+
1376
+ @property
1377
+ @pulumi.getter(name="isBackup")
1378
+ def is_backup(self) -> Optional[bool]:
1379
+ """
1380
+ The value indicating whether the user is a backup fallback approver
1381
+ """
1382
+ return pulumi.get(self, "is_backup")
1383
+
1384
+ @property
1385
+ @pulumi.getter(name="userType")
1386
+ def user_type(self) -> Optional[str]:
1387
+ """
1388
+ The type of user.
1389
+ """
1390
+ return pulumi.get(self, "user_type")
1391
+
1392
+
1393
+ @pulumi.output_type
1394
+ class UsersOrServicePrincipalSetResponse(dict):
1395
+ """
1396
+ The detail of a subject.
1397
+ """
1398
+ @staticmethod
1399
+ def __key_warning(key: str):
1400
+ suggest = None
1401
+ if key == "displayName":
1402
+ suggest = "display_name"
1403
+
1404
+ if suggest:
1405
+ pulumi.log.warn(f"Key '{key}' not found in UsersOrServicePrincipalSetResponse. Access the value via the '{suggest}' property getter instead.")
1406
+
1407
+ def __getitem__(self, key: str) -> Any:
1408
+ UsersOrServicePrincipalSetResponse.__key_warning(key)
1409
+ return super().__getitem__(key)
1410
+
1411
+ def get(self, key: str, default = None) -> Any:
1412
+ UsersOrServicePrincipalSetResponse.__key_warning(key)
1413
+ return super().get(key, default)
1414
+
1415
+ def __init__(__self__, *,
1416
+ display_name: Optional[str] = None,
1417
+ id: Optional[str] = None,
1418
+ type: Optional[str] = None):
1419
+ """
1420
+ The detail of a subject.
1421
+ :param str display_name: The display Name of the entity.
1422
+ :param str id: The object id of the entity.
1423
+ :param str type: The type of user.
1424
+ """
1425
+ if display_name is not None:
1426
+ pulumi.set(__self__, "display_name", display_name)
1427
+ if id is not None:
1428
+ pulumi.set(__self__, "id", id)
1429
+ if type is not None:
1430
+ pulumi.set(__self__, "type", type)
1431
+
1432
+ @property
1433
+ @pulumi.getter(name="displayName")
1434
+ def display_name(self) -> Optional[str]:
1435
+ """
1436
+ The display Name of the entity.
1437
+ """
1438
+ return pulumi.get(self, "display_name")
1439
+
1440
+ @property
1441
+ @pulumi.getter
1442
+ def id(self) -> Optional[str]:
1443
+ """
1444
+ The object id of the entity.
1445
+ """
1446
+ return pulumi.get(self, "id")
1447
+
1448
+ @property
1449
+ @pulumi.getter
1450
+ def type(self) -> Optional[str]:
1451
+ """
1452
+ The type of user.
1453
+ """
1454
+ return pulumi.get(self, "type")
1455
+
1456
+