pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.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.
Files changed (313) hide show
  1. pulumi_oci/__init__.py +339 -0
  2. pulumi_oci/bigdataservice/__init__.py +10 -0
  3. pulumi_oci/bigdataservice/_inputs.py +378 -0
  4. pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
  5. pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
  6. pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
  7. pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
  8. pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
  9. pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
  10. pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
  11. pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
  12. pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
  13. pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
  14. pulumi_oci/bigdataservice/outputs.py +798 -0
  15. pulumi_oci/capacitymanagement/__init__.py +18 -0
  16. pulumi_oci/capacitymanagement/_inputs.py +459 -0
  17. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
  18. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
  19. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
  20. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
  21. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
  22. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
  23. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
  24. pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
  25. pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
  26. pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
  27. pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
  28. pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
  29. pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
  30. pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
  31. pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
  32. pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
  33. pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
  34. pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
  35. pulumi_oci/capacitymanagement/outputs.py +3499 -1230
  36. pulumi_oci/containerengine/get_cluster.py +7 -7
  37. pulumi_oci/core/__init__.py +4 -0
  38. pulumi_oci/core/_inputs.py +477 -0
  39. pulumi_oci/core/compute_host.py +910 -0
  40. pulumi_oci/core/compute_host_group.py +648 -0
  41. pulumi_oci/core/dedicated_vm_host.py +56 -0
  42. pulumi_oci/core/get_compute_host.py +72 -1
  43. pulumi_oci/core/get_compute_host_group.py +269 -0
  44. pulumi_oci/core/get_compute_host_groups.py +148 -0
  45. pulumi_oci/core/get_compute_hosts.py +37 -1
  46. pulumi_oci/core/get_dedicated_vm_host.py +29 -1
  47. pulumi_oci/core/outputs.py +912 -24
  48. pulumi_oci/database/__init__.py +2 -0
  49. pulumi_oci/database/_inputs.py +739 -52
  50. pulumi_oci/database/autonomous_container_database.py +141 -12
  51. pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
  52. pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
  53. pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
  54. pulumi_oci/database/autonomous_database_software_image.py +28 -0
  55. pulumi_oci/database/autonomous_vm_cluster.py +28 -0
  56. pulumi_oci/database/backup_destination.py +28 -0
  57. pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
  58. pulumi_oci/database/cloud_vm_cluster.py +82 -7
  59. pulumi_oci/database/database.py +28 -0
  60. pulumi_oci/database/database_software_image.py +28 -0
  61. pulumi_oci/database/database_upgrade.py +28 -0
  62. pulumi_oci/database/db_home.py +28 -0
  63. pulumi_oci/database/db_node.py +28 -0
  64. pulumi_oci/database/db_system.py +28 -0
  65. pulumi_oci/database/exadata_infrastructure.py +28 -0
  66. pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
  67. pulumi_oci/database/external_container_database.py +28 -0
  68. pulumi_oci/database/external_database_connector.py +28 -0
  69. pulumi_oci/database/external_non_container_database.py +28 -0
  70. pulumi_oci/database/external_pluggable_database.py +28 -0
  71. pulumi_oci/database/get_autonomous_container_database.py +52 -2
  72. pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
  73. pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
  74. pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
  75. pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
  76. pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
  77. pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
  78. pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
  79. pulumi_oci/database/get_backup_destination.py +15 -1
  80. pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
  81. pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
  82. pulumi_oci/database/get_database.py +15 -1
  83. pulumi_oci/database/get_database_software_image.py +15 -1
  84. pulumi_oci/database/get_db_home.py +15 -1
  85. pulumi_oci/database/get_db_node.py +15 -1
  86. pulumi_oci/database/get_db_nodes.py +2 -2
  87. pulumi_oci/database/get_db_server.py +15 -1
  88. pulumi_oci/database/get_exadata_infrastructure.py +15 -1
  89. pulumi_oci/database/get_external_container_database.py +15 -1
  90. pulumi_oci/database/get_external_database_connector.py +15 -1
  91. pulumi_oci/database/get_external_non_container_database.py +15 -1
  92. pulumi_oci/database/get_external_pluggable_database.py +15 -1
  93. pulumi_oci/database/get_key_store.py +15 -1
  94. pulumi_oci/database/get_maintenance_run.py +15 -1
  95. pulumi_oci/database/get_oneoff_patch.py +15 -1
  96. pulumi_oci/database/get_pluggable_database.py +15 -1
  97. pulumi_oci/database/get_vm_cluster.py +15 -1
  98. pulumi_oci/database/get_vm_cluster_network.py +15 -1
  99. pulumi_oci/database/key_store.py +28 -0
  100. pulumi_oci/database/maintenance_run.py +28 -0
  101. pulumi_oci/database/oneoff_patch.py +28 -0
  102. pulumi_oci/database/outputs.py +1624 -54
  103. pulumi_oci/database/pluggable_database.py +28 -0
  104. pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
  105. pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
  106. pulumi_oci/database/vm_cluster.py +28 -0
  107. pulumi_oci/database/vm_cluster_network.py +28 -0
  108. pulumi_oci/databasemanagement/__init__.py +7 -0
  109. pulumi_oci/databasemanagement/_inputs.py +196 -0
  110. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
  111. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
  112. pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
  113. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
  114. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
  115. pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
  116. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
  117. pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
  118. pulumi_oci/databasemanagement/outputs.py +1330 -19
  119. pulumi_oci/databasemigration/_inputs.py +94 -0
  120. pulumi_oci/databasemigration/get_migration.py +15 -1
  121. pulumi_oci/databasemigration/get_migrations.py +15 -1
  122. pulumi_oci/databasemigration/job.py +28 -0
  123. pulumi_oci/databasemigration/migration.py +52 -3
  124. pulumi_oci/databasemigration/outputs.py +73 -0
  125. pulumi_oci/dataflow/_inputs.py +20 -0
  126. pulumi_oci/dataflow/outputs.py +36 -0
  127. pulumi_oci/fleetappsmanagement/__init__.py +48 -0
  128. pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
  129. pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
  130. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
  131. pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
  132. pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
  133. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  134. pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
  135. pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
  136. pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
  137. pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
  138. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
  139. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
  140. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
  141. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
  142. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
  143. pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
  144. pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
  145. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
  146. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
  147. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
  148. pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
  149. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
  150. pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
  151. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
  152. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
  153. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  154. pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
  155. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
  156. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
  157. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
  158. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
  159. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
  160. pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
  161. pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
  162. pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
  163. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
  164. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
  165. pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
  166. pulumi_oci/fleetappsmanagement/get_property.py +1 -1
  167. pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
  168. pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
  169. pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
  170. pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
  171. pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
  172. pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
  173. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
  174. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
  175. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
  176. pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
  177. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
  178. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
  179. pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
  180. pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
  181. pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
  182. pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
  183. pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
  184. pulumi_oci/fleetappsmanagement/patch.py +980 -0
  185. pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
  186. pulumi_oci/fleetappsmanagement/property.py +28 -27
  187. pulumi_oci/fleetappsmanagement/provision.py +1195 -0
  188. pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
  189. pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
  190. pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
  191. pulumi_oci/fleetappsmanagement/task_record.py +786 -0
  192. pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
  193. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
  194. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
  195. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
  196. pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
  197. pulumi_oci/generativeai/__init__.py +3 -0
  198. pulumi_oci/generativeai/_inputs.py +1479 -132
  199. pulumi_oci/generativeai/agent_agent.py +66 -11
  200. pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
  201. pulumi_oci/generativeai/agent_data_source.py +70 -21
  202. pulumi_oci/generativeai/agent_tool.py +619 -0
  203. pulumi_oci/generativeai/get_agent_agent.py +17 -2
  204. pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
  205. pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
  206. pulumi_oci/generativeai/get_agent_data_source.py +15 -1
  207. pulumi_oci/generativeai/get_agent_tool.py +283 -0
  208. pulumi_oci/generativeai/get_agent_tools.py +214 -0
  209. pulumi_oci/generativeai/outputs.py +4001 -1259
  210. pulumi_oci/goldengate/_inputs.py +449 -3
  211. pulumi_oci/goldengate/connection.py +200 -56
  212. pulumi_oci/goldengate/get_connection.py +59 -28
  213. pulumi_oci/goldengate/get_connections.py +0 -3
  214. pulumi_oci/goldengate/outputs.py +886 -22
  215. pulumi_oci/kms/vault_verification.py +62 -2
  216. pulumi_oci/loadbalancer/_inputs.py +24 -6
  217. pulumi_oci/loadbalancer/backend.py +35 -7
  218. pulumi_oci/loadbalancer/backend_set.py +35 -7
  219. pulumi_oci/loadbalancer/listener.py +7 -7
  220. pulumi_oci/loadbalancer/load_balancer.py +81 -0
  221. pulumi_oci/loadbalancer/outputs.py +29 -10
  222. pulumi_oci/loganalytics/__init__.py +3 -0
  223. pulumi_oci/loganalytics/_inputs.py +123 -0
  224. pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
  225. pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
  226. pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
  227. pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
  228. pulumi_oci/loganalytics/outputs.py +258 -0
  229. pulumi_oci/mysql/_inputs.py +274 -0
  230. pulumi_oci/mysql/get_mysql_backup.py +29 -1
  231. pulumi_oci/mysql/get_mysql_backups.py +23 -1
  232. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  233. pulumi_oci/mysql/get_replica.py +15 -1
  234. pulumi_oci/mysql/mysql_backup.py +98 -2
  235. pulumi_oci/mysql/mysql_db_system.py +57 -0
  236. pulumi_oci/mysql/outputs.py +594 -0
  237. pulumi_oci/mysql/replica.py +28 -0
  238. pulumi_oci/nosql/__init__.py +2 -0
  239. pulumi_oci/nosql/_inputs.py +129 -3
  240. pulumi_oci/nosql/configuration.py +383 -0
  241. pulumi_oci/nosql/get_configuration.py +162 -0
  242. pulumi_oci/nosql/index.py +7 -7
  243. pulumi_oci/nosql/outputs.py +164 -2
  244. pulumi_oci/nosql/table_replica.py +9 -9
  245. pulumi_oci/oci/__init__.py +56 -0
  246. pulumi_oci/oci/_inputs.py +1615 -0
  247. pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
  248. pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
  249. pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
  250. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
  251. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
  252. pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
  253. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
  254. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
  255. pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
  256. pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
  257. pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
  258. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
  259. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
  260. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
  261. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
  262. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
  263. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
  264. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
  265. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
  266. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
  267. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
  268. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
  269. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
  270. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
  271. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
  272. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
  273. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
  274. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
  275. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
  276. pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
  277. pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
  278. pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
  279. pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
  280. pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
  281. pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
  282. pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
  283. pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
  284. pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
  285. pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
  286. pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
  287. pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
  288. pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
  289. pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
  290. pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
  291. pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
  292. pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
  293. pulumi_oci/oci/outputs.py +5617 -0
  294. pulumi_oci/ospgateway/_inputs.py +20 -0
  295. pulumi_oci/ospgateway/get_subscription.py +15 -1
  296. pulumi_oci/ospgateway/outputs.py +47 -0
  297. pulumi_oci/ospgateway/subscription.py +28 -0
  298. pulumi_oci/pulumi-plugin.json +1 -1
  299. pulumi_oci/redis/__init__.py +8 -0
  300. pulumi_oci/redis/_inputs.py +179 -0
  301. pulumi_oci/redis/get_oci_cache_user.py +283 -0
  302. pulumi_oci/redis/get_oci_cache_users.py +192 -0
  303. pulumi_oci/redis/oci_cache_user.py +695 -0
  304. pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
  305. pulumi_oci/redis/outputs.py +330 -0
  306. pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
  307. pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
  308. pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
  309. pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
  310. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/METADATA +1 -1
  311. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/RECORD +313 -159
  312. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/WHEEL +0 -0
  313. {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,930 @@
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 builtins
6
+ import copy
7
+ import warnings
8
+ import sys
9
+ import pulumi
10
+ import pulumi.runtime
11
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
12
+ if sys.version_info >= (3, 11):
13
+ from typing import NotRequired, TypedDict, TypeAlias
14
+ else:
15
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
16
+ from .. import _utilities
17
+ from . import outputs
18
+ from ._inputs import *
19
+
20
+ __all__ = ['ApiaccesscontrolPrivilegedApiControlArgs', 'ApiaccesscontrolPrivilegedApiControl']
21
+
22
+ @pulumi.input_type
23
+ class ApiaccesscontrolPrivilegedApiControlArgs:
24
+ def __init__(__self__, *,
25
+ approver_group_id_lists: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
26
+ compartment_id: pulumi.Input[builtins.str],
27
+ notification_topic_id: pulumi.Input[builtins.str],
28
+ privileged_operation_lists: pulumi.Input[Sequence[pulumi.Input['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs']]],
29
+ resource_type: pulumi.Input[builtins.str],
30
+ resources: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
31
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
32
+ description: Optional[pulumi.Input[builtins.str]] = None,
33
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
34
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
35
+ number_of_approvers: Optional[pulumi.Input[builtins.int]] = None):
36
+ """
37
+ The set of arguments for constructing a ApiaccesscontrolPrivilegedApiControl resource.
38
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] approver_group_id_lists: (Updatable) List of user IAM group ids who can approve an privilegedApi request associated with a resource governed by this operator control.
39
+ :param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the PrivilegedApiControl in.
40
+ :param pulumi.Input[builtins.str] notification_topic_id: (Updatable) The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Delegation Control.
41
+ :param pulumi.Input[Sequence[pulumi.Input['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs']]] privileged_operation_lists: (Updatable) List of privileged operator operations. If Privileged API Managment is enabled for a resource it will be validated whether the operation done by the operator is a part of privileged operation.
42
+ :param pulumi.Input[builtins.str] resource_type: (Updatable) resourceType for which the PrivilegedApiControl is applicable
43
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] resources: (Updatable) contains Resource details
44
+
45
+
46
+ ** IMPORTANT **
47
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
48
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
49
+ :param pulumi.Input[builtins.str] description: (Updatable) Description of the privilegedApi control.
50
+ :param pulumi.Input[builtins.str] display_name: (Updatable) Name of the privilegedApi control It has to be unique.
51
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
52
+ :param pulumi.Input[builtins.int] number_of_approvers: (Updatable) Number of approvers required to approve an privilegedApi request.
53
+ """
54
+ pulumi.set(__self__, "approver_group_id_lists", approver_group_id_lists)
55
+ pulumi.set(__self__, "compartment_id", compartment_id)
56
+ pulumi.set(__self__, "notification_topic_id", notification_topic_id)
57
+ pulumi.set(__self__, "privileged_operation_lists", privileged_operation_lists)
58
+ pulumi.set(__self__, "resource_type", resource_type)
59
+ pulumi.set(__self__, "resources", resources)
60
+ if defined_tags is not None:
61
+ pulumi.set(__self__, "defined_tags", defined_tags)
62
+ if description is not None:
63
+ pulumi.set(__self__, "description", description)
64
+ if display_name is not None:
65
+ pulumi.set(__self__, "display_name", display_name)
66
+ if freeform_tags is not None:
67
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
68
+ if number_of_approvers is not None:
69
+ pulumi.set(__self__, "number_of_approvers", number_of_approvers)
70
+
71
+ @property
72
+ @pulumi.getter(name="approverGroupIdLists")
73
+ def approver_group_id_lists(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
74
+ """
75
+ (Updatable) List of user IAM group ids who can approve an privilegedApi request associated with a resource governed by this operator control.
76
+ """
77
+ return pulumi.get(self, "approver_group_id_lists")
78
+
79
+ @approver_group_id_lists.setter
80
+ def approver_group_id_lists(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
81
+ pulumi.set(self, "approver_group_id_lists", value)
82
+
83
+ @property
84
+ @pulumi.getter(name="compartmentId")
85
+ def compartment_id(self) -> pulumi.Input[builtins.str]:
86
+ """
87
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the PrivilegedApiControl in.
88
+ """
89
+ return pulumi.get(self, "compartment_id")
90
+
91
+ @compartment_id.setter
92
+ def compartment_id(self, value: pulumi.Input[builtins.str]):
93
+ pulumi.set(self, "compartment_id", value)
94
+
95
+ @property
96
+ @pulumi.getter(name="notificationTopicId")
97
+ def notification_topic_id(self) -> pulumi.Input[builtins.str]:
98
+ """
99
+ (Updatable) The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Delegation Control.
100
+ """
101
+ return pulumi.get(self, "notification_topic_id")
102
+
103
+ @notification_topic_id.setter
104
+ def notification_topic_id(self, value: pulumi.Input[builtins.str]):
105
+ pulumi.set(self, "notification_topic_id", value)
106
+
107
+ @property
108
+ @pulumi.getter(name="privilegedOperationLists")
109
+ def privileged_operation_lists(self) -> pulumi.Input[Sequence[pulumi.Input['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs']]]:
110
+ """
111
+ (Updatable) List of privileged operator operations. If Privileged API Managment is enabled for a resource it will be validated whether the operation done by the operator is a part of privileged operation.
112
+ """
113
+ return pulumi.get(self, "privileged_operation_lists")
114
+
115
+ @privileged_operation_lists.setter
116
+ def privileged_operation_lists(self, value: pulumi.Input[Sequence[pulumi.Input['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs']]]):
117
+ pulumi.set(self, "privileged_operation_lists", value)
118
+
119
+ @property
120
+ @pulumi.getter(name="resourceType")
121
+ def resource_type(self) -> pulumi.Input[builtins.str]:
122
+ """
123
+ (Updatable) resourceType for which the PrivilegedApiControl is applicable
124
+ """
125
+ return pulumi.get(self, "resource_type")
126
+
127
+ @resource_type.setter
128
+ def resource_type(self, value: pulumi.Input[builtins.str]):
129
+ pulumi.set(self, "resource_type", value)
130
+
131
+ @property
132
+ @pulumi.getter
133
+ def resources(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
134
+ """
135
+ (Updatable) contains Resource details
136
+
137
+
138
+ ** IMPORTANT **
139
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
140
+ """
141
+ return pulumi.get(self, "resources")
142
+
143
+ @resources.setter
144
+ def resources(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
145
+ pulumi.set(self, "resources", value)
146
+
147
+ @property
148
+ @pulumi.getter(name="definedTags")
149
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
150
+ """
151
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
152
+ """
153
+ return pulumi.get(self, "defined_tags")
154
+
155
+ @defined_tags.setter
156
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
157
+ pulumi.set(self, "defined_tags", value)
158
+
159
+ @property
160
+ @pulumi.getter
161
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
162
+ """
163
+ (Updatable) Description of the privilegedApi control.
164
+ """
165
+ return pulumi.get(self, "description")
166
+
167
+ @description.setter
168
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
169
+ pulumi.set(self, "description", value)
170
+
171
+ @property
172
+ @pulumi.getter(name="displayName")
173
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
174
+ """
175
+ (Updatable) Name of the privilegedApi control It has to be unique.
176
+ """
177
+ return pulumi.get(self, "display_name")
178
+
179
+ @display_name.setter
180
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
181
+ pulumi.set(self, "display_name", value)
182
+
183
+ @property
184
+ @pulumi.getter(name="freeformTags")
185
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
186
+ """
187
+ (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
188
+ """
189
+ return pulumi.get(self, "freeform_tags")
190
+
191
+ @freeform_tags.setter
192
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
193
+ pulumi.set(self, "freeform_tags", value)
194
+
195
+ @property
196
+ @pulumi.getter(name="numberOfApprovers")
197
+ def number_of_approvers(self) -> Optional[pulumi.Input[builtins.int]]:
198
+ """
199
+ (Updatable) Number of approvers required to approve an privilegedApi request.
200
+ """
201
+ return pulumi.get(self, "number_of_approvers")
202
+
203
+ @number_of_approvers.setter
204
+ def number_of_approvers(self, value: Optional[pulumi.Input[builtins.int]]):
205
+ pulumi.set(self, "number_of_approvers", value)
206
+
207
+
208
+ @pulumi.input_type
209
+ class _ApiaccesscontrolPrivilegedApiControlState:
210
+ def __init__(__self__, *,
211
+ approver_group_id_lists: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
212
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
213
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
214
+ description: Optional[pulumi.Input[builtins.str]] = None,
215
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
216
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
217
+ lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
218
+ notification_topic_id: Optional[pulumi.Input[builtins.str]] = None,
219
+ number_of_approvers: Optional[pulumi.Input[builtins.int]] = None,
220
+ privileged_operation_lists: Optional[pulumi.Input[Sequence[pulumi.Input['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs']]]] = None,
221
+ resource_type: Optional[pulumi.Input[builtins.str]] = None,
222
+ resources: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
223
+ state: Optional[pulumi.Input[builtins.str]] = None,
224
+ state_details: Optional[pulumi.Input[builtins.str]] = None,
225
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
226
+ time_created: Optional[pulumi.Input[builtins.str]] = None,
227
+ time_deleted: Optional[pulumi.Input[builtins.str]] = None,
228
+ time_updated: Optional[pulumi.Input[builtins.str]] = None):
229
+ """
230
+ Input properties used for looking up and filtering ApiaccesscontrolPrivilegedApiControl resources.
231
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] approver_group_id_lists: (Updatable) List of user IAM group ids who can approve an privilegedApi request associated with a resource governed by this operator control.
232
+ :param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the PrivilegedApiControl in.
233
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
234
+ :param pulumi.Input[builtins.str] description: (Updatable) Description of the privilegedApi control.
235
+ :param pulumi.Input[builtins.str] display_name: (Updatable) Name of the privilegedApi control It has to be unique.
236
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
237
+ :param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the PrivilegedApiControl in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
238
+ :param pulumi.Input[builtins.str] notification_topic_id: (Updatable) The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Delegation Control.
239
+ :param pulumi.Input[builtins.int] number_of_approvers: (Updatable) Number of approvers required to approve an privilegedApi request.
240
+ :param pulumi.Input[Sequence[pulumi.Input['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs']]] privileged_operation_lists: (Updatable) List of privileged operator operations. If Privileged API Managment is enabled for a resource it will be validated whether the operation done by the operator is a part of privileged operation.
241
+ :param pulumi.Input[builtins.str] resource_type: (Updatable) resourceType for which the PrivilegedApiControl is applicable
242
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] resources: (Updatable) contains Resource details
243
+
244
+
245
+ ** IMPORTANT **
246
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
247
+ :param pulumi.Input[builtins.str] state: The current state of the PrivilegedApiControl.
248
+ :param pulumi.Input[builtins.str] state_details: A message that describes the current state of the PrivilegedApiControl in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
249
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
250
+ :param pulumi.Input[builtins.str] time_created: The date and time the PrivilegedApiControl was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
251
+ :param pulumi.Input[builtins.str] time_deleted: The date and time the PrivilegedApiControl was marked for delete, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
252
+ :param pulumi.Input[builtins.str] time_updated: The date and time the PrivilegedApiControl was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
253
+ """
254
+ if approver_group_id_lists is not None:
255
+ pulumi.set(__self__, "approver_group_id_lists", approver_group_id_lists)
256
+ if compartment_id is not None:
257
+ pulumi.set(__self__, "compartment_id", compartment_id)
258
+ if defined_tags is not None:
259
+ pulumi.set(__self__, "defined_tags", defined_tags)
260
+ if description is not None:
261
+ pulumi.set(__self__, "description", description)
262
+ if display_name is not None:
263
+ pulumi.set(__self__, "display_name", display_name)
264
+ if freeform_tags is not None:
265
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
266
+ if lifecycle_details is not None:
267
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
268
+ if notification_topic_id is not None:
269
+ pulumi.set(__self__, "notification_topic_id", notification_topic_id)
270
+ if number_of_approvers is not None:
271
+ pulumi.set(__self__, "number_of_approvers", number_of_approvers)
272
+ if privileged_operation_lists is not None:
273
+ pulumi.set(__self__, "privileged_operation_lists", privileged_operation_lists)
274
+ if resource_type is not None:
275
+ pulumi.set(__self__, "resource_type", resource_type)
276
+ if resources is not None:
277
+ pulumi.set(__self__, "resources", resources)
278
+ if state is not None:
279
+ pulumi.set(__self__, "state", state)
280
+ if state_details is not None:
281
+ pulumi.set(__self__, "state_details", state_details)
282
+ if system_tags is not None:
283
+ pulumi.set(__self__, "system_tags", system_tags)
284
+ if time_created is not None:
285
+ pulumi.set(__self__, "time_created", time_created)
286
+ if time_deleted is not None:
287
+ pulumi.set(__self__, "time_deleted", time_deleted)
288
+ if time_updated is not None:
289
+ pulumi.set(__self__, "time_updated", time_updated)
290
+
291
+ @property
292
+ @pulumi.getter(name="approverGroupIdLists")
293
+ def approver_group_id_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
294
+ """
295
+ (Updatable) List of user IAM group ids who can approve an privilegedApi request associated with a resource governed by this operator control.
296
+ """
297
+ return pulumi.get(self, "approver_group_id_lists")
298
+
299
+ @approver_group_id_lists.setter
300
+ def approver_group_id_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
301
+ pulumi.set(self, "approver_group_id_lists", value)
302
+
303
+ @property
304
+ @pulumi.getter(name="compartmentId")
305
+ def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
306
+ """
307
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the PrivilegedApiControl in.
308
+ """
309
+ return pulumi.get(self, "compartment_id")
310
+
311
+ @compartment_id.setter
312
+ def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
313
+ pulumi.set(self, "compartment_id", value)
314
+
315
+ @property
316
+ @pulumi.getter(name="definedTags")
317
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
318
+ """
319
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
320
+ """
321
+ return pulumi.get(self, "defined_tags")
322
+
323
+ @defined_tags.setter
324
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
325
+ pulumi.set(self, "defined_tags", value)
326
+
327
+ @property
328
+ @pulumi.getter
329
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
330
+ """
331
+ (Updatable) Description of the privilegedApi control.
332
+ """
333
+ return pulumi.get(self, "description")
334
+
335
+ @description.setter
336
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
337
+ pulumi.set(self, "description", value)
338
+
339
+ @property
340
+ @pulumi.getter(name="displayName")
341
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
342
+ """
343
+ (Updatable) Name of the privilegedApi control It has to be unique.
344
+ """
345
+ return pulumi.get(self, "display_name")
346
+
347
+ @display_name.setter
348
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
349
+ pulumi.set(self, "display_name", value)
350
+
351
+ @property
352
+ @pulumi.getter(name="freeformTags")
353
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
354
+ """
355
+ (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
356
+ """
357
+ return pulumi.get(self, "freeform_tags")
358
+
359
+ @freeform_tags.setter
360
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
361
+ pulumi.set(self, "freeform_tags", value)
362
+
363
+ @property
364
+ @pulumi.getter(name="lifecycleDetails")
365
+ def lifecycle_details(self) -> Optional[pulumi.Input[builtins.str]]:
366
+ """
367
+ A message that describes the current state of the PrivilegedApiControl in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
368
+ """
369
+ return pulumi.get(self, "lifecycle_details")
370
+
371
+ @lifecycle_details.setter
372
+ def lifecycle_details(self, value: Optional[pulumi.Input[builtins.str]]):
373
+ pulumi.set(self, "lifecycle_details", value)
374
+
375
+ @property
376
+ @pulumi.getter(name="notificationTopicId")
377
+ def notification_topic_id(self) -> Optional[pulumi.Input[builtins.str]]:
378
+ """
379
+ (Updatable) The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Delegation Control.
380
+ """
381
+ return pulumi.get(self, "notification_topic_id")
382
+
383
+ @notification_topic_id.setter
384
+ def notification_topic_id(self, value: Optional[pulumi.Input[builtins.str]]):
385
+ pulumi.set(self, "notification_topic_id", value)
386
+
387
+ @property
388
+ @pulumi.getter(name="numberOfApprovers")
389
+ def number_of_approvers(self) -> Optional[pulumi.Input[builtins.int]]:
390
+ """
391
+ (Updatable) Number of approvers required to approve an privilegedApi request.
392
+ """
393
+ return pulumi.get(self, "number_of_approvers")
394
+
395
+ @number_of_approvers.setter
396
+ def number_of_approvers(self, value: Optional[pulumi.Input[builtins.int]]):
397
+ pulumi.set(self, "number_of_approvers", value)
398
+
399
+ @property
400
+ @pulumi.getter(name="privilegedOperationLists")
401
+ def privileged_operation_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs']]]]:
402
+ """
403
+ (Updatable) List of privileged operator operations. If Privileged API Managment is enabled for a resource it will be validated whether the operation done by the operator is a part of privileged operation.
404
+ """
405
+ return pulumi.get(self, "privileged_operation_lists")
406
+
407
+ @privileged_operation_lists.setter
408
+ def privileged_operation_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs']]]]):
409
+ pulumi.set(self, "privileged_operation_lists", value)
410
+
411
+ @property
412
+ @pulumi.getter(name="resourceType")
413
+ def resource_type(self) -> Optional[pulumi.Input[builtins.str]]:
414
+ """
415
+ (Updatable) resourceType for which the PrivilegedApiControl is applicable
416
+ """
417
+ return pulumi.get(self, "resource_type")
418
+
419
+ @resource_type.setter
420
+ def resource_type(self, value: Optional[pulumi.Input[builtins.str]]):
421
+ pulumi.set(self, "resource_type", value)
422
+
423
+ @property
424
+ @pulumi.getter
425
+ def resources(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
426
+ """
427
+ (Updatable) contains Resource details
428
+
429
+
430
+ ** IMPORTANT **
431
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
432
+ """
433
+ return pulumi.get(self, "resources")
434
+
435
+ @resources.setter
436
+ def resources(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
437
+ pulumi.set(self, "resources", value)
438
+
439
+ @property
440
+ @pulumi.getter
441
+ def state(self) -> Optional[pulumi.Input[builtins.str]]:
442
+ """
443
+ The current state of the PrivilegedApiControl.
444
+ """
445
+ return pulumi.get(self, "state")
446
+
447
+ @state.setter
448
+ def state(self, value: Optional[pulumi.Input[builtins.str]]):
449
+ pulumi.set(self, "state", value)
450
+
451
+ @property
452
+ @pulumi.getter(name="stateDetails")
453
+ def state_details(self) -> Optional[pulumi.Input[builtins.str]]:
454
+ """
455
+ A message that describes the current state of the PrivilegedApiControl in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
456
+ """
457
+ return pulumi.get(self, "state_details")
458
+
459
+ @state_details.setter
460
+ def state_details(self, value: Optional[pulumi.Input[builtins.str]]):
461
+ pulumi.set(self, "state_details", value)
462
+
463
+ @property
464
+ @pulumi.getter(name="systemTags")
465
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
466
+ """
467
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
468
+ """
469
+ return pulumi.get(self, "system_tags")
470
+
471
+ @system_tags.setter
472
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
473
+ pulumi.set(self, "system_tags", value)
474
+
475
+ @property
476
+ @pulumi.getter(name="timeCreated")
477
+ def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
478
+ """
479
+ The date and time the PrivilegedApiControl was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
480
+ """
481
+ return pulumi.get(self, "time_created")
482
+
483
+ @time_created.setter
484
+ def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
485
+ pulumi.set(self, "time_created", value)
486
+
487
+ @property
488
+ @pulumi.getter(name="timeDeleted")
489
+ def time_deleted(self) -> Optional[pulumi.Input[builtins.str]]:
490
+ """
491
+ The date and time the PrivilegedApiControl was marked for delete, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
492
+ """
493
+ return pulumi.get(self, "time_deleted")
494
+
495
+ @time_deleted.setter
496
+ def time_deleted(self, value: Optional[pulumi.Input[builtins.str]]):
497
+ pulumi.set(self, "time_deleted", value)
498
+
499
+ @property
500
+ @pulumi.getter(name="timeUpdated")
501
+ def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
502
+ """
503
+ The date and time the PrivilegedApiControl was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
504
+ """
505
+ return pulumi.get(self, "time_updated")
506
+
507
+ @time_updated.setter
508
+ def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
509
+ pulumi.set(self, "time_updated", value)
510
+
511
+
512
+ @pulumi.type_token("oci:oci/apiaccesscontrolPrivilegedApiControl:ApiaccesscontrolPrivilegedApiControl")
513
+ class ApiaccesscontrolPrivilegedApiControl(pulumi.CustomResource):
514
+ @overload
515
+ def __init__(__self__,
516
+ resource_name: str,
517
+ opts: Optional[pulumi.ResourceOptions] = None,
518
+ approver_group_id_lists: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
519
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
520
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
521
+ description: Optional[pulumi.Input[builtins.str]] = None,
522
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
523
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
524
+ notification_topic_id: Optional[pulumi.Input[builtins.str]] = None,
525
+ number_of_approvers: Optional[pulumi.Input[builtins.int]] = None,
526
+ privileged_operation_lists: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs', 'ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgsDict']]]]] = None,
527
+ resource_type: Optional[pulumi.Input[builtins.str]] = None,
528
+ resources: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
529
+ __props__=None):
530
+ """
531
+ This resource provides the Privileged Api Control resource in Oracle Cloud Infrastructure Apiaccesscontrol service.
532
+
533
+ Creates a PrivilegedApiControl.
534
+
535
+ ## Example Usage
536
+
537
+ ```python
538
+ import pulumi
539
+ import pulumi_oci as oci
540
+
541
+ test_privileged_api_control = oci.oci.ApiaccesscontrolPrivilegedApiControl("test_privileged_api_control",
542
+ approver_group_id_lists=privileged_api_control_approver_group_id_list,
543
+ compartment_id=compartment_id,
544
+ notification_topic_id=test_notification_topic["id"],
545
+ privileged_operation_lists=[{
546
+ "api_name": test_api["name"],
547
+ "attribute_names": privileged_api_control_privileged_operation_list_attribute_names,
548
+ "entity_type": privileged_api_control_privileged_operation_list_entity_type,
549
+ }],
550
+ resource_type=privileged_api_control_resource_type,
551
+ resources=privileged_api_control_resources,
552
+ defined_tags={
553
+ "Operations.CostCenter": "42",
554
+ },
555
+ description=privileged_api_control_description,
556
+ display_name=privileged_api_control_display_name,
557
+ freeform_tags={
558
+ "Department": "Finance",
559
+ },
560
+ number_of_approvers=privileged_api_control_number_of_approvers)
561
+ ```
562
+
563
+ ## Import
564
+
565
+ PrivilegedApiControls can be imported using the `id`, e.g.
566
+
567
+ ```sh
568
+ $ pulumi import oci:oci/apiaccesscontrolPrivilegedApiControl:ApiaccesscontrolPrivilegedApiControl test_privileged_api_control "id"
569
+ ```
570
+
571
+ :param str resource_name: The name of the resource.
572
+ :param pulumi.ResourceOptions opts: Options for the resource.
573
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] approver_group_id_lists: (Updatable) List of user IAM group ids who can approve an privilegedApi request associated with a resource governed by this operator control.
574
+ :param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the PrivilegedApiControl in.
575
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
576
+ :param pulumi.Input[builtins.str] description: (Updatable) Description of the privilegedApi control.
577
+ :param pulumi.Input[builtins.str] display_name: (Updatable) Name of the privilegedApi control It has to be unique.
578
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
579
+ :param pulumi.Input[builtins.str] notification_topic_id: (Updatable) The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Delegation Control.
580
+ :param pulumi.Input[builtins.int] number_of_approvers: (Updatable) Number of approvers required to approve an privilegedApi request.
581
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs', 'ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgsDict']]]] privileged_operation_lists: (Updatable) List of privileged operator operations. If Privileged API Managment is enabled for a resource it will be validated whether the operation done by the operator is a part of privileged operation.
582
+ :param pulumi.Input[builtins.str] resource_type: (Updatable) resourceType for which the PrivilegedApiControl is applicable
583
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] resources: (Updatable) contains Resource details
584
+
585
+
586
+ ** IMPORTANT **
587
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
588
+ """
589
+ ...
590
+ @overload
591
+ def __init__(__self__,
592
+ resource_name: str,
593
+ args: ApiaccesscontrolPrivilegedApiControlArgs,
594
+ opts: Optional[pulumi.ResourceOptions] = None):
595
+ """
596
+ This resource provides the Privileged Api Control resource in Oracle Cloud Infrastructure Apiaccesscontrol service.
597
+
598
+ Creates a PrivilegedApiControl.
599
+
600
+ ## Example Usage
601
+
602
+ ```python
603
+ import pulumi
604
+ import pulumi_oci as oci
605
+
606
+ test_privileged_api_control = oci.oci.ApiaccesscontrolPrivilegedApiControl("test_privileged_api_control",
607
+ approver_group_id_lists=privileged_api_control_approver_group_id_list,
608
+ compartment_id=compartment_id,
609
+ notification_topic_id=test_notification_topic["id"],
610
+ privileged_operation_lists=[{
611
+ "api_name": test_api["name"],
612
+ "attribute_names": privileged_api_control_privileged_operation_list_attribute_names,
613
+ "entity_type": privileged_api_control_privileged_operation_list_entity_type,
614
+ }],
615
+ resource_type=privileged_api_control_resource_type,
616
+ resources=privileged_api_control_resources,
617
+ defined_tags={
618
+ "Operations.CostCenter": "42",
619
+ },
620
+ description=privileged_api_control_description,
621
+ display_name=privileged_api_control_display_name,
622
+ freeform_tags={
623
+ "Department": "Finance",
624
+ },
625
+ number_of_approvers=privileged_api_control_number_of_approvers)
626
+ ```
627
+
628
+ ## Import
629
+
630
+ PrivilegedApiControls can be imported using the `id`, e.g.
631
+
632
+ ```sh
633
+ $ pulumi import oci:oci/apiaccesscontrolPrivilegedApiControl:ApiaccesscontrolPrivilegedApiControl test_privileged_api_control "id"
634
+ ```
635
+
636
+ :param str resource_name: The name of the resource.
637
+ :param ApiaccesscontrolPrivilegedApiControlArgs args: The arguments to use to populate this resource's properties.
638
+ :param pulumi.ResourceOptions opts: Options for the resource.
639
+ """
640
+ ...
641
+ def __init__(__self__, resource_name: str, *args, **kwargs):
642
+ resource_args, opts = _utilities.get_resource_args_opts(ApiaccesscontrolPrivilegedApiControlArgs, pulumi.ResourceOptions, *args, **kwargs)
643
+ if resource_args is not None:
644
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
645
+ else:
646
+ __self__._internal_init(resource_name, *args, **kwargs)
647
+
648
+ def _internal_init(__self__,
649
+ resource_name: str,
650
+ opts: Optional[pulumi.ResourceOptions] = None,
651
+ approver_group_id_lists: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
652
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
653
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
654
+ description: Optional[pulumi.Input[builtins.str]] = None,
655
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
656
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
657
+ notification_topic_id: Optional[pulumi.Input[builtins.str]] = None,
658
+ number_of_approvers: Optional[pulumi.Input[builtins.int]] = None,
659
+ privileged_operation_lists: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs', 'ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgsDict']]]]] = None,
660
+ resource_type: Optional[pulumi.Input[builtins.str]] = None,
661
+ resources: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
662
+ __props__=None):
663
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
664
+ if not isinstance(opts, pulumi.ResourceOptions):
665
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
666
+ if opts.id is None:
667
+ if __props__ is not None:
668
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
669
+ __props__ = ApiaccesscontrolPrivilegedApiControlArgs.__new__(ApiaccesscontrolPrivilegedApiControlArgs)
670
+
671
+ if approver_group_id_lists is None and not opts.urn:
672
+ raise TypeError("Missing required property 'approver_group_id_lists'")
673
+ __props__.__dict__["approver_group_id_lists"] = approver_group_id_lists
674
+ if compartment_id is None and not opts.urn:
675
+ raise TypeError("Missing required property 'compartment_id'")
676
+ __props__.__dict__["compartment_id"] = compartment_id
677
+ __props__.__dict__["defined_tags"] = defined_tags
678
+ __props__.__dict__["description"] = description
679
+ __props__.__dict__["display_name"] = display_name
680
+ __props__.__dict__["freeform_tags"] = freeform_tags
681
+ if notification_topic_id is None and not opts.urn:
682
+ raise TypeError("Missing required property 'notification_topic_id'")
683
+ __props__.__dict__["notification_topic_id"] = notification_topic_id
684
+ __props__.__dict__["number_of_approvers"] = number_of_approvers
685
+ if privileged_operation_lists is None and not opts.urn:
686
+ raise TypeError("Missing required property 'privileged_operation_lists'")
687
+ __props__.__dict__["privileged_operation_lists"] = privileged_operation_lists
688
+ if resource_type is None and not opts.urn:
689
+ raise TypeError("Missing required property 'resource_type'")
690
+ __props__.__dict__["resource_type"] = resource_type
691
+ if resources is None and not opts.urn:
692
+ raise TypeError("Missing required property 'resources'")
693
+ __props__.__dict__["resources"] = resources
694
+ __props__.__dict__["lifecycle_details"] = None
695
+ __props__.__dict__["state"] = None
696
+ __props__.__dict__["state_details"] = None
697
+ __props__.__dict__["system_tags"] = None
698
+ __props__.__dict__["time_created"] = None
699
+ __props__.__dict__["time_deleted"] = None
700
+ __props__.__dict__["time_updated"] = None
701
+ super(ApiaccesscontrolPrivilegedApiControl, __self__).__init__(
702
+ 'oci:oci/apiaccesscontrolPrivilegedApiControl:ApiaccesscontrolPrivilegedApiControl',
703
+ resource_name,
704
+ __props__,
705
+ opts)
706
+
707
+ @staticmethod
708
+ def get(resource_name: str,
709
+ id: pulumi.Input[str],
710
+ opts: Optional[pulumi.ResourceOptions] = None,
711
+ approver_group_id_lists: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
712
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
713
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
714
+ description: Optional[pulumi.Input[builtins.str]] = None,
715
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
716
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
717
+ lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
718
+ notification_topic_id: Optional[pulumi.Input[builtins.str]] = None,
719
+ number_of_approvers: Optional[pulumi.Input[builtins.int]] = None,
720
+ privileged_operation_lists: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs', 'ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgsDict']]]]] = None,
721
+ resource_type: Optional[pulumi.Input[builtins.str]] = None,
722
+ resources: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
723
+ state: Optional[pulumi.Input[builtins.str]] = None,
724
+ state_details: Optional[pulumi.Input[builtins.str]] = None,
725
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
726
+ time_created: Optional[pulumi.Input[builtins.str]] = None,
727
+ time_deleted: Optional[pulumi.Input[builtins.str]] = None,
728
+ time_updated: Optional[pulumi.Input[builtins.str]] = None) -> 'ApiaccesscontrolPrivilegedApiControl':
729
+ """
730
+ Get an existing ApiaccesscontrolPrivilegedApiControl resource's state with the given name, id, and optional extra
731
+ properties used to qualify the lookup.
732
+
733
+ :param str resource_name: The unique name of the resulting resource.
734
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
735
+ :param pulumi.ResourceOptions opts: Options for the resource.
736
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] approver_group_id_lists: (Updatable) List of user IAM group ids who can approve an privilegedApi request associated with a resource governed by this operator control.
737
+ :param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the PrivilegedApiControl in.
738
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
739
+ :param pulumi.Input[builtins.str] description: (Updatable) Description of the privilegedApi control.
740
+ :param pulumi.Input[builtins.str] display_name: (Updatable) Name of the privilegedApi control It has to be unique.
741
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
742
+ :param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the PrivilegedApiControl in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
743
+ :param pulumi.Input[builtins.str] notification_topic_id: (Updatable) The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Delegation Control.
744
+ :param pulumi.Input[builtins.int] number_of_approvers: (Updatable) Number of approvers required to approve an privilegedApi request.
745
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs', 'ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgsDict']]]] privileged_operation_lists: (Updatable) List of privileged operator operations. If Privileged API Managment is enabled for a resource it will be validated whether the operation done by the operator is a part of privileged operation.
746
+ :param pulumi.Input[builtins.str] resource_type: (Updatable) resourceType for which the PrivilegedApiControl is applicable
747
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] resources: (Updatable) contains Resource details
748
+
749
+
750
+ ** IMPORTANT **
751
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
752
+ :param pulumi.Input[builtins.str] state: The current state of the PrivilegedApiControl.
753
+ :param pulumi.Input[builtins.str] state_details: A message that describes the current state of the PrivilegedApiControl in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
754
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
755
+ :param pulumi.Input[builtins.str] time_created: The date and time the PrivilegedApiControl was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
756
+ :param pulumi.Input[builtins.str] time_deleted: The date and time the PrivilegedApiControl was marked for delete, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
757
+ :param pulumi.Input[builtins.str] time_updated: The date and time the PrivilegedApiControl was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
758
+ """
759
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
760
+
761
+ __props__ = _ApiaccesscontrolPrivilegedApiControlState.__new__(_ApiaccesscontrolPrivilegedApiControlState)
762
+
763
+ __props__.__dict__["approver_group_id_lists"] = approver_group_id_lists
764
+ __props__.__dict__["compartment_id"] = compartment_id
765
+ __props__.__dict__["defined_tags"] = defined_tags
766
+ __props__.__dict__["description"] = description
767
+ __props__.__dict__["display_name"] = display_name
768
+ __props__.__dict__["freeform_tags"] = freeform_tags
769
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
770
+ __props__.__dict__["notification_topic_id"] = notification_topic_id
771
+ __props__.__dict__["number_of_approvers"] = number_of_approvers
772
+ __props__.__dict__["privileged_operation_lists"] = privileged_operation_lists
773
+ __props__.__dict__["resource_type"] = resource_type
774
+ __props__.__dict__["resources"] = resources
775
+ __props__.__dict__["state"] = state
776
+ __props__.__dict__["state_details"] = state_details
777
+ __props__.__dict__["system_tags"] = system_tags
778
+ __props__.__dict__["time_created"] = time_created
779
+ __props__.__dict__["time_deleted"] = time_deleted
780
+ __props__.__dict__["time_updated"] = time_updated
781
+ return ApiaccesscontrolPrivilegedApiControl(resource_name, opts=opts, __props__=__props__)
782
+
783
+ @property
784
+ @pulumi.getter(name="approverGroupIdLists")
785
+ def approver_group_id_lists(self) -> pulumi.Output[Sequence[builtins.str]]:
786
+ """
787
+ (Updatable) List of user IAM group ids who can approve an privilegedApi request associated with a resource governed by this operator control.
788
+ """
789
+ return pulumi.get(self, "approver_group_id_lists")
790
+
791
+ @property
792
+ @pulumi.getter(name="compartmentId")
793
+ def compartment_id(self) -> pulumi.Output[builtins.str]:
794
+ """
795
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the PrivilegedApiControl in.
796
+ """
797
+ return pulumi.get(self, "compartment_id")
798
+
799
+ @property
800
+ @pulumi.getter(name="definedTags")
801
+ def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
802
+ """
803
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
804
+ """
805
+ return pulumi.get(self, "defined_tags")
806
+
807
+ @property
808
+ @pulumi.getter
809
+ def description(self) -> pulumi.Output[builtins.str]:
810
+ """
811
+ (Updatable) Description of the privilegedApi control.
812
+ """
813
+ return pulumi.get(self, "description")
814
+
815
+ @property
816
+ @pulumi.getter(name="displayName")
817
+ def display_name(self) -> pulumi.Output[builtins.str]:
818
+ """
819
+ (Updatable) Name of the privilegedApi control It has to be unique.
820
+ """
821
+ return pulumi.get(self, "display_name")
822
+
823
+ @property
824
+ @pulumi.getter(name="freeformTags")
825
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
826
+ """
827
+ (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
828
+ """
829
+ return pulumi.get(self, "freeform_tags")
830
+
831
+ @property
832
+ @pulumi.getter(name="lifecycleDetails")
833
+ def lifecycle_details(self) -> pulumi.Output[builtins.str]:
834
+ """
835
+ A message that describes the current state of the PrivilegedApiControl in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
836
+ """
837
+ return pulumi.get(self, "lifecycle_details")
838
+
839
+ @property
840
+ @pulumi.getter(name="notificationTopicId")
841
+ def notification_topic_id(self) -> pulumi.Output[builtins.str]:
842
+ """
843
+ (Updatable) The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Delegation Control.
844
+ """
845
+ return pulumi.get(self, "notification_topic_id")
846
+
847
+ @property
848
+ @pulumi.getter(name="numberOfApprovers")
849
+ def number_of_approvers(self) -> pulumi.Output[builtins.int]:
850
+ """
851
+ (Updatable) Number of approvers required to approve an privilegedApi request.
852
+ """
853
+ return pulumi.get(self, "number_of_approvers")
854
+
855
+ @property
856
+ @pulumi.getter(name="privilegedOperationLists")
857
+ def privileged_operation_lists(self) -> pulumi.Output[Sequence['outputs.ApiaccesscontrolPrivilegedApiControlPrivilegedOperationList']]:
858
+ """
859
+ (Updatable) List of privileged operator operations. If Privileged API Managment is enabled for a resource it will be validated whether the operation done by the operator is a part of privileged operation.
860
+ """
861
+ return pulumi.get(self, "privileged_operation_lists")
862
+
863
+ @property
864
+ @pulumi.getter(name="resourceType")
865
+ def resource_type(self) -> pulumi.Output[builtins.str]:
866
+ """
867
+ (Updatable) resourceType for which the PrivilegedApiControl is applicable
868
+ """
869
+ return pulumi.get(self, "resource_type")
870
+
871
+ @property
872
+ @pulumi.getter
873
+ def resources(self) -> pulumi.Output[Sequence[builtins.str]]:
874
+ """
875
+ (Updatable) contains Resource details
876
+
877
+
878
+ ** IMPORTANT **
879
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
880
+ """
881
+ return pulumi.get(self, "resources")
882
+
883
+ @property
884
+ @pulumi.getter
885
+ def state(self) -> pulumi.Output[builtins.str]:
886
+ """
887
+ The current state of the PrivilegedApiControl.
888
+ """
889
+ return pulumi.get(self, "state")
890
+
891
+ @property
892
+ @pulumi.getter(name="stateDetails")
893
+ def state_details(self) -> pulumi.Output[builtins.str]:
894
+ """
895
+ A message that describes the current state of the PrivilegedApiControl in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
896
+ """
897
+ return pulumi.get(self, "state_details")
898
+
899
+ @property
900
+ @pulumi.getter(name="systemTags")
901
+ def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
902
+ """
903
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
904
+ """
905
+ return pulumi.get(self, "system_tags")
906
+
907
+ @property
908
+ @pulumi.getter(name="timeCreated")
909
+ def time_created(self) -> pulumi.Output[builtins.str]:
910
+ """
911
+ The date and time the PrivilegedApiControl was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
912
+ """
913
+ return pulumi.get(self, "time_created")
914
+
915
+ @property
916
+ @pulumi.getter(name="timeDeleted")
917
+ def time_deleted(self) -> pulumi.Output[builtins.str]:
918
+ """
919
+ The date and time the PrivilegedApiControl was marked for delete, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
920
+ """
921
+ return pulumi.get(self, "time_deleted")
922
+
923
+ @property
924
+ @pulumi.getter(name="timeUpdated")
925
+ def time_updated(self) -> pulumi.Output[builtins.str]:
926
+ """
927
+ The date and time the PrivilegedApiControl was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
928
+ """
929
+ return pulumi.get(self, "time_updated")
930
+