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,980 @@
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__ = ['PatchArgs', 'Patch']
21
+
22
+ @pulumi.input_type
23
+ class PatchArgs:
24
+ def __init__(__self__, *,
25
+ artifact_details: pulumi.Input['PatchArtifactDetailsArgs'],
26
+ compartment_id: pulumi.Input[builtins.str],
27
+ patch_type: pulumi.Input['PatchPatchTypeArgs'],
28
+ product: pulumi.Input['PatchProductArgs'],
29
+ severity: pulumi.Input[builtins.str],
30
+ time_released: pulumi.Input[builtins.str],
31
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
32
+ dependent_patches: Optional[pulumi.Input[Sequence[pulumi.Input['PatchDependentPatchArgs']]]] = None,
33
+ description: Optional[pulumi.Input[builtins.str]] = None,
34
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
35
+ name: Optional[pulumi.Input[builtins.str]] = None):
36
+ """
37
+ The set of arguments for constructing a Patch resource.
38
+ :param pulumi.Input['PatchArtifactDetailsArgs'] artifact_details: (Updatable) Patch artifact description and content details.
39
+ :param pulumi.Input[builtins.str] compartment_id: (Updatable)
40
+ :param pulumi.Input['PatchPatchTypeArgs'] patch_type: (Updatable) Patch Type
41
+ :param pulumi.Input['PatchProductArgs'] product: (Updatable) Product
42
+ :param pulumi.Input[builtins.str] severity: (Updatable) Patch Severity.
43
+ :param pulumi.Input[builtins.str] time_released: (Updatable) Date when the patch was released.
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. Example: `{"foo-namespace.bar-key": "value"}`
49
+ :param pulumi.Input[Sequence[pulumi.Input['PatchDependentPatchArgs']]] dependent_patches: (Updatable) Dependent Patches for this patch.
50
+ :param pulumi.Input[builtins.str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
51
+ :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"}`
52
+ :param pulumi.Input[builtins.str] name: A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
53
+ """
54
+ pulumi.set(__self__, "artifact_details", artifact_details)
55
+ pulumi.set(__self__, "compartment_id", compartment_id)
56
+ pulumi.set(__self__, "patch_type", patch_type)
57
+ pulumi.set(__self__, "product", product)
58
+ pulumi.set(__self__, "severity", severity)
59
+ pulumi.set(__self__, "time_released", time_released)
60
+ if defined_tags is not None:
61
+ pulumi.set(__self__, "defined_tags", defined_tags)
62
+ if dependent_patches is not None:
63
+ pulumi.set(__self__, "dependent_patches", dependent_patches)
64
+ if description is not None:
65
+ pulumi.set(__self__, "description", description)
66
+ if freeform_tags is not None:
67
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
68
+ if name is not None:
69
+ pulumi.set(__self__, "name", name)
70
+
71
+ @property
72
+ @pulumi.getter(name="artifactDetails")
73
+ def artifact_details(self) -> pulumi.Input['PatchArtifactDetailsArgs']:
74
+ """
75
+ (Updatable) Patch artifact description and content details.
76
+ """
77
+ return pulumi.get(self, "artifact_details")
78
+
79
+ @artifact_details.setter
80
+ def artifact_details(self, value: pulumi.Input['PatchArtifactDetailsArgs']):
81
+ pulumi.set(self, "artifact_details", value)
82
+
83
+ @property
84
+ @pulumi.getter(name="compartmentId")
85
+ def compartment_id(self) -> pulumi.Input[builtins.str]:
86
+ """
87
+ (Updatable)
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="patchType")
97
+ def patch_type(self) -> pulumi.Input['PatchPatchTypeArgs']:
98
+ """
99
+ (Updatable) Patch Type
100
+ """
101
+ return pulumi.get(self, "patch_type")
102
+
103
+ @patch_type.setter
104
+ def patch_type(self, value: pulumi.Input['PatchPatchTypeArgs']):
105
+ pulumi.set(self, "patch_type", value)
106
+
107
+ @property
108
+ @pulumi.getter
109
+ def product(self) -> pulumi.Input['PatchProductArgs']:
110
+ """
111
+ (Updatable) Product
112
+ """
113
+ return pulumi.get(self, "product")
114
+
115
+ @product.setter
116
+ def product(self, value: pulumi.Input['PatchProductArgs']):
117
+ pulumi.set(self, "product", value)
118
+
119
+ @property
120
+ @pulumi.getter
121
+ def severity(self) -> pulumi.Input[builtins.str]:
122
+ """
123
+ (Updatable) Patch Severity.
124
+ """
125
+ return pulumi.get(self, "severity")
126
+
127
+ @severity.setter
128
+ def severity(self, value: pulumi.Input[builtins.str]):
129
+ pulumi.set(self, "severity", value)
130
+
131
+ @property
132
+ @pulumi.getter(name="timeReleased")
133
+ def time_released(self) -> pulumi.Input[builtins.str]:
134
+ """
135
+ (Updatable) Date when the patch was released.
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, "time_released")
142
+
143
+ @time_released.setter
144
+ def time_released(self, value: pulumi.Input[builtins.str]):
145
+ pulumi.set(self, "time_released", 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. Example: `{"foo-namespace.bar-key": "value"}`
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(name="dependentPatches")
161
+ def dependent_patches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PatchDependentPatchArgs']]]]:
162
+ """
163
+ (Updatable) Dependent Patches for this patch.
164
+ """
165
+ return pulumi.get(self, "dependent_patches")
166
+
167
+ @dependent_patches.setter
168
+ def dependent_patches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PatchDependentPatchArgs']]]]):
169
+ pulumi.set(self, "dependent_patches", value)
170
+
171
+ @property
172
+ @pulumi.getter
173
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
174
+ """
175
+ (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
176
+ """
177
+ return pulumi.get(self, "description")
178
+
179
+ @description.setter
180
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
181
+ pulumi.set(self, "description", 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) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
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
197
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
198
+ """
199
+ A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
200
+ """
201
+ return pulumi.get(self, "name")
202
+
203
+ @name.setter
204
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
205
+ pulumi.set(self, "name", value)
206
+
207
+
208
+ @pulumi.input_type
209
+ class _PatchState:
210
+ def __init__(__self__, *,
211
+ artifact_details: Optional[pulumi.Input['PatchArtifactDetailsArgs']] = None,
212
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
213
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
214
+ dependent_patches: Optional[pulumi.Input[Sequence[pulumi.Input['PatchDependentPatchArgs']]]] = None,
215
+ description: 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
+ name: Optional[pulumi.Input[builtins.str]] = None,
219
+ patch_type: Optional[pulumi.Input['PatchPatchTypeArgs']] = None,
220
+ product: Optional[pulumi.Input['PatchProductArgs']] = None,
221
+ resource_region: Optional[pulumi.Input[builtins.str]] = None,
222
+ severity: Optional[pulumi.Input[builtins.str]] = None,
223
+ state: Optional[pulumi.Input[builtins.str]] = None,
224
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
225
+ time_created: Optional[pulumi.Input[builtins.str]] = None,
226
+ time_released: Optional[pulumi.Input[builtins.str]] = None,
227
+ time_updated: Optional[pulumi.Input[builtins.str]] = None,
228
+ type: Optional[pulumi.Input[builtins.str]] = None):
229
+ """
230
+ Input properties used for looking up and filtering Patch resources.
231
+ :param pulumi.Input['PatchArtifactDetailsArgs'] artifact_details: (Updatable) Patch artifact description and content details.
232
+ :param pulumi.Input[builtins.str] compartment_id: (Updatable)
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. Example: `{"foo-namespace.bar-key": "value"}`
234
+ :param pulumi.Input[Sequence[pulumi.Input['PatchDependentPatchArgs']]] dependent_patches: (Updatable) Dependent Patches for this patch.
235
+ :param pulumi.Input[builtins.str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
236
+ :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"}`
237
+ :param pulumi.Input[builtins.str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
238
+ :param pulumi.Input[builtins.str] name: A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
239
+ :param pulumi.Input['PatchPatchTypeArgs'] patch_type: (Updatable) Patch Type
240
+ :param pulumi.Input['PatchProductArgs'] product: (Updatable) Product
241
+ :param pulumi.Input[builtins.str] resource_region: Associated region
242
+ :param pulumi.Input[builtins.str] severity: (Updatable) Patch Severity.
243
+ :param pulumi.Input[builtins.str] state: The current state of the Patch.
244
+ :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"}`
245
+ :param pulumi.Input[builtins.str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
246
+ :param pulumi.Input[builtins.str] time_released: (Updatable) Date when the patch was released.
247
+
248
+
249
+ ** IMPORTANT **
250
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
251
+ :param pulumi.Input[builtins.str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
252
+ :param pulumi.Input[builtins.str] type: Provide information on who defined the patch. Example: For Custom Patches the value will be USER_DEFINED For Oracle Defined Patches the value will be ORACLE_DEFINED
253
+ """
254
+ if artifact_details is not None:
255
+ pulumi.set(__self__, "artifact_details", artifact_details)
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 dependent_patches is not None:
261
+ pulumi.set(__self__, "dependent_patches", dependent_patches)
262
+ if description is not None:
263
+ pulumi.set(__self__, "description", description)
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 name is not None:
269
+ pulumi.set(__self__, "name", name)
270
+ if patch_type is not None:
271
+ pulumi.set(__self__, "patch_type", patch_type)
272
+ if product is not None:
273
+ pulumi.set(__self__, "product", product)
274
+ if resource_region is not None:
275
+ pulumi.set(__self__, "resource_region", resource_region)
276
+ if severity is not None:
277
+ pulumi.set(__self__, "severity", severity)
278
+ if state is not None:
279
+ pulumi.set(__self__, "state", state)
280
+ if system_tags is not None:
281
+ pulumi.set(__self__, "system_tags", system_tags)
282
+ if time_created is not None:
283
+ pulumi.set(__self__, "time_created", time_created)
284
+ if time_released is not None:
285
+ pulumi.set(__self__, "time_released", time_released)
286
+ if time_updated is not None:
287
+ pulumi.set(__self__, "time_updated", time_updated)
288
+ if type is not None:
289
+ pulumi.set(__self__, "type", type)
290
+
291
+ @property
292
+ @pulumi.getter(name="artifactDetails")
293
+ def artifact_details(self) -> Optional[pulumi.Input['PatchArtifactDetailsArgs']]:
294
+ """
295
+ (Updatable) Patch artifact description and content details.
296
+ """
297
+ return pulumi.get(self, "artifact_details")
298
+
299
+ @artifact_details.setter
300
+ def artifact_details(self, value: Optional[pulumi.Input['PatchArtifactDetailsArgs']]):
301
+ pulumi.set(self, "artifact_details", value)
302
+
303
+ @property
304
+ @pulumi.getter(name="compartmentId")
305
+ def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
306
+ """
307
+ (Updatable)
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. Example: `{"foo-namespace.bar-key": "value"}`
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(name="dependentPatches")
329
+ def dependent_patches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PatchDependentPatchArgs']]]]:
330
+ """
331
+ (Updatable) Dependent Patches for this patch.
332
+ """
333
+ return pulumi.get(self, "dependent_patches")
334
+
335
+ @dependent_patches.setter
336
+ def dependent_patches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PatchDependentPatchArgs']]]]):
337
+ pulumi.set(self, "dependent_patches", value)
338
+
339
+ @property
340
+ @pulumi.getter
341
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
342
+ """
343
+ (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
344
+ """
345
+ return pulumi.get(self, "description")
346
+
347
+ @description.setter
348
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
349
+ pulumi.set(self, "description", 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) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
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 describing the current state in more detail. For example, can be used to provide actionable information for a resource in 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
377
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
378
+ """
379
+ A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
380
+ """
381
+ return pulumi.get(self, "name")
382
+
383
+ @name.setter
384
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
385
+ pulumi.set(self, "name", value)
386
+
387
+ @property
388
+ @pulumi.getter(name="patchType")
389
+ def patch_type(self) -> Optional[pulumi.Input['PatchPatchTypeArgs']]:
390
+ """
391
+ (Updatable) Patch Type
392
+ """
393
+ return pulumi.get(self, "patch_type")
394
+
395
+ @patch_type.setter
396
+ def patch_type(self, value: Optional[pulumi.Input['PatchPatchTypeArgs']]):
397
+ pulumi.set(self, "patch_type", value)
398
+
399
+ @property
400
+ @pulumi.getter
401
+ def product(self) -> Optional[pulumi.Input['PatchProductArgs']]:
402
+ """
403
+ (Updatable) Product
404
+ """
405
+ return pulumi.get(self, "product")
406
+
407
+ @product.setter
408
+ def product(self, value: Optional[pulumi.Input['PatchProductArgs']]):
409
+ pulumi.set(self, "product", value)
410
+
411
+ @property
412
+ @pulumi.getter(name="resourceRegion")
413
+ def resource_region(self) -> Optional[pulumi.Input[builtins.str]]:
414
+ """
415
+ Associated region
416
+ """
417
+ return pulumi.get(self, "resource_region")
418
+
419
+ @resource_region.setter
420
+ def resource_region(self, value: Optional[pulumi.Input[builtins.str]]):
421
+ pulumi.set(self, "resource_region", value)
422
+
423
+ @property
424
+ @pulumi.getter
425
+ def severity(self) -> Optional[pulumi.Input[builtins.str]]:
426
+ """
427
+ (Updatable) Patch Severity.
428
+ """
429
+ return pulumi.get(self, "severity")
430
+
431
+ @severity.setter
432
+ def severity(self, value: Optional[pulumi.Input[builtins.str]]):
433
+ pulumi.set(self, "severity", value)
434
+
435
+ @property
436
+ @pulumi.getter
437
+ def state(self) -> Optional[pulumi.Input[builtins.str]]:
438
+ """
439
+ The current state of the Patch.
440
+ """
441
+ return pulumi.get(self, "state")
442
+
443
+ @state.setter
444
+ def state(self, value: Optional[pulumi.Input[builtins.str]]):
445
+ pulumi.set(self, "state", value)
446
+
447
+ @property
448
+ @pulumi.getter(name="systemTags")
449
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
450
+ """
451
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
452
+ """
453
+ return pulumi.get(self, "system_tags")
454
+
455
+ @system_tags.setter
456
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
457
+ pulumi.set(self, "system_tags", value)
458
+
459
+ @property
460
+ @pulumi.getter(name="timeCreated")
461
+ def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
462
+ """
463
+ The time this resource was created. An RFC3339 formatted datetime string.
464
+ """
465
+ return pulumi.get(self, "time_created")
466
+
467
+ @time_created.setter
468
+ def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
469
+ pulumi.set(self, "time_created", value)
470
+
471
+ @property
472
+ @pulumi.getter(name="timeReleased")
473
+ def time_released(self) -> Optional[pulumi.Input[builtins.str]]:
474
+ """
475
+ (Updatable) Date when the patch was released.
476
+
477
+
478
+ ** IMPORTANT **
479
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
480
+ """
481
+ return pulumi.get(self, "time_released")
482
+
483
+ @time_released.setter
484
+ def time_released(self, value: Optional[pulumi.Input[builtins.str]]):
485
+ pulumi.set(self, "time_released", value)
486
+
487
+ @property
488
+ @pulumi.getter(name="timeUpdated")
489
+ def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
490
+ """
491
+ The time this resource was last updated. An RFC3339 formatted datetime string.
492
+ """
493
+ return pulumi.get(self, "time_updated")
494
+
495
+ @time_updated.setter
496
+ def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
497
+ pulumi.set(self, "time_updated", value)
498
+
499
+ @property
500
+ @pulumi.getter
501
+ def type(self) -> Optional[pulumi.Input[builtins.str]]:
502
+ """
503
+ Provide information on who defined the patch. Example: For Custom Patches the value will be USER_DEFINED For Oracle Defined Patches the value will be ORACLE_DEFINED
504
+ """
505
+ return pulumi.get(self, "type")
506
+
507
+ @type.setter
508
+ def type(self, value: Optional[pulumi.Input[builtins.str]]):
509
+ pulumi.set(self, "type", value)
510
+
511
+
512
+ @pulumi.type_token("oci:FleetAppsManagement/patch:Patch")
513
+ class Patch(pulumi.CustomResource):
514
+ @overload
515
+ def __init__(__self__,
516
+ resource_name: str,
517
+ opts: Optional[pulumi.ResourceOptions] = None,
518
+ artifact_details: Optional[pulumi.Input[Union['PatchArtifactDetailsArgs', 'PatchArtifactDetailsArgsDict']]] = None,
519
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
520
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
521
+ dependent_patches: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PatchDependentPatchArgs', 'PatchDependentPatchArgsDict']]]]] = None,
522
+ description: Optional[pulumi.Input[builtins.str]] = None,
523
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
524
+ name: Optional[pulumi.Input[builtins.str]] = None,
525
+ patch_type: Optional[pulumi.Input[Union['PatchPatchTypeArgs', 'PatchPatchTypeArgsDict']]] = None,
526
+ product: Optional[pulumi.Input[Union['PatchProductArgs', 'PatchProductArgsDict']]] = None,
527
+ severity: Optional[pulumi.Input[builtins.str]] = None,
528
+ time_released: Optional[pulumi.Input[builtins.str]] = None,
529
+ __props__=None):
530
+ """
531
+ This resource provides the Patch resource in Oracle Cloud Infrastructure Fleet Apps Management service.
532
+
533
+ Creates a new Patch.
534
+
535
+ ## Example Usage
536
+
537
+ ```python
538
+ import pulumi
539
+ import pulumi_oci as oci
540
+
541
+ test_patch = oci.fleet_apps_management.Patch("test_patch",
542
+ artifact_details={
543
+ "category": patch_artifact_details_category,
544
+ "artifact": {
545
+ "content": {
546
+ "bucket": patch_artifact_details_artifact_content_bucket,
547
+ "checksum": patch_artifact_details_artifact_content_checksum,
548
+ "namespace": patch_artifact_details_artifact_content_namespace,
549
+ "object": patch_artifact_details_artifact_content_object,
550
+ "source_type": patch_artifact_details_artifact_content_source_type,
551
+ },
552
+ },
553
+ "artifacts": [{
554
+ "architecture": patch_artifact_details_artifacts_architecture,
555
+ "content": {
556
+ "bucket": patch_artifact_details_artifacts_content_bucket,
557
+ "checksum": patch_artifact_details_artifacts_content_checksum,
558
+ "namespace": patch_artifact_details_artifacts_content_namespace,
559
+ "object": patch_artifact_details_artifacts_content_object,
560
+ "source_type": patch_artifact_details_artifacts_content_source_type,
561
+ },
562
+ "os_type": patch_artifact_details_artifacts_os_type,
563
+ }],
564
+ },
565
+ compartment_id=compartment_id,
566
+ name=patch_name,
567
+ patch_type={
568
+ "platform_configuration_id": test_platform_configuration["id"],
569
+ },
570
+ product={
571
+ "platform_configuration_id": test_platform_configuration["id"],
572
+ "version": patch_product_version,
573
+ },
574
+ severity=patch_severity,
575
+ time_released=patch_time_released,
576
+ defined_tags={
577
+ "foo-namespace.bar-key": "value",
578
+ },
579
+ dependent_patches=[{
580
+ "id": patch_dependent_patches_id,
581
+ }],
582
+ description=patch_description,
583
+ freeform_tags={
584
+ "bar-key": "value",
585
+ })
586
+ ```
587
+
588
+ ## Import
589
+
590
+ Patches can be imported using the `id`, e.g.
591
+
592
+ ```sh
593
+ $ pulumi import oci:FleetAppsManagement/patch:Patch test_patch "id"
594
+ ```
595
+
596
+ :param str resource_name: The name of the resource.
597
+ :param pulumi.ResourceOptions opts: Options for the resource.
598
+ :param pulumi.Input[Union['PatchArtifactDetailsArgs', 'PatchArtifactDetailsArgsDict']] artifact_details: (Updatable) Patch artifact description and content details.
599
+ :param pulumi.Input[builtins.str] compartment_id: (Updatable)
600
+ :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"}`
601
+ :param pulumi.Input[Sequence[pulumi.Input[Union['PatchDependentPatchArgs', 'PatchDependentPatchArgsDict']]]] dependent_patches: (Updatable) Dependent Patches for this patch.
602
+ :param pulumi.Input[builtins.str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
603
+ :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"}`
604
+ :param pulumi.Input[builtins.str] name: A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
605
+ :param pulumi.Input[Union['PatchPatchTypeArgs', 'PatchPatchTypeArgsDict']] patch_type: (Updatable) Patch Type
606
+ :param pulumi.Input[Union['PatchProductArgs', 'PatchProductArgsDict']] product: (Updatable) Product
607
+ :param pulumi.Input[builtins.str] severity: (Updatable) Patch Severity.
608
+ :param pulumi.Input[builtins.str] time_released: (Updatable) Date when the patch was released.
609
+
610
+
611
+ ** IMPORTANT **
612
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
613
+ """
614
+ ...
615
+ @overload
616
+ def __init__(__self__,
617
+ resource_name: str,
618
+ args: PatchArgs,
619
+ opts: Optional[pulumi.ResourceOptions] = None):
620
+ """
621
+ This resource provides the Patch resource in Oracle Cloud Infrastructure Fleet Apps Management service.
622
+
623
+ Creates a new Patch.
624
+
625
+ ## Example Usage
626
+
627
+ ```python
628
+ import pulumi
629
+ import pulumi_oci as oci
630
+
631
+ test_patch = oci.fleet_apps_management.Patch("test_patch",
632
+ artifact_details={
633
+ "category": patch_artifact_details_category,
634
+ "artifact": {
635
+ "content": {
636
+ "bucket": patch_artifact_details_artifact_content_bucket,
637
+ "checksum": patch_artifact_details_artifact_content_checksum,
638
+ "namespace": patch_artifact_details_artifact_content_namespace,
639
+ "object": patch_artifact_details_artifact_content_object,
640
+ "source_type": patch_artifact_details_artifact_content_source_type,
641
+ },
642
+ },
643
+ "artifacts": [{
644
+ "architecture": patch_artifact_details_artifacts_architecture,
645
+ "content": {
646
+ "bucket": patch_artifact_details_artifacts_content_bucket,
647
+ "checksum": patch_artifact_details_artifacts_content_checksum,
648
+ "namespace": patch_artifact_details_artifacts_content_namespace,
649
+ "object": patch_artifact_details_artifacts_content_object,
650
+ "source_type": patch_artifact_details_artifacts_content_source_type,
651
+ },
652
+ "os_type": patch_artifact_details_artifacts_os_type,
653
+ }],
654
+ },
655
+ compartment_id=compartment_id,
656
+ name=patch_name,
657
+ patch_type={
658
+ "platform_configuration_id": test_platform_configuration["id"],
659
+ },
660
+ product={
661
+ "platform_configuration_id": test_platform_configuration["id"],
662
+ "version": patch_product_version,
663
+ },
664
+ severity=patch_severity,
665
+ time_released=patch_time_released,
666
+ defined_tags={
667
+ "foo-namespace.bar-key": "value",
668
+ },
669
+ dependent_patches=[{
670
+ "id": patch_dependent_patches_id,
671
+ }],
672
+ description=patch_description,
673
+ freeform_tags={
674
+ "bar-key": "value",
675
+ })
676
+ ```
677
+
678
+ ## Import
679
+
680
+ Patches can be imported using the `id`, e.g.
681
+
682
+ ```sh
683
+ $ pulumi import oci:FleetAppsManagement/patch:Patch test_patch "id"
684
+ ```
685
+
686
+ :param str resource_name: The name of the resource.
687
+ :param PatchArgs args: The arguments to use to populate this resource's properties.
688
+ :param pulumi.ResourceOptions opts: Options for the resource.
689
+ """
690
+ ...
691
+ def __init__(__self__, resource_name: str, *args, **kwargs):
692
+ resource_args, opts = _utilities.get_resource_args_opts(PatchArgs, pulumi.ResourceOptions, *args, **kwargs)
693
+ if resource_args is not None:
694
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
695
+ else:
696
+ __self__._internal_init(resource_name, *args, **kwargs)
697
+
698
+ def _internal_init(__self__,
699
+ resource_name: str,
700
+ opts: Optional[pulumi.ResourceOptions] = None,
701
+ artifact_details: Optional[pulumi.Input[Union['PatchArtifactDetailsArgs', 'PatchArtifactDetailsArgsDict']]] = None,
702
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
703
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
704
+ dependent_patches: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PatchDependentPatchArgs', 'PatchDependentPatchArgsDict']]]]] = None,
705
+ description: Optional[pulumi.Input[builtins.str]] = None,
706
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
707
+ name: Optional[pulumi.Input[builtins.str]] = None,
708
+ patch_type: Optional[pulumi.Input[Union['PatchPatchTypeArgs', 'PatchPatchTypeArgsDict']]] = None,
709
+ product: Optional[pulumi.Input[Union['PatchProductArgs', 'PatchProductArgsDict']]] = None,
710
+ severity: Optional[pulumi.Input[builtins.str]] = None,
711
+ time_released: Optional[pulumi.Input[builtins.str]] = None,
712
+ __props__=None):
713
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
714
+ if not isinstance(opts, pulumi.ResourceOptions):
715
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
716
+ if opts.id is None:
717
+ if __props__ is not None:
718
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
719
+ __props__ = PatchArgs.__new__(PatchArgs)
720
+
721
+ if artifact_details is None and not opts.urn:
722
+ raise TypeError("Missing required property 'artifact_details'")
723
+ __props__.__dict__["artifact_details"] = artifact_details
724
+ if compartment_id is None and not opts.urn:
725
+ raise TypeError("Missing required property 'compartment_id'")
726
+ __props__.__dict__["compartment_id"] = compartment_id
727
+ __props__.__dict__["defined_tags"] = defined_tags
728
+ __props__.__dict__["dependent_patches"] = dependent_patches
729
+ __props__.__dict__["description"] = description
730
+ __props__.__dict__["freeform_tags"] = freeform_tags
731
+ __props__.__dict__["name"] = name
732
+ if patch_type is None and not opts.urn:
733
+ raise TypeError("Missing required property 'patch_type'")
734
+ __props__.__dict__["patch_type"] = patch_type
735
+ if product is None and not opts.urn:
736
+ raise TypeError("Missing required property 'product'")
737
+ __props__.__dict__["product"] = product
738
+ if severity is None and not opts.urn:
739
+ raise TypeError("Missing required property 'severity'")
740
+ __props__.__dict__["severity"] = severity
741
+ if time_released is None and not opts.urn:
742
+ raise TypeError("Missing required property 'time_released'")
743
+ __props__.__dict__["time_released"] = time_released
744
+ __props__.__dict__["lifecycle_details"] = None
745
+ __props__.__dict__["resource_region"] = None
746
+ __props__.__dict__["state"] = None
747
+ __props__.__dict__["system_tags"] = None
748
+ __props__.__dict__["time_created"] = None
749
+ __props__.__dict__["time_updated"] = None
750
+ __props__.__dict__["type"] = None
751
+ super(Patch, __self__).__init__(
752
+ 'oci:FleetAppsManagement/patch:Patch',
753
+ resource_name,
754
+ __props__,
755
+ opts)
756
+
757
+ @staticmethod
758
+ def get(resource_name: str,
759
+ id: pulumi.Input[str],
760
+ opts: Optional[pulumi.ResourceOptions] = None,
761
+ artifact_details: Optional[pulumi.Input[Union['PatchArtifactDetailsArgs', 'PatchArtifactDetailsArgsDict']]] = None,
762
+ compartment_id: Optional[pulumi.Input[builtins.str]] = None,
763
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
764
+ dependent_patches: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PatchDependentPatchArgs', 'PatchDependentPatchArgsDict']]]]] = None,
765
+ description: Optional[pulumi.Input[builtins.str]] = None,
766
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
767
+ lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
768
+ name: Optional[pulumi.Input[builtins.str]] = None,
769
+ patch_type: Optional[pulumi.Input[Union['PatchPatchTypeArgs', 'PatchPatchTypeArgsDict']]] = None,
770
+ product: Optional[pulumi.Input[Union['PatchProductArgs', 'PatchProductArgsDict']]] = None,
771
+ resource_region: Optional[pulumi.Input[builtins.str]] = None,
772
+ severity: Optional[pulumi.Input[builtins.str]] = None,
773
+ state: Optional[pulumi.Input[builtins.str]] = None,
774
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
775
+ time_created: Optional[pulumi.Input[builtins.str]] = None,
776
+ time_released: Optional[pulumi.Input[builtins.str]] = None,
777
+ time_updated: Optional[pulumi.Input[builtins.str]] = None,
778
+ type: Optional[pulumi.Input[builtins.str]] = None) -> 'Patch':
779
+ """
780
+ Get an existing Patch resource's state with the given name, id, and optional extra
781
+ properties used to qualify the lookup.
782
+
783
+ :param str resource_name: The unique name of the resulting resource.
784
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
785
+ :param pulumi.ResourceOptions opts: Options for the resource.
786
+ :param pulumi.Input[Union['PatchArtifactDetailsArgs', 'PatchArtifactDetailsArgsDict']] artifact_details: (Updatable) Patch artifact description and content details.
787
+ :param pulumi.Input[builtins.str] compartment_id: (Updatable)
788
+ :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"}`
789
+ :param pulumi.Input[Sequence[pulumi.Input[Union['PatchDependentPatchArgs', 'PatchDependentPatchArgsDict']]]] dependent_patches: (Updatable) Dependent Patches for this patch.
790
+ :param pulumi.Input[builtins.str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
791
+ :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"}`
792
+ :param pulumi.Input[builtins.str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
793
+ :param pulumi.Input[builtins.str] name: A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
794
+ :param pulumi.Input[Union['PatchPatchTypeArgs', 'PatchPatchTypeArgsDict']] patch_type: (Updatable) Patch Type
795
+ :param pulumi.Input[Union['PatchProductArgs', 'PatchProductArgsDict']] product: (Updatable) Product
796
+ :param pulumi.Input[builtins.str] resource_region: Associated region
797
+ :param pulumi.Input[builtins.str] severity: (Updatable) Patch Severity.
798
+ :param pulumi.Input[builtins.str] state: The current state of the Patch.
799
+ :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"}`
800
+ :param pulumi.Input[builtins.str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
801
+ :param pulumi.Input[builtins.str] time_released: (Updatable) Date when the patch was released.
802
+
803
+
804
+ ** IMPORTANT **
805
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
806
+ :param pulumi.Input[builtins.str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
807
+ :param pulumi.Input[builtins.str] type: Provide information on who defined the patch. Example: For Custom Patches the value will be USER_DEFINED For Oracle Defined Patches the value will be ORACLE_DEFINED
808
+ """
809
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
810
+
811
+ __props__ = _PatchState.__new__(_PatchState)
812
+
813
+ __props__.__dict__["artifact_details"] = artifact_details
814
+ __props__.__dict__["compartment_id"] = compartment_id
815
+ __props__.__dict__["defined_tags"] = defined_tags
816
+ __props__.__dict__["dependent_patches"] = dependent_patches
817
+ __props__.__dict__["description"] = description
818
+ __props__.__dict__["freeform_tags"] = freeform_tags
819
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
820
+ __props__.__dict__["name"] = name
821
+ __props__.__dict__["patch_type"] = patch_type
822
+ __props__.__dict__["product"] = product
823
+ __props__.__dict__["resource_region"] = resource_region
824
+ __props__.__dict__["severity"] = severity
825
+ __props__.__dict__["state"] = state
826
+ __props__.__dict__["system_tags"] = system_tags
827
+ __props__.__dict__["time_created"] = time_created
828
+ __props__.__dict__["time_released"] = time_released
829
+ __props__.__dict__["time_updated"] = time_updated
830
+ __props__.__dict__["type"] = type
831
+ return Patch(resource_name, opts=opts, __props__=__props__)
832
+
833
+ @property
834
+ @pulumi.getter(name="artifactDetails")
835
+ def artifact_details(self) -> pulumi.Output['outputs.PatchArtifactDetails']:
836
+ """
837
+ (Updatable) Patch artifact description and content details.
838
+ """
839
+ return pulumi.get(self, "artifact_details")
840
+
841
+ @property
842
+ @pulumi.getter(name="compartmentId")
843
+ def compartment_id(self) -> pulumi.Output[builtins.str]:
844
+ """
845
+ (Updatable)
846
+ """
847
+ return pulumi.get(self, "compartment_id")
848
+
849
+ @property
850
+ @pulumi.getter(name="definedTags")
851
+ def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
852
+ """
853
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
854
+ """
855
+ return pulumi.get(self, "defined_tags")
856
+
857
+ @property
858
+ @pulumi.getter(name="dependentPatches")
859
+ def dependent_patches(self) -> pulumi.Output[Sequence['outputs.PatchDependentPatch']]:
860
+ """
861
+ (Updatable) Dependent Patches for this patch.
862
+ """
863
+ return pulumi.get(self, "dependent_patches")
864
+
865
+ @property
866
+ @pulumi.getter
867
+ def description(self) -> pulumi.Output[builtins.str]:
868
+ """
869
+ (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
870
+ """
871
+ return pulumi.get(self, "description")
872
+
873
+ @property
874
+ @pulumi.getter(name="freeformTags")
875
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
876
+ """
877
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
878
+ """
879
+ return pulumi.get(self, "freeform_tags")
880
+
881
+ @property
882
+ @pulumi.getter(name="lifecycleDetails")
883
+ def lifecycle_details(self) -> pulumi.Output[builtins.str]:
884
+ """
885
+ A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
886
+ """
887
+ return pulumi.get(self, "lifecycle_details")
888
+
889
+ @property
890
+ @pulumi.getter
891
+ def name(self) -> pulumi.Output[builtins.str]:
892
+ """
893
+ A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
894
+ """
895
+ return pulumi.get(self, "name")
896
+
897
+ @property
898
+ @pulumi.getter(name="patchType")
899
+ def patch_type(self) -> pulumi.Output['outputs.PatchPatchType']:
900
+ """
901
+ (Updatable) Patch Type
902
+ """
903
+ return pulumi.get(self, "patch_type")
904
+
905
+ @property
906
+ @pulumi.getter
907
+ def product(self) -> pulumi.Output['outputs.PatchProduct']:
908
+ """
909
+ (Updatable) Product
910
+ """
911
+ return pulumi.get(self, "product")
912
+
913
+ @property
914
+ @pulumi.getter(name="resourceRegion")
915
+ def resource_region(self) -> pulumi.Output[builtins.str]:
916
+ """
917
+ Associated region
918
+ """
919
+ return pulumi.get(self, "resource_region")
920
+
921
+ @property
922
+ @pulumi.getter
923
+ def severity(self) -> pulumi.Output[builtins.str]:
924
+ """
925
+ (Updatable) Patch Severity.
926
+ """
927
+ return pulumi.get(self, "severity")
928
+
929
+ @property
930
+ @pulumi.getter
931
+ def state(self) -> pulumi.Output[builtins.str]:
932
+ """
933
+ The current state of the Patch.
934
+ """
935
+ return pulumi.get(self, "state")
936
+
937
+ @property
938
+ @pulumi.getter(name="systemTags")
939
+ def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
940
+ """
941
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
942
+ """
943
+ return pulumi.get(self, "system_tags")
944
+
945
+ @property
946
+ @pulumi.getter(name="timeCreated")
947
+ def time_created(self) -> pulumi.Output[builtins.str]:
948
+ """
949
+ The time this resource was created. An RFC3339 formatted datetime string.
950
+ """
951
+ return pulumi.get(self, "time_created")
952
+
953
+ @property
954
+ @pulumi.getter(name="timeReleased")
955
+ def time_released(self) -> pulumi.Output[builtins.str]:
956
+ """
957
+ (Updatable) Date when the patch was released.
958
+
959
+
960
+ ** IMPORTANT **
961
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
962
+ """
963
+ return pulumi.get(self, "time_released")
964
+
965
+ @property
966
+ @pulumi.getter(name="timeUpdated")
967
+ def time_updated(self) -> pulumi.Output[builtins.str]:
968
+ """
969
+ The time this resource was last updated. An RFC3339 formatted datetime string.
970
+ """
971
+ return pulumi.get(self, "time_updated")
972
+
973
+ @property
974
+ @pulumi.getter
975
+ def type(self) -> pulumi.Output[builtins.str]:
976
+ """
977
+ Provide information on who defined the patch. Example: For Custom Patches the value will be USER_DEFINED For Oracle Defined Patches the value will be ORACLE_DEFINED
978
+ """
979
+ return pulumi.get(self, "type")
980
+