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,811 @@
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__ = ['CompliancePolicyRuleArgs', 'CompliancePolicyRule']
21
+
22
+ @pulumi.input_type
23
+ class CompliancePolicyRuleArgs:
24
+ def __init__(__self__, *,
25
+ compliance_policy_id: pulumi.Input[builtins.str],
26
+ display_name: pulumi.Input[builtins.str],
27
+ patch_selection: pulumi.Input['CompliancePolicyRulePatchSelectionArgs'],
28
+ patch_type_ids: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
29
+ product_version: pulumi.Input['CompliancePolicyRuleProductVersionArgs'],
30
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
31
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
32
+ grace_period: Optional[pulumi.Input[builtins.str]] = None,
33
+ severities: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
34
+ """
35
+ The set of arguments for constructing a CompliancePolicyRule resource.
36
+ :param pulumi.Input[builtins.str] compliance_policy_id: Unique OCID of the CompliancePolicy this CompliancePolicyRule belongs to.
37
+ :param pulumi.Input[builtins.str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
38
+ :param pulumi.Input['CompliancePolicyRulePatchSelectionArgs'] patch_selection: (Updatable) Patch Selection Details
39
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] patch_type_ids: (Updatable) PlatformConfiguration OCID for the patch type to which this CompliancePolicyRule applies.
40
+ :param pulumi.Input['CompliancePolicyRuleProductVersionArgs'] product_version: (Updatable) A specific product version or a specific version and succeeding. Example: 12.1 or 12.1 and above for Oracle WebLogic Application server. The policy applies to the next version only, and not to other versions such as, 12.1.x.
41
+ :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. Example: `{"foo-namespace.bar-key": "value"}`
42
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
43
+ :param pulumi.Input[builtins.str] grace_period: (Updatable) Grace period in days,weeks,months or years the exemption is applicable for the rule. This enables a grace period when Fleet Application Management doesn't report the product as noncompliant when patch is not applied.
44
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] severities: (Updatable) Severity to which this CompliancePolicyRule applies.
45
+
46
+
47
+ ** IMPORTANT **
48
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
49
+ """
50
+ pulumi.set(__self__, "compliance_policy_id", compliance_policy_id)
51
+ pulumi.set(__self__, "display_name", display_name)
52
+ pulumi.set(__self__, "patch_selection", patch_selection)
53
+ pulumi.set(__self__, "patch_type_ids", patch_type_ids)
54
+ pulumi.set(__self__, "product_version", product_version)
55
+ if defined_tags is not None:
56
+ pulumi.set(__self__, "defined_tags", defined_tags)
57
+ if freeform_tags is not None:
58
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
59
+ if grace_period is not None:
60
+ pulumi.set(__self__, "grace_period", grace_period)
61
+ if severities is not None:
62
+ pulumi.set(__self__, "severities", severities)
63
+
64
+ @property
65
+ @pulumi.getter(name="compliancePolicyId")
66
+ def compliance_policy_id(self) -> pulumi.Input[builtins.str]:
67
+ """
68
+ Unique OCID of the CompliancePolicy this CompliancePolicyRule belongs to.
69
+ """
70
+ return pulumi.get(self, "compliance_policy_id")
71
+
72
+ @compliance_policy_id.setter
73
+ def compliance_policy_id(self, value: pulumi.Input[builtins.str]):
74
+ pulumi.set(self, "compliance_policy_id", value)
75
+
76
+ @property
77
+ @pulumi.getter(name="displayName")
78
+ def display_name(self) -> pulumi.Input[builtins.str]:
79
+ """
80
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
81
+ """
82
+ return pulumi.get(self, "display_name")
83
+
84
+ @display_name.setter
85
+ def display_name(self, value: pulumi.Input[builtins.str]):
86
+ pulumi.set(self, "display_name", value)
87
+
88
+ @property
89
+ @pulumi.getter(name="patchSelection")
90
+ def patch_selection(self) -> pulumi.Input['CompliancePolicyRulePatchSelectionArgs']:
91
+ """
92
+ (Updatable) Patch Selection Details
93
+ """
94
+ return pulumi.get(self, "patch_selection")
95
+
96
+ @patch_selection.setter
97
+ def patch_selection(self, value: pulumi.Input['CompliancePolicyRulePatchSelectionArgs']):
98
+ pulumi.set(self, "patch_selection", value)
99
+
100
+ @property
101
+ @pulumi.getter(name="patchTypeIds")
102
+ def patch_type_ids(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
103
+ """
104
+ (Updatable) PlatformConfiguration OCID for the patch type to which this CompliancePolicyRule applies.
105
+ """
106
+ return pulumi.get(self, "patch_type_ids")
107
+
108
+ @patch_type_ids.setter
109
+ def patch_type_ids(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
110
+ pulumi.set(self, "patch_type_ids", value)
111
+
112
+ @property
113
+ @pulumi.getter(name="productVersion")
114
+ def product_version(self) -> pulumi.Input['CompliancePolicyRuleProductVersionArgs']:
115
+ """
116
+ (Updatable) A specific product version or a specific version and succeeding. Example: 12.1 or 12.1 and above for Oracle WebLogic Application server. The policy applies to the next version only, and not to other versions such as, 12.1.x.
117
+ """
118
+ return pulumi.get(self, "product_version")
119
+
120
+ @product_version.setter
121
+ def product_version(self, value: pulumi.Input['CompliancePolicyRuleProductVersionArgs']):
122
+ pulumi.set(self, "product_version", value)
123
+
124
+ @property
125
+ @pulumi.getter(name="definedTags")
126
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
127
+ """
128
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
129
+ """
130
+ return pulumi.get(self, "defined_tags")
131
+
132
+ @defined_tags.setter
133
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
134
+ pulumi.set(self, "defined_tags", value)
135
+
136
+ @property
137
+ @pulumi.getter(name="freeformTags")
138
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
139
+ """
140
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
141
+ """
142
+ return pulumi.get(self, "freeform_tags")
143
+
144
+ @freeform_tags.setter
145
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
146
+ pulumi.set(self, "freeform_tags", value)
147
+
148
+ @property
149
+ @pulumi.getter(name="gracePeriod")
150
+ def grace_period(self) -> Optional[pulumi.Input[builtins.str]]:
151
+ """
152
+ (Updatable) Grace period in days,weeks,months or years the exemption is applicable for the rule. This enables a grace period when Fleet Application Management doesn't report the product as noncompliant when patch is not applied.
153
+ """
154
+ return pulumi.get(self, "grace_period")
155
+
156
+ @grace_period.setter
157
+ def grace_period(self, value: Optional[pulumi.Input[builtins.str]]):
158
+ pulumi.set(self, "grace_period", value)
159
+
160
+ @property
161
+ @pulumi.getter
162
+ def severities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
163
+ """
164
+ (Updatable) Severity to which this CompliancePolicyRule applies.
165
+
166
+
167
+ ** IMPORTANT **
168
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
169
+ """
170
+ return pulumi.get(self, "severities")
171
+
172
+ @severities.setter
173
+ def severities(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
174
+ pulumi.set(self, "severities", value)
175
+
176
+
177
+ @pulumi.input_type
178
+ class _CompliancePolicyRuleState:
179
+ def __init__(__self__, *,
180
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
181
+ compliance_policy_id: Optional[pulumi.Input[builtins.str]] = None,
182
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
183
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
184
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
185
+ grace_period: Optional[pulumi.Input[builtins.str]] = None,
186
+ lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
187
+ patch_selection: Optional[pulumi.Input['CompliancePolicyRulePatchSelectionArgs']] = None,
188
+ patch_type_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
189
+ product_version: Optional[pulumi.Input['CompliancePolicyRuleProductVersionArgs']] = None,
190
+ severities: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
191
+ state: Optional[pulumi.Input[builtins.str]] = None,
192
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
193
+ time_created: Optional[pulumi.Input[builtins.str]] = None,
194
+ time_updated: Optional[pulumi.Input[builtins.str]] = None):
195
+ """
196
+ Input properties used for looking up and filtering CompliancePolicyRule resources.
197
+ :param pulumi.Input[builtins.str] compartment_id: The OCID of the compartment the CompliancePolicyRule belongs to.
198
+ :param pulumi.Input[builtins.str] compliance_policy_id: Unique OCID of the CompliancePolicy this CompliancePolicyRule belongs to.
199
+ :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. Example: `{"foo-namespace.bar-key": "value"}`
200
+ :param pulumi.Input[builtins.str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
201
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
202
+ :param pulumi.Input[builtins.str] grace_period: (Updatable) Grace period in days,weeks,months or years the exemption is applicable for the rule. This enables a grace period when Fleet Application Management doesn't report the product as noncompliant when patch is not applied.
203
+ :param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the CompliancePolicyRule in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
204
+ :param pulumi.Input['CompliancePolicyRulePatchSelectionArgs'] patch_selection: (Updatable) Patch Selection Details
205
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] patch_type_ids: (Updatable) PlatformConfiguration OCID for the patch type to which this CompliancePolicyRule applies.
206
+ :param pulumi.Input['CompliancePolicyRuleProductVersionArgs'] product_version: (Updatable) A specific product version or a specific version and succeeding. Example: 12.1 or 12.1 and above for Oracle WebLogic Application server. The policy applies to the next version only, and not to other versions such as, 12.1.x.
207
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] severities: (Updatable) Severity to which this CompliancePolicyRule applies.
208
+
209
+
210
+ ** IMPORTANT **
211
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
212
+ :param pulumi.Input[builtins.str] state: The current state of the CompliancePolicyRule.
213
+ :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"}`
214
+ :param pulumi.Input[builtins.str] time_created: The date and time the CompliancePolicyRule was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
215
+ :param pulumi.Input[builtins.str] time_updated: The date and time the CompliancePolicyRule was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
216
+ """
217
+ if compartment_id is not None:
218
+ pulumi.set(__self__, "compartment_id", compartment_id)
219
+ if compliance_policy_id is not None:
220
+ pulumi.set(__self__, "compliance_policy_id", compliance_policy_id)
221
+ if defined_tags is not None:
222
+ pulumi.set(__self__, "defined_tags", defined_tags)
223
+ if display_name is not None:
224
+ pulumi.set(__self__, "display_name", display_name)
225
+ if freeform_tags is not None:
226
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
227
+ if grace_period is not None:
228
+ pulumi.set(__self__, "grace_period", grace_period)
229
+ if lifecycle_details is not None:
230
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
231
+ if patch_selection is not None:
232
+ pulumi.set(__self__, "patch_selection", patch_selection)
233
+ if patch_type_ids is not None:
234
+ pulumi.set(__self__, "patch_type_ids", patch_type_ids)
235
+ if product_version is not None:
236
+ pulumi.set(__self__, "product_version", product_version)
237
+ if severities is not None:
238
+ pulumi.set(__self__, "severities", severities)
239
+ if state is not None:
240
+ pulumi.set(__self__, "state", state)
241
+ if system_tags is not None:
242
+ pulumi.set(__self__, "system_tags", system_tags)
243
+ if time_created is not None:
244
+ pulumi.set(__self__, "time_created", time_created)
245
+ if time_updated is not None:
246
+ pulumi.set(__self__, "time_updated", time_updated)
247
+
248
+ @property
249
+ @pulumi.getter(name="compartmentId")
250
+ def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
251
+ """
252
+ The OCID of the compartment the CompliancePolicyRule belongs to.
253
+ """
254
+ return pulumi.get(self, "compartment_id")
255
+
256
+ @compartment_id.setter
257
+ def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
258
+ pulumi.set(self, "compartment_id", value)
259
+
260
+ @property
261
+ @pulumi.getter(name="compliancePolicyId")
262
+ def compliance_policy_id(self) -> Optional[pulumi.Input[builtins.str]]:
263
+ """
264
+ Unique OCID of the CompliancePolicy this CompliancePolicyRule belongs to.
265
+ """
266
+ return pulumi.get(self, "compliance_policy_id")
267
+
268
+ @compliance_policy_id.setter
269
+ def compliance_policy_id(self, value: Optional[pulumi.Input[builtins.str]]):
270
+ pulumi.set(self, "compliance_policy_id", value)
271
+
272
+ @property
273
+ @pulumi.getter(name="definedTags")
274
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
275
+ """
276
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
277
+ """
278
+ return pulumi.get(self, "defined_tags")
279
+
280
+ @defined_tags.setter
281
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
282
+ pulumi.set(self, "defined_tags", value)
283
+
284
+ @property
285
+ @pulumi.getter(name="displayName")
286
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
287
+ """
288
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
289
+ """
290
+ return pulumi.get(self, "display_name")
291
+
292
+ @display_name.setter
293
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
294
+ pulumi.set(self, "display_name", value)
295
+
296
+ @property
297
+ @pulumi.getter(name="freeformTags")
298
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
299
+ """
300
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
301
+ """
302
+ return pulumi.get(self, "freeform_tags")
303
+
304
+ @freeform_tags.setter
305
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
306
+ pulumi.set(self, "freeform_tags", value)
307
+
308
+ @property
309
+ @pulumi.getter(name="gracePeriod")
310
+ def grace_period(self) -> Optional[pulumi.Input[builtins.str]]:
311
+ """
312
+ (Updatable) Grace period in days,weeks,months or years the exemption is applicable for the rule. This enables a grace period when Fleet Application Management doesn't report the product as noncompliant when patch is not applied.
313
+ """
314
+ return pulumi.get(self, "grace_period")
315
+
316
+ @grace_period.setter
317
+ def grace_period(self, value: Optional[pulumi.Input[builtins.str]]):
318
+ pulumi.set(self, "grace_period", value)
319
+
320
+ @property
321
+ @pulumi.getter(name="lifecycleDetails")
322
+ def lifecycle_details(self) -> Optional[pulumi.Input[builtins.str]]:
323
+ """
324
+ A message that describes the current state of the CompliancePolicyRule in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
325
+ """
326
+ return pulumi.get(self, "lifecycle_details")
327
+
328
+ @lifecycle_details.setter
329
+ def lifecycle_details(self, value: Optional[pulumi.Input[builtins.str]]):
330
+ pulumi.set(self, "lifecycle_details", value)
331
+
332
+ @property
333
+ @pulumi.getter(name="patchSelection")
334
+ def patch_selection(self) -> Optional[pulumi.Input['CompliancePolicyRulePatchSelectionArgs']]:
335
+ """
336
+ (Updatable) Patch Selection Details
337
+ """
338
+ return pulumi.get(self, "patch_selection")
339
+
340
+ @patch_selection.setter
341
+ def patch_selection(self, value: Optional[pulumi.Input['CompliancePolicyRulePatchSelectionArgs']]):
342
+ pulumi.set(self, "patch_selection", value)
343
+
344
+ @property
345
+ @pulumi.getter(name="patchTypeIds")
346
+ def patch_type_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
347
+ """
348
+ (Updatable) PlatformConfiguration OCID for the patch type to which this CompliancePolicyRule applies.
349
+ """
350
+ return pulumi.get(self, "patch_type_ids")
351
+
352
+ @patch_type_ids.setter
353
+ def patch_type_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
354
+ pulumi.set(self, "patch_type_ids", value)
355
+
356
+ @property
357
+ @pulumi.getter(name="productVersion")
358
+ def product_version(self) -> Optional[pulumi.Input['CompliancePolicyRuleProductVersionArgs']]:
359
+ """
360
+ (Updatable) A specific product version or a specific version and succeeding. Example: 12.1 or 12.1 and above for Oracle WebLogic Application server. The policy applies to the next version only, and not to other versions such as, 12.1.x.
361
+ """
362
+ return pulumi.get(self, "product_version")
363
+
364
+ @product_version.setter
365
+ def product_version(self, value: Optional[pulumi.Input['CompliancePolicyRuleProductVersionArgs']]):
366
+ pulumi.set(self, "product_version", value)
367
+
368
+ @property
369
+ @pulumi.getter
370
+ def severities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
371
+ """
372
+ (Updatable) Severity to which this CompliancePolicyRule applies.
373
+
374
+
375
+ ** IMPORTANT **
376
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
377
+ """
378
+ return pulumi.get(self, "severities")
379
+
380
+ @severities.setter
381
+ def severities(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
382
+ pulumi.set(self, "severities", value)
383
+
384
+ @property
385
+ @pulumi.getter
386
+ def state(self) -> Optional[pulumi.Input[builtins.str]]:
387
+ """
388
+ The current state of the CompliancePolicyRule.
389
+ """
390
+ return pulumi.get(self, "state")
391
+
392
+ @state.setter
393
+ def state(self, value: Optional[pulumi.Input[builtins.str]]):
394
+ pulumi.set(self, "state", value)
395
+
396
+ @property
397
+ @pulumi.getter(name="systemTags")
398
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
399
+ """
400
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
401
+ """
402
+ return pulumi.get(self, "system_tags")
403
+
404
+ @system_tags.setter
405
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
406
+ pulumi.set(self, "system_tags", value)
407
+
408
+ @property
409
+ @pulumi.getter(name="timeCreated")
410
+ def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
411
+ """
412
+ The date and time the CompliancePolicyRule was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
413
+ """
414
+ return pulumi.get(self, "time_created")
415
+
416
+ @time_created.setter
417
+ def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
418
+ pulumi.set(self, "time_created", value)
419
+
420
+ @property
421
+ @pulumi.getter(name="timeUpdated")
422
+ def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
423
+ """
424
+ The date and time the CompliancePolicyRule was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
425
+ """
426
+ return pulumi.get(self, "time_updated")
427
+
428
+ @time_updated.setter
429
+ def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
430
+ pulumi.set(self, "time_updated", value)
431
+
432
+
433
+ @pulumi.type_token("oci:FleetAppsManagement/compliancePolicyRule:CompliancePolicyRule")
434
+ class CompliancePolicyRule(pulumi.CustomResource):
435
+ @overload
436
+ def __init__(__self__,
437
+ resource_name: str,
438
+ opts: Optional[pulumi.ResourceOptions] = None,
439
+ compliance_policy_id: Optional[pulumi.Input[builtins.str]] = None,
440
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
441
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
442
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
443
+ grace_period: Optional[pulumi.Input[builtins.str]] = None,
444
+ patch_selection: Optional[pulumi.Input[Union['CompliancePolicyRulePatchSelectionArgs', 'CompliancePolicyRulePatchSelectionArgsDict']]] = None,
445
+ patch_type_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
446
+ product_version: Optional[pulumi.Input[Union['CompliancePolicyRuleProductVersionArgs', 'CompliancePolicyRuleProductVersionArgsDict']]] = None,
447
+ severities: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
448
+ __props__=None):
449
+ """
450
+ This resource provides the Compliance Policy Rule resource in Oracle Cloud Infrastructure Fleet Apps Management service.
451
+
452
+ Creates a compliance policy rule.
453
+
454
+ ## Example Usage
455
+
456
+ ```python
457
+ import pulumi
458
+ import pulumi_oci as oci
459
+
460
+ test_compliance_policy_rule = oci.fleet_apps_management.CompliancePolicyRule("test_compliance_policy_rule",
461
+ compliance_policy_id=test_compliance_policy["id"],
462
+ display_name=compliance_policy_rule_display_name,
463
+ patch_selection={
464
+ "selection_type": compliance_policy_rule_patch_selection_selection_type,
465
+ "days_since_release": compliance_policy_rule_patch_selection_days_since_release,
466
+ "patch_level": compliance_policy_rule_patch_selection_patch_level,
467
+ "patch_name": test_patch["name"],
468
+ },
469
+ patch_type_ids=test_patch_type["id"],
470
+ product_version={
471
+ "version": compliance_policy_rule_product_version_version,
472
+ "is_applicable_for_all_higher_versions": compliance_policy_rule_product_version_is_applicable_for_all_higher_versions,
473
+ },
474
+ defined_tags={
475
+ "foo-namespace.bar-key": "value",
476
+ },
477
+ freeform_tags={
478
+ "bar-key": "value",
479
+ },
480
+ grace_period=compliance_policy_rule_grace_period,
481
+ severities=compliance_policy_rule_severity)
482
+ ```
483
+
484
+ ## Import
485
+
486
+ CompliancePolicyRules can be imported using the `id`, e.g.
487
+
488
+ ```sh
489
+ $ pulumi import oci:FleetAppsManagement/compliancePolicyRule:CompliancePolicyRule test_compliance_policy_rule "id"
490
+ ```
491
+
492
+ :param str resource_name: The name of the resource.
493
+ :param pulumi.ResourceOptions opts: Options for the resource.
494
+ :param pulumi.Input[builtins.str] compliance_policy_id: Unique OCID of the CompliancePolicy this CompliancePolicyRule belongs to.
495
+ :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. Example: `{"foo-namespace.bar-key": "value"}`
496
+ :param pulumi.Input[builtins.str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
497
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
498
+ :param pulumi.Input[builtins.str] grace_period: (Updatable) Grace period in days,weeks,months or years the exemption is applicable for the rule. This enables a grace period when Fleet Application Management doesn't report the product as noncompliant when patch is not applied.
499
+ :param pulumi.Input[Union['CompliancePolicyRulePatchSelectionArgs', 'CompliancePolicyRulePatchSelectionArgsDict']] patch_selection: (Updatable) Patch Selection Details
500
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] patch_type_ids: (Updatable) PlatformConfiguration OCID for the patch type to which this CompliancePolicyRule applies.
501
+ :param pulumi.Input[Union['CompliancePolicyRuleProductVersionArgs', 'CompliancePolicyRuleProductVersionArgsDict']] product_version: (Updatable) A specific product version or a specific version and succeeding. Example: 12.1 or 12.1 and above for Oracle WebLogic Application server. The policy applies to the next version only, and not to other versions such as, 12.1.x.
502
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] severities: (Updatable) Severity to which this CompliancePolicyRule applies.
503
+
504
+
505
+ ** IMPORTANT **
506
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
507
+ """
508
+ ...
509
+ @overload
510
+ def __init__(__self__,
511
+ resource_name: str,
512
+ args: CompliancePolicyRuleArgs,
513
+ opts: Optional[pulumi.ResourceOptions] = None):
514
+ """
515
+ This resource provides the Compliance Policy Rule resource in Oracle Cloud Infrastructure Fleet Apps Management service.
516
+
517
+ Creates a compliance policy rule.
518
+
519
+ ## Example Usage
520
+
521
+ ```python
522
+ import pulumi
523
+ import pulumi_oci as oci
524
+
525
+ test_compliance_policy_rule = oci.fleet_apps_management.CompliancePolicyRule("test_compliance_policy_rule",
526
+ compliance_policy_id=test_compliance_policy["id"],
527
+ display_name=compliance_policy_rule_display_name,
528
+ patch_selection={
529
+ "selection_type": compliance_policy_rule_patch_selection_selection_type,
530
+ "days_since_release": compliance_policy_rule_patch_selection_days_since_release,
531
+ "patch_level": compliance_policy_rule_patch_selection_patch_level,
532
+ "patch_name": test_patch["name"],
533
+ },
534
+ patch_type_ids=test_patch_type["id"],
535
+ product_version={
536
+ "version": compliance_policy_rule_product_version_version,
537
+ "is_applicable_for_all_higher_versions": compliance_policy_rule_product_version_is_applicable_for_all_higher_versions,
538
+ },
539
+ defined_tags={
540
+ "foo-namespace.bar-key": "value",
541
+ },
542
+ freeform_tags={
543
+ "bar-key": "value",
544
+ },
545
+ grace_period=compliance_policy_rule_grace_period,
546
+ severities=compliance_policy_rule_severity)
547
+ ```
548
+
549
+ ## Import
550
+
551
+ CompliancePolicyRules can be imported using the `id`, e.g.
552
+
553
+ ```sh
554
+ $ pulumi import oci:FleetAppsManagement/compliancePolicyRule:CompliancePolicyRule test_compliance_policy_rule "id"
555
+ ```
556
+
557
+ :param str resource_name: The name of the resource.
558
+ :param CompliancePolicyRuleArgs args: The arguments to use to populate this resource's properties.
559
+ :param pulumi.ResourceOptions opts: Options for the resource.
560
+ """
561
+ ...
562
+ def __init__(__self__, resource_name: str, *args, **kwargs):
563
+ resource_args, opts = _utilities.get_resource_args_opts(CompliancePolicyRuleArgs, pulumi.ResourceOptions, *args, **kwargs)
564
+ if resource_args is not None:
565
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
566
+ else:
567
+ __self__._internal_init(resource_name, *args, **kwargs)
568
+
569
+ def _internal_init(__self__,
570
+ resource_name: str,
571
+ opts: Optional[pulumi.ResourceOptions] = None,
572
+ compliance_policy_id: Optional[pulumi.Input[builtins.str]] = None,
573
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
574
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
575
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
576
+ grace_period: Optional[pulumi.Input[builtins.str]] = None,
577
+ patch_selection: Optional[pulumi.Input[Union['CompliancePolicyRulePatchSelectionArgs', 'CompliancePolicyRulePatchSelectionArgsDict']]] = None,
578
+ patch_type_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
579
+ product_version: Optional[pulumi.Input[Union['CompliancePolicyRuleProductVersionArgs', 'CompliancePolicyRuleProductVersionArgsDict']]] = None,
580
+ severities: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
581
+ __props__=None):
582
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
583
+ if not isinstance(opts, pulumi.ResourceOptions):
584
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
585
+ if opts.id is None:
586
+ if __props__ is not None:
587
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
588
+ __props__ = CompliancePolicyRuleArgs.__new__(CompliancePolicyRuleArgs)
589
+
590
+ if compliance_policy_id is None and not opts.urn:
591
+ raise TypeError("Missing required property 'compliance_policy_id'")
592
+ __props__.__dict__["compliance_policy_id"] = compliance_policy_id
593
+ __props__.__dict__["defined_tags"] = defined_tags
594
+ if display_name is None and not opts.urn:
595
+ raise TypeError("Missing required property 'display_name'")
596
+ __props__.__dict__["display_name"] = display_name
597
+ __props__.__dict__["freeform_tags"] = freeform_tags
598
+ __props__.__dict__["grace_period"] = grace_period
599
+ if patch_selection is None and not opts.urn:
600
+ raise TypeError("Missing required property 'patch_selection'")
601
+ __props__.__dict__["patch_selection"] = patch_selection
602
+ if patch_type_ids is None and not opts.urn:
603
+ raise TypeError("Missing required property 'patch_type_ids'")
604
+ __props__.__dict__["patch_type_ids"] = patch_type_ids
605
+ if product_version is None and not opts.urn:
606
+ raise TypeError("Missing required property 'product_version'")
607
+ __props__.__dict__["product_version"] = product_version
608
+ __props__.__dict__["severities"] = severities
609
+ __props__.__dict__["compartment_id"] = None
610
+ __props__.__dict__["lifecycle_details"] = None
611
+ __props__.__dict__["state"] = None
612
+ __props__.__dict__["system_tags"] = None
613
+ __props__.__dict__["time_created"] = None
614
+ __props__.__dict__["time_updated"] = None
615
+ super(CompliancePolicyRule, __self__).__init__(
616
+ 'oci:FleetAppsManagement/compliancePolicyRule:CompliancePolicyRule',
617
+ resource_name,
618
+ __props__,
619
+ opts)
620
+
621
+ @staticmethod
622
+ def get(resource_name: str,
623
+ id: pulumi.Input[str],
624
+ opts: Optional[pulumi.ResourceOptions] = None,
625
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
626
+ compliance_policy_id: Optional[pulumi.Input[builtins.str]] = None,
627
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
628
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
629
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
630
+ grace_period: Optional[pulumi.Input[builtins.str]] = None,
631
+ lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
632
+ patch_selection: Optional[pulumi.Input[Union['CompliancePolicyRulePatchSelectionArgs', 'CompliancePolicyRulePatchSelectionArgsDict']]] = None,
633
+ patch_type_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
634
+ product_version: Optional[pulumi.Input[Union['CompliancePolicyRuleProductVersionArgs', 'CompliancePolicyRuleProductVersionArgsDict']]] = None,
635
+ severities: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
636
+ state: Optional[pulumi.Input[builtins.str]] = None,
637
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
638
+ time_created: Optional[pulumi.Input[builtins.str]] = None,
639
+ time_updated: Optional[pulumi.Input[builtins.str]] = None) -> 'CompliancePolicyRule':
640
+ """
641
+ Get an existing CompliancePolicyRule resource's state with the given name, id, and optional extra
642
+ properties used to qualify the lookup.
643
+
644
+ :param str resource_name: The unique name of the resulting resource.
645
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
646
+ :param pulumi.ResourceOptions opts: Options for the resource.
647
+ :param pulumi.Input[builtins.str] compartment_id: The OCID of the compartment the CompliancePolicyRule belongs to.
648
+ :param pulumi.Input[builtins.str] compliance_policy_id: Unique OCID of the CompliancePolicy this CompliancePolicyRule belongs to.
649
+ :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. Example: `{"foo-namespace.bar-key": "value"}`
650
+ :param pulumi.Input[builtins.str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
651
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
652
+ :param pulumi.Input[builtins.str] grace_period: (Updatable) Grace period in days,weeks,months or years the exemption is applicable for the rule. This enables a grace period when Fleet Application Management doesn't report the product as noncompliant when patch is not applied.
653
+ :param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the CompliancePolicyRule in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
654
+ :param pulumi.Input[Union['CompliancePolicyRulePatchSelectionArgs', 'CompliancePolicyRulePatchSelectionArgsDict']] patch_selection: (Updatable) Patch Selection Details
655
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] patch_type_ids: (Updatable) PlatformConfiguration OCID for the patch type to which this CompliancePolicyRule applies.
656
+ :param pulumi.Input[Union['CompliancePolicyRuleProductVersionArgs', 'CompliancePolicyRuleProductVersionArgsDict']] product_version: (Updatable) A specific product version or a specific version and succeeding. Example: 12.1 or 12.1 and above for Oracle WebLogic Application server. The policy applies to the next version only, and not to other versions such as, 12.1.x.
657
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] severities: (Updatable) Severity to which this CompliancePolicyRule applies.
658
+
659
+
660
+ ** IMPORTANT **
661
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
662
+ :param pulumi.Input[builtins.str] state: The current state of the CompliancePolicyRule.
663
+ :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"}`
664
+ :param pulumi.Input[builtins.str] time_created: The date and time the CompliancePolicyRule was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
665
+ :param pulumi.Input[builtins.str] time_updated: The date and time the CompliancePolicyRule was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
666
+ """
667
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
668
+
669
+ __props__ = _CompliancePolicyRuleState.__new__(_CompliancePolicyRuleState)
670
+
671
+ __props__.__dict__["compartment_id"] = compartment_id
672
+ __props__.__dict__["compliance_policy_id"] = compliance_policy_id
673
+ __props__.__dict__["defined_tags"] = defined_tags
674
+ __props__.__dict__["display_name"] = display_name
675
+ __props__.__dict__["freeform_tags"] = freeform_tags
676
+ __props__.__dict__["grace_period"] = grace_period
677
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
678
+ __props__.__dict__["patch_selection"] = patch_selection
679
+ __props__.__dict__["patch_type_ids"] = patch_type_ids
680
+ __props__.__dict__["product_version"] = product_version
681
+ __props__.__dict__["severities"] = severities
682
+ __props__.__dict__["state"] = state
683
+ __props__.__dict__["system_tags"] = system_tags
684
+ __props__.__dict__["time_created"] = time_created
685
+ __props__.__dict__["time_updated"] = time_updated
686
+ return CompliancePolicyRule(resource_name, opts=opts, __props__=__props__)
687
+
688
+ @property
689
+ @pulumi.getter(name="compartmentId")
690
+ def compartment_id(self) -> pulumi.Output[builtins.str]:
691
+ """
692
+ The OCID of the compartment the CompliancePolicyRule belongs to.
693
+ """
694
+ return pulumi.get(self, "compartment_id")
695
+
696
+ @property
697
+ @pulumi.getter(name="compliancePolicyId")
698
+ def compliance_policy_id(self) -> pulumi.Output[builtins.str]:
699
+ """
700
+ Unique OCID of the CompliancePolicy this CompliancePolicyRule belongs to.
701
+ """
702
+ return pulumi.get(self, "compliance_policy_id")
703
+
704
+ @property
705
+ @pulumi.getter(name="definedTags")
706
+ def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
707
+ """
708
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
709
+ """
710
+ return pulumi.get(self, "defined_tags")
711
+
712
+ @property
713
+ @pulumi.getter(name="displayName")
714
+ def display_name(self) -> pulumi.Output[builtins.str]:
715
+ """
716
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
717
+ """
718
+ return pulumi.get(self, "display_name")
719
+
720
+ @property
721
+ @pulumi.getter(name="freeformTags")
722
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
723
+ """
724
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
725
+ """
726
+ return pulumi.get(self, "freeform_tags")
727
+
728
+ @property
729
+ @pulumi.getter(name="gracePeriod")
730
+ def grace_period(self) -> pulumi.Output[builtins.str]:
731
+ """
732
+ (Updatable) Grace period in days,weeks,months or years the exemption is applicable for the rule. This enables a grace period when Fleet Application Management doesn't report the product as noncompliant when patch is not applied.
733
+ """
734
+ return pulumi.get(self, "grace_period")
735
+
736
+ @property
737
+ @pulumi.getter(name="lifecycleDetails")
738
+ def lifecycle_details(self) -> pulumi.Output[builtins.str]:
739
+ """
740
+ A message that describes the current state of the CompliancePolicyRule in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
741
+ """
742
+ return pulumi.get(self, "lifecycle_details")
743
+
744
+ @property
745
+ @pulumi.getter(name="patchSelection")
746
+ def patch_selection(self) -> pulumi.Output['outputs.CompliancePolicyRulePatchSelection']:
747
+ """
748
+ (Updatable) Patch Selection Details
749
+ """
750
+ return pulumi.get(self, "patch_selection")
751
+
752
+ @property
753
+ @pulumi.getter(name="patchTypeIds")
754
+ def patch_type_ids(self) -> pulumi.Output[Sequence[builtins.str]]:
755
+ """
756
+ (Updatable) PlatformConfiguration OCID for the patch type to which this CompliancePolicyRule applies.
757
+ """
758
+ return pulumi.get(self, "patch_type_ids")
759
+
760
+ @property
761
+ @pulumi.getter(name="productVersion")
762
+ def product_version(self) -> pulumi.Output['outputs.CompliancePolicyRuleProductVersion']:
763
+ """
764
+ (Updatable) A specific product version or a specific version and succeeding. Example: 12.1 or 12.1 and above for Oracle WebLogic Application server. The policy applies to the next version only, and not to other versions such as, 12.1.x.
765
+ """
766
+ return pulumi.get(self, "product_version")
767
+
768
+ @property
769
+ @pulumi.getter
770
+ def severities(self) -> pulumi.Output[Sequence[builtins.str]]:
771
+ """
772
+ (Updatable) Severity to which this CompliancePolicyRule applies.
773
+
774
+
775
+ ** IMPORTANT **
776
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
777
+ """
778
+ return pulumi.get(self, "severities")
779
+
780
+ @property
781
+ @pulumi.getter
782
+ def state(self) -> pulumi.Output[builtins.str]:
783
+ """
784
+ The current state of the CompliancePolicyRule.
785
+ """
786
+ return pulumi.get(self, "state")
787
+
788
+ @property
789
+ @pulumi.getter(name="systemTags")
790
+ def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
791
+ """
792
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
793
+ """
794
+ return pulumi.get(self, "system_tags")
795
+
796
+ @property
797
+ @pulumi.getter(name="timeCreated")
798
+ def time_created(self) -> pulumi.Output[builtins.str]:
799
+ """
800
+ The date and time the CompliancePolicyRule was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
801
+ """
802
+ return pulumi.get(self, "time_created")
803
+
804
+ @property
805
+ @pulumi.getter(name="timeUpdated")
806
+ def time_updated(self) -> pulumi.Output[builtins.str]:
807
+ """
808
+ The date and time the CompliancePolicyRule was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
809
+ """
810
+ return pulumi.get(self, "time_updated")
811
+