pulumi-oci 3.4.0a1755585924__py3-none-any.whl → 3.4.0a1755922408__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 (198) hide show
  1. pulumi_oci/__init__.py +168 -43
  2. pulumi_oci/aidocument/__init__.py +1 -0
  3. pulumi_oci/aidocument/_inputs.py +476 -6
  4. pulumi_oci/aidocument/get_model.py +63 -2
  5. pulumi_oci/aidocument/get_model_type.py +179 -0
  6. pulumi_oci/aidocument/get_models.py +1 -1
  7. pulumi_oci/aidocument/get_project.py +17 -2
  8. pulumi_oci/aidocument/get_projects.py +1 -1
  9. pulumi_oci/aidocument/model.py +188 -0
  10. pulumi_oci/aidocument/outputs.py +883 -8
  11. pulumi_oci/aidocument/processor_job.py +22 -4
  12. pulumi_oci/aidocument/project.py +50 -1
  13. pulumi_oci/apigateway/_inputs.py +608 -12
  14. pulumi_oci/apigateway/api.py +127 -38
  15. pulumi_oci/apigateway/certificate.py +122 -3
  16. pulumi_oci/apigateway/deployment.py +120 -3
  17. pulumi_oci/apigateway/gateway.py +124 -7
  18. pulumi_oci/apigateway/get_api.py +40 -1
  19. pulumi_oci/apigateway/get_certificate.py +41 -1
  20. pulumi_oci/apigateway/get_deployment.py +40 -1
  21. pulumi_oci/apigateway/get_gateway.py +40 -1
  22. pulumi_oci/apigateway/get_subscriber.py +40 -1
  23. pulumi_oci/apigateway/get_usage_plan.py +40 -1
  24. pulumi_oci/apigateway/outputs.py +1413 -39
  25. pulumi_oci/apigateway/subscriber.py +120 -3
  26. pulumi_oci/apigateway/usage_plan.py +127 -38
  27. pulumi_oci/apmconfig/_inputs.py +199 -15
  28. pulumi_oci/apmconfig/config.py +535 -17
  29. pulumi_oci/apmconfig/get_config.py +141 -1
  30. pulumi_oci/apmconfig/get_configs.py +2 -2
  31. pulumi_oci/apmconfig/outputs.py +509 -13
  32. pulumi_oci/apmtraces/__init__.py +5 -0
  33. pulumi_oci/apmtraces/_inputs.py +413 -0
  34. pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
  35. pulumi_oci/apmtraces/get_log.py +356 -0
  36. pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
  37. pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
  38. pulumi_oci/apmtraces/get_trace.py +4 -4
  39. pulumi_oci/apmtraces/outputs.py +971 -0
  40. pulumi_oci/apmtraces/scheduled_query.py +925 -0
  41. pulumi_oci/autoscaling/_inputs.py +177 -13
  42. pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
  43. pulumi_oci/autoscaling/outputs.py +269 -23
  44. pulumi_oci/core/_inputs.py +184 -0
  45. pulumi_oci/core/get_ipv6.py +15 -1
  46. pulumi_oci/core/ipv6.py +49 -0
  47. pulumi_oci/core/outputs.py +365 -0
  48. pulumi_oci/database/__init__.py +3 -0
  49. pulumi_oci/database/_inputs.py +139 -7
  50. pulumi_oci/database/autonomous_container_database.py +94 -0
  51. pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
  52. pulumi_oci/database/autonomous_database.py +578 -568
  53. pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
  54. pulumi_oci/database/get_autonomous_container_database.py +29 -1
  55. pulumi_oci/database/get_autonomous_database.py +65 -1
  56. pulumi_oci/database/get_autonomous_databases.py +6 -1
  57. pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
  58. pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
  59. pulumi_oci/database/outputs.py +470 -75
  60. pulumi_oci/database/pluggable_database.py +0 -14
  61. pulumi_oci/database/pluggable_database_snapshot.py +539 -0
  62. pulumi_oci/databasemanagement/__init__.py +37 -0
  63. pulumi_oci/databasemanagement/_inputs.py +9516 -3414
  64. pulumi_oci/databasemanagement/cloud_asm.py +791 -0
  65. pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
  66. pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
  67. pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
  68. pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
  69. pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
  70. pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
  71. pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
  72. pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
  73. pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
  74. pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
  75. pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
  76. pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
  77. pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
  78. pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
  79. pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
  80. pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
  81. pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
  82. pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
  83. pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
  84. pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
  85. pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
  86. pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
  87. pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
  88. pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
  89. pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
  90. pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
  91. pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
  92. pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
  93. pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
  94. pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
  95. pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
  96. pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
  97. pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
  98. pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
  99. pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
  100. pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
  101. pulumi_oci/databasemanagement/get_managed_database.py +2 -2
  102. pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
  105. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
  106. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
  107. pulumi_oci/databasemanagement/outputs.py +18049 -4222
  108. pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
  109. pulumi_oci/datasafe/get_security_assessment_findings.py +2 -2
  110. pulumi_oci/datasafe/get_security_assessments.py +2 -2
  111. pulumi_oci/datasafe/outputs.py +192 -2
  112. pulumi_oci/datascience/__init__.py +10 -0
  113. pulumi_oci/datascience/_inputs.py +6760 -2206
  114. pulumi_oci/datascience/get_job.py +15 -1
  115. pulumi_oci/datascience/get_job_run.py +44 -2
  116. pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
  117. pulumi_oci/datascience/get_model_group.py +405 -0
  118. pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
  119. pulumi_oci/datascience/get_model_group_models.py +240 -0
  120. pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
  121. pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
  122. pulumi_oci/datascience/get_model_groups.py +265 -0
  123. pulumi_oci/datascience/get_pipeline_run.py +15 -1
  124. pulumi_oci/datascience/job.py +81 -154
  125. pulumi_oci/datascience/job_run.py +250 -4
  126. pulumi_oci/datascience/model_group.py +1111 -0
  127. pulumi_oci/datascience/model_group_artifact.py +369 -0
  128. pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
  129. pulumi_oci/datascience/notebook_session.py +4 -0
  130. pulumi_oci/datascience/outputs.py +17168 -8021
  131. pulumi_oci/datascience/pipeline_run.py +87 -0
  132. pulumi_oci/goldengate/_inputs.py +3 -3
  133. pulumi_oci/goldengate/connection.py +175 -56
  134. pulumi_oci/goldengate/get_connection.py +20 -4
  135. pulumi_oci/goldengate/outputs.py +27 -8
  136. pulumi_oci/managementagent/__init__.py +4 -0
  137. pulumi_oci/managementagent/_inputs.py +129 -0
  138. pulumi_oci/managementagent/get_management_agent.py +26 -1
  139. pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
  140. pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
  141. pulumi_oci/managementagent/get_named_credential.py +268 -0
  142. pulumi_oci/managementagent/get_named_credentials.py +221 -0
  143. pulumi_oci/managementagent/management_agent.py +48 -0
  144. pulumi_oci/managementagent/management_agent_install_key.py +84 -0
  145. pulumi_oci/managementagent/named_credential.py +706 -0
  146. pulumi_oci/managementagent/outputs.py +515 -0
  147. pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
  148. pulumi_oci/oci/__init__.py +3 -0
  149. pulumi_oci/oci/_inputs.py +146 -0
  150. pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
  151. pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
  152. pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
  153. pulumi_oci/oci/outputs.py +367 -0
  154. pulumi_oci/opsi/_inputs.py +1001 -149
  155. pulumi_oci/opsi/database_insight.py +22 -3
  156. pulumi_oci/opsi/exadata_insight.py +86 -6
  157. pulumi_oci/opsi/outputs.py +1438 -178
  158. pulumi_oci/psql/configuration.py +109 -19
  159. pulumi_oci/psql/db_system.py +7 -7
  160. pulumi_oci/psql/get_configuration.py +30 -2
  161. pulumi_oci/psql/get_configurations.py +49 -5
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_default_configuration.py +30 -4
  164. pulumi_oci/psql/get_default_configurations.py +49 -5
  165. pulumi_oci/psql/outputs.py +47 -14
  166. pulumi_oci/pulumi-plugin.json +1 -1
  167. pulumi_oci/redis/__init__.py +6 -0
  168. pulumi_oci/redis/_inputs.py +217 -0
  169. pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
  170. pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
  171. pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
  172. pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
  173. pulumi_oci/redis/get_redis_cluster.py +15 -1
  174. pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
  175. pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
  176. pulumi_oci/redis/outputs.py +713 -0
  177. pulumi_oci/redis/redis_cluster.py +49 -0
  178. pulumi_oci/vault/_inputs.py +198 -0
  179. pulumi_oci/vault/get_secret.py +43 -1
  180. pulumi_oci/vault/outputs.py +434 -0
  181. pulumi_oci/vault/secret.py +103 -0
  182. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/RECORD +185 -134
  184. pulumi_oci/aianomalydetection/__init__.py +0 -25
  185. pulumi_oci/aianomalydetection/_inputs.py +0 -1742
  186. pulumi_oci/aianomalydetection/ai_private_endpoint.py +0 -643
  187. pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
  188. pulumi_oci/aianomalydetection/get_ai_private_endpoint.py +0 -281
  189. pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
  190. pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
  191. pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
  192. pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
  193. pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
  194. pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
  195. pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
  196. pulumi_oci/aianomalydetection/outputs.py +0 -3699
  197. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/top_level.txt +0 -0
@@ -44,8 +44,6 @@ class PluggableDatabaseArgs:
44
44
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
45
45
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
46
46
  :param pulumi.Input[_builtins.str] pdb_admin_password: A strong password for PDB Admin. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \\#, or -.
47
-
48
- Use `RELOCATE_PDB` for relocating the Pluggable Database from Source CDB and creating it in target CDB. This will relocate a pluggable database (PDB) to a different database from the source PDB. The source PDB must be in the `READ_WRITE` openMode when performing the relocate.
49
47
  :param pulumi.Input['PluggableDatabasePdbCreationTypeDetailsArgs'] pdb_creation_type_details: The Pluggable Database creation type. Use `LOCAL_CLONE_PDB` for creating a new PDB using Local Clone on Source Pluggable Database. This will Clone and starts a pluggable database (PDB) in the same database (CDB) as the source PDB. The source PDB must be in the `READ_WRITE` openMode to perform the clone operation. isThinClone options are supported for Exadata VM cluster on Exascale Infrastructure, Exadata Cloud@Customer VM Cluster on Exadata Cloud@Customer infrastructure, and Exadata Cloud VM cluster on cloud Exadata infrastructure Use `REMOTE_CLONE_PDB` for creating a new PDB using Remote Clone on Source Pluggable Database. This will Clone a pluggable database (PDB) to a different database from the source PDB. The cloned PDB will be started upon completion of the clone operation. The source PDB must be in the `READ_WRITE` openMode when performing the clone. For Exadata Cloud@Customer instances, the source pluggable database (PDB) must be on the same Exadata Infrastructure as the target container database (CDB) to create a remote clone. isThinClone options are supported for Exadata VM cluster on Exascale Infrastructure, Exadata Cloud@Customer VM Cluster on Exadata Cloud@Customer infrastructure, and Exadata Cloud VM cluster on cloud Exadata infrastructure. Use `RELOCATE_PDB` for relocating the Pluggable Database from Source CDB and creating it in target CDB. This will relocate a pluggable database (PDB) to a different database from the source PDB. The source PDB must be in the `READ_WRITE` openMode when performing the relocate.
50
48
  :param pulumi.Input[_builtins.int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
51
49
  :param pulumi.Input[_builtins.int] rotate_key_trigger: (Updatable) An optional property when incremented triggers Rotate Key. Could be set to any integer value.
@@ -170,8 +168,6 @@ class PluggableDatabaseArgs:
170
168
  def pdb_admin_password(self) -> Optional[pulumi.Input[_builtins.str]]:
171
169
  """
172
170
  A strong password for PDB Admin. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \\#, or -.
173
-
174
- Use `RELOCATE_PDB` for relocating the Pluggable Database from Source CDB and creating it in target CDB. This will relocate a pluggable database (PDB) to a different database from the source PDB. The source PDB must be in the `READ_WRITE` openMode when performing the relocate.
175
171
  """
176
172
  return pulumi.get(self, "pdb_admin_password")
177
173
 
@@ -297,8 +293,6 @@ class _PluggableDatabaseState:
297
293
  :param pulumi.Input[_builtins.str] lifecycle_details: Detailed message for the lifecycle state.
298
294
  :param pulumi.Input[_builtins.str] open_mode: The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
299
295
  :param pulumi.Input[_builtins.str] pdb_admin_password: A strong password for PDB Admin. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \\#, or -.
300
-
301
- Use `RELOCATE_PDB` for relocating the Pluggable Database from Source CDB and creating it in target CDB. This will relocate a pluggable database (PDB) to a different database from the source PDB. The source PDB must be in the `READ_WRITE` openMode when performing the relocate.
302
296
  :param pulumi.Input['PluggableDatabasePdbCreationTypeDetailsArgs'] pdb_creation_type_details: The Pluggable Database creation type. Use `LOCAL_CLONE_PDB` for creating a new PDB using Local Clone on Source Pluggable Database. This will Clone and starts a pluggable database (PDB) in the same database (CDB) as the source PDB. The source PDB must be in the `READ_WRITE` openMode to perform the clone operation. isThinClone options are supported for Exadata VM cluster on Exascale Infrastructure, Exadata Cloud@Customer VM Cluster on Exadata Cloud@Customer infrastructure, and Exadata Cloud VM cluster on cloud Exadata infrastructure Use `REMOTE_CLONE_PDB` for creating a new PDB using Remote Clone on Source Pluggable Database. This will Clone a pluggable database (PDB) to a different database from the source PDB. The cloned PDB will be started upon completion of the clone operation. The source PDB must be in the `READ_WRITE` openMode when performing the clone. For Exadata Cloud@Customer instances, the source pluggable database (PDB) must be on the same Exadata Infrastructure as the target container database (CDB) to create a remote clone. isThinClone options are supported for Exadata VM cluster on Exascale Infrastructure, Exadata Cloud@Customer VM Cluster on Exadata Cloud@Customer infrastructure, and Exadata Cloud VM cluster on cloud Exadata infrastructure. Use `RELOCATE_PDB` for relocating the Pluggable Database from Source CDB and creating it in target CDB. This will relocate a pluggable database (PDB) to a different database from the source PDB. The source PDB must be in the `READ_WRITE` openMode when performing the relocate.
303
297
  :param pulumi.Input[_builtins.str] pdb_name: The name for the pluggable database (PDB). The name is unique in the context of a [container database](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/Database/). The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
304
298
  :param pulumi.Input[Sequence[pulumi.Input['PluggableDatabasePdbNodeLevelDetailArgs']]] pdb_node_level_details: Pluggable Database Node Level Details. Example: [{"nodeName" : "node1", "openMode" : "READ_WRITE"}, {"nodeName" : "node2", "openMode" : "READ_ONLY"}]
@@ -502,8 +496,6 @@ class _PluggableDatabaseState:
502
496
  def pdb_admin_password(self) -> Optional[pulumi.Input[_builtins.str]]:
503
497
  """
504
498
  A strong password for PDB Admin. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \\#, or -.
505
-
506
- Use `RELOCATE_PDB` for relocating the Pluggable Database from Source CDB and creating it in target CDB. This will relocate a pluggable database (PDB) to a different database from the source PDB. The source PDB must be in the `READ_WRITE` openMode when performing the relocate.
507
499
  """
508
500
  return pulumi.get(self, "pdb_admin_password")
509
501
 
@@ -716,8 +708,6 @@ class PluggableDatabase(pulumi.CustomResource):
716
708
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
717
709
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
718
710
  :param pulumi.Input[_builtins.str] pdb_admin_password: A strong password for PDB Admin. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \\#, or -.
719
-
720
- Use `RELOCATE_PDB` for relocating the Pluggable Database from Source CDB and creating it in target CDB. This will relocate a pluggable database (PDB) to a different database from the source PDB. The source PDB must be in the `READ_WRITE` openMode when performing the relocate.
721
711
  :param pulumi.Input[Union['PluggableDatabasePdbCreationTypeDetailsArgs', 'PluggableDatabasePdbCreationTypeDetailsArgsDict']] pdb_creation_type_details: The Pluggable Database creation type. Use `LOCAL_CLONE_PDB` for creating a new PDB using Local Clone on Source Pluggable Database. This will Clone and starts a pluggable database (PDB) in the same database (CDB) as the source PDB. The source PDB must be in the `READ_WRITE` openMode to perform the clone operation. isThinClone options are supported for Exadata VM cluster on Exascale Infrastructure, Exadata Cloud@Customer VM Cluster on Exadata Cloud@Customer infrastructure, and Exadata Cloud VM cluster on cloud Exadata infrastructure Use `REMOTE_CLONE_PDB` for creating a new PDB using Remote Clone on Source Pluggable Database. This will Clone a pluggable database (PDB) to a different database from the source PDB. The cloned PDB will be started upon completion of the clone operation. The source PDB must be in the `READ_WRITE` openMode when performing the clone. For Exadata Cloud@Customer instances, the source pluggable database (PDB) must be on the same Exadata Infrastructure as the target container database (CDB) to create a remote clone. isThinClone options are supported for Exadata VM cluster on Exascale Infrastructure, Exadata Cloud@Customer VM Cluster on Exadata Cloud@Customer infrastructure, and Exadata Cloud VM cluster on cloud Exadata infrastructure. Use `RELOCATE_PDB` for relocating the Pluggable Database from Source CDB and creating it in target CDB. This will relocate a pluggable database (PDB) to a different database from the source PDB. The source PDB must be in the `READ_WRITE` openMode when performing the relocate.
722
712
  :param pulumi.Input[_builtins.str] pdb_name: The name for the pluggable database (PDB). The name is unique in the context of a [container database](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/Database/). The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
723
713
  :param pulumi.Input[_builtins.int] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
@@ -873,8 +863,6 @@ class PluggableDatabase(pulumi.CustomResource):
873
863
  :param pulumi.Input[_builtins.str] lifecycle_details: Detailed message for the lifecycle state.
874
864
  :param pulumi.Input[_builtins.str] open_mode: The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
875
865
  :param pulumi.Input[_builtins.str] pdb_admin_password: A strong password for PDB Admin. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \\#, or -.
876
-
877
- Use `RELOCATE_PDB` for relocating the Pluggable Database from Source CDB and creating it in target CDB. This will relocate a pluggable database (PDB) to a different database from the source PDB. The source PDB must be in the `READ_WRITE` openMode when performing the relocate.
878
866
  :param pulumi.Input[Union['PluggableDatabasePdbCreationTypeDetailsArgs', 'PluggableDatabasePdbCreationTypeDetailsArgsDict']] pdb_creation_type_details: The Pluggable Database creation type. Use `LOCAL_CLONE_PDB` for creating a new PDB using Local Clone on Source Pluggable Database. This will Clone and starts a pluggable database (PDB) in the same database (CDB) as the source PDB. The source PDB must be in the `READ_WRITE` openMode to perform the clone operation. isThinClone options are supported for Exadata VM cluster on Exascale Infrastructure, Exadata Cloud@Customer VM Cluster on Exadata Cloud@Customer infrastructure, and Exadata Cloud VM cluster on cloud Exadata infrastructure Use `REMOTE_CLONE_PDB` for creating a new PDB using Remote Clone on Source Pluggable Database. This will Clone a pluggable database (PDB) to a different database from the source PDB. The cloned PDB will be started upon completion of the clone operation. The source PDB must be in the `READ_WRITE` openMode when performing the clone. For Exadata Cloud@Customer instances, the source pluggable database (PDB) must be on the same Exadata Infrastructure as the target container database (CDB) to create a remote clone. isThinClone options are supported for Exadata VM cluster on Exascale Infrastructure, Exadata Cloud@Customer VM Cluster on Exadata Cloud@Customer infrastructure, and Exadata Cloud VM cluster on cloud Exadata infrastructure. Use `RELOCATE_PDB` for relocating the Pluggable Database from Source CDB and creating it in target CDB. This will relocate a pluggable database (PDB) to a different database from the source PDB. The source PDB must be in the `READ_WRITE` openMode when performing the relocate.
879
867
  :param pulumi.Input[_builtins.str] pdb_name: The name for the pluggable database (PDB). The name is unique in the context of a [container database](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/Database/). The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
880
868
  :param pulumi.Input[Sequence[pulumi.Input[Union['PluggableDatabasePdbNodeLevelDetailArgs', 'PluggableDatabasePdbNodeLevelDetailArgsDict']]]] pdb_node_level_details: Pluggable Database Node Level Details. Example: [{"nodeName" : "node1", "openMode" : "READ_WRITE"}, {"nodeName" : "node2", "openMode" : "READ_ONLY"}]
@@ -1014,8 +1002,6 @@ class PluggableDatabase(pulumi.CustomResource):
1014
1002
  def pdb_admin_password(self) -> pulumi.Output[_builtins.str]:
1015
1003
  """
1016
1004
  A strong password for PDB Admin. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \\#, or -.
1017
-
1018
- Use `RELOCATE_PDB` for relocating the Pluggable Database from Source CDB and creating it in target CDB. This will relocate a pluggable database (PDB) to a different database from the source PDB. The source PDB must be in the `READ_WRITE` openMode when performing the relocate.
1019
1005
  """
1020
1006
  return pulumi.get(self, "pdb_admin_password")
1021
1007
 
@@ -0,0 +1,539 @@
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 as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = ['PluggableDatabaseSnapshotArgs', 'PluggableDatabaseSnapshot']
18
+
19
+ @pulumi.input_type
20
+ class PluggableDatabaseSnapshotArgs:
21
+ def __init__(__self__, *,
22
+ pluggable_database_id: pulumi.Input[_builtins.str],
23
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
24
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
25
+ name: Optional[pulumi.Input[_builtins.str]] = None):
26
+ """
27
+ The set of arguments for constructing a PluggableDatabaseSnapshot resource.
28
+ :param pulumi.Input[_builtins.str] pluggable_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database.
29
+
30
+
31
+ ** IMPORTANT **
32
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
33
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
34
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
35
+ :param pulumi.Input[_builtins.str] name: The user-friendly name for the Database Snapshot. The name should be unique.
36
+ """
37
+ pulumi.set(__self__, "pluggable_database_id", pluggable_database_id)
38
+ if defined_tags is not None:
39
+ pulumi.set(__self__, "defined_tags", defined_tags)
40
+ if freeform_tags is not None:
41
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
42
+ if name is not None:
43
+ pulumi.set(__self__, "name", name)
44
+
45
+ @_builtins.property
46
+ @pulumi.getter(name="pluggableDatabaseId")
47
+ def pluggable_database_id(self) -> pulumi.Input[_builtins.str]:
48
+ """
49
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database.
50
+
51
+
52
+ ** IMPORTANT **
53
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
54
+ """
55
+ return pulumi.get(self, "pluggable_database_id")
56
+
57
+ @pluggable_database_id.setter
58
+ def pluggable_database_id(self, value: pulumi.Input[_builtins.str]):
59
+ pulumi.set(self, "pluggable_database_id", value)
60
+
61
+ @_builtins.property
62
+ @pulumi.getter(name="definedTags")
63
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
64
+ """
65
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
66
+ """
67
+ return pulumi.get(self, "defined_tags")
68
+
69
+ @defined_tags.setter
70
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
71
+ pulumi.set(self, "defined_tags", value)
72
+
73
+ @_builtins.property
74
+ @pulumi.getter(name="freeformTags")
75
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
76
+ """
77
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
78
+ """
79
+ return pulumi.get(self, "freeform_tags")
80
+
81
+ @freeform_tags.setter
82
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
83
+ pulumi.set(self, "freeform_tags", value)
84
+
85
+ @_builtins.property
86
+ @pulumi.getter
87
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
88
+ """
89
+ The user-friendly name for the Database Snapshot. The name should be unique.
90
+ """
91
+ return pulumi.get(self, "name")
92
+
93
+ @name.setter
94
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
95
+ pulumi.set(self, "name", value)
96
+
97
+
98
+ @pulumi.input_type
99
+ class _PluggableDatabaseSnapshotState:
100
+ def __init__(__self__, *,
101
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
102
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
103
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
104
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
105
+ lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
106
+ name: Optional[pulumi.Input[_builtins.str]] = None,
107
+ pluggable_database_id: Optional[pulumi.Input[_builtins.str]] = None,
108
+ state: Optional[pulumi.Input[_builtins.str]] = None,
109
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
110
+ time_created: Optional[pulumi.Input[_builtins.str]] = None):
111
+ """
112
+ Input properties used for looking up and filtering PluggableDatabaseSnapshot resources.
113
+ :param pulumi.Input[_builtins.str] cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
114
+ :param pulumi.Input[_builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
115
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
116
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
117
+ :param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state of the Exadata Pluggable Database Snapshot.
118
+ :param pulumi.Input[_builtins.str] name: The user-friendly name for the Database Snapshot. The name should be unique.
119
+ :param pulumi.Input[_builtins.str] pluggable_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database.
120
+
121
+
122
+ ** IMPORTANT **
123
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
124
+ :param pulumi.Input[_builtins.str] state: The current state of the Exadata Pluggable Database Snapshot.
125
+ :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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
126
+ :param pulumi.Input[_builtins.str] time_created: The date and time that the Exadata Pluggable Database Snapshot was created, as expressed in RFC 3339 format. For example: 2023-06-27T21:10:29Z
127
+ """
128
+ if cluster_id is not None:
129
+ pulumi.set(__self__, "cluster_id", cluster_id)
130
+ if compartment_id is not None:
131
+ pulumi.set(__self__, "compartment_id", compartment_id)
132
+ if defined_tags is not None:
133
+ pulumi.set(__self__, "defined_tags", defined_tags)
134
+ if freeform_tags is not None:
135
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
136
+ if lifecycle_details is not None:
137
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
138
+ if name is not None:
139
+ pulumi.set(__self__, "name", name)
140
+ if pluggable_database_id is not None:
141
+ pulumi.set(__self__, "pluggable_database_id", pluggable_database_id)
142
+ if state is not None:
143
+ pulumi.set(__self__, "state", state)
144
+ if system_tags is not None:
145
+ pulumi.set(__self__, "system_tags", system_tags)
146
+ if time_created is not None:
147
+ pulumi.set(__self__, "time_created", time_created)
148
+
149
+ @_builtins.property
150
+ @pulumi.getter(name="clusterId")
151
+ def cluster_id(self) -> Optional[pulumi.Input[_builtins.str]]:
152
+ """
153
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
154
+ """
155
+ return pulumi.get(self, "cluster_id")
156
+
157
+ @cluster_id.setter
158
+ def cluster_id(self, value: Optional[pulumi.Input[_builtins.str]]):
159
+ pulumi.set(self, "cluster_id", value)
160
+
161
+ @_builtins.property
162
+ @pulumi.getter(name="compartmentId")
163
+ def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
164
+ """
165
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
166
+ """
167
+ return pulumi.get(self, "compartment_id")
168
+
169
+ @compartment_id.setter
170
+ def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
171
+ pulumi.set(self, "compartment_id", value)
172
+
173
+ @_builtins.property
174
+ @pulumi.getter(name="definedTags")
175
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
176
+ """
177
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
178
+ """
179
+ return pulumi.get(self, "defined_tags")
180
+
181
+ @defined_tags.setter
182
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
183
+ pulumi.set(self, "defined_tags", value)
184
+
185
+ @_builtins.property
186
+ @pulumi.getter(name="freeformTags")
187
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
188
+ """
189
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
190
+ """
191
+ return pulumi.get(self, "freeform_tags")
192
+
193
+ @freeform_tags.setter
194
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
195
+ pulumi.set(self, "freeform_tags", value)
196
+
197
+ @_builtins.property
198
+ @pulumi.getter(name="lifecycleDetails")
199
+ def lifecycle_details(self) -> Optional[pulumi.Input[_builtins.str]]:
200
+ """
201
+ Additional information about the current lifecycle state of the Exadata Pluggable Database Snapshot.
202
+ """
203
+ return pulumi.get(self, "lifecycle_details")
204
+
205
+ @lifecycle_details.setter
206
+ def lifecycle_details(self, value: Optional[pulumi.Input[_builtins.str]]):
207
+ pulumi.set(self, "lifecycle_details", value)
208
+
209
+ @_builtins.property
210
+ @pulumi.getter
211
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
212
+ """
213
+ The user-friendly name for the Database Snapshot. The name should be unique.
214
+ """
215
+ return pulumi.get(self, "name")
216
+
217
+ @name.setter
218
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
219
+ pulumi.set(self, "name", value)
220
+
221
+ @_builtins.property
222
+ @pulumi.getter(name="pluggableDatabaseId")
223
+ def pluggable_database_id(self) -> Optional[pulumi.Input[_builtins.str]]:
224
+ """
225
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database.
226
+
227
+
228
+ ** IMPORTANT **
229
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
230
+ """
231
+ return pulumi.get(self, "pluggable_database_id")
232
+
233
+ @pluggable_database_id.setter
234
+ def pluggable_database_id(self, value: Optional[pulumi.Input[_builtins.str]]):
235
+ pulumi.set(self, "pluggable_database_id", value)
236
+
237
+ @_builtins.property
238
+ @pulumi.getter
239
+ def state(self) -> Optional[pulumi.Input[_builtins.str]]:
240
+ """
241
+ The current state of the Exadata Pluggable Database Snapshot.
242
+ """
243
+ return pulumi.get(self, "state")
244
+
245
+ @state.setter
246
+ def state(self, value: Optional[pulumi.Input[_builtins.str]]):
247
+ pulumi.set(self, "state", value)
248
+
249
+ @_builtins.property
250
+ @pulumi.getter(name="systemTags")
251
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
252
+ """
253
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
254
+ """
255
+ return pulumi.get(self, "system_tags")
256
+
257
+ @system_tags.setter
258
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
259
+ pulumi.set(self, "system_tags", value)
260
+
261
+ @_builtins.property
262
+ @pulumi.getter(name="timeCreated")
263
+ def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
264
+ """
265
+ The date and time that the Exadata Pluggable Database Snapshot was created, as expressed in RFC 3339 format. For example: 2023-06-27T21:10:29Z
266
+ """
267
+ return pulumi.get(self, "time_created")
268
+
269
+ @time_created.setter
270
+ def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
271
+ pulumi.set(self, "time_created", value)
272
+
273
+
274
+ @pulumi.type_token("oci:Database/pluggableDatabaseSnapshot:PluggableDatabaseSnapshot")
275
+ class PluggableDatabaseSnapshot(pulumi.CustomResource):
276
+ @overload
277
+ def __init__(__self__,
278
+ resource_name: str,
279
+ opts: Optional[pulumi.ResourceOptions] = None,
280
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
281
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
282
+ name: Optional[pulumi.Input[_builtins.str]] = None,
283
+ pluggable_database_id: Optional[pulumi.Input[_builtins.str]] = None,
284
+ __props__=None):
285
+ """
286
+ This resource provides the Pluggable Database Snapshot resource in Oracle Cloud Infrastructure Database service.
287
+
288
+ Creates a Pluggable Database Snapshot
289
+
290
+ ## Example Usage
291
+
292
+ ```python
293
+ import pulumi
294
+ import pulumi_oci as oci
295
+
296
+ test_pluggable_database_snapshot = oci.database.PluggableDatabaseSnapshot("test_pluggable_database_snapshot",
297
+ name=pluggable_database_snapshot_name,
298
+ pluggable_database_id=test_pluggable_database["id"],
299
+ defined_tags=pluggable_database_snapshot_defined_tags,
300
+ freeform_tags={
301
+ "Department": "Finance",
302
+ })
303
+ ```
304
+
305
+ ## Import
306
+
307
+ PluggableDatabaseSnapshots can be imported using the `id`, e.g.
308
+
309
+ ```sh
310
+ $ pulumi import oci:Database/pluggableDatabaseSnapshot:PluggableDatabaseSnapshot test_pluggable_database_snapshot "id"
311
+ ```
312
+
313
+ :param str resource_name: The name of the resource.
314
+ :param pulumi.ResourceOptions opts: Options for the resource.
315
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
316
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
317
+ :param pulumi.Input[_builtins.str] name: The user-friendly name for the Database Snapshot. The name should be unique.
318
+ :param pulumi.Input[_builtins.str] pluggable_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database.
319
+
320
+
321
+ ** IMPORTANT **
322
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
323
+ """
324
+ ...
325
+ @overload
326
+ def __init__(__self__,
327
+ resource_name: str,
328
+ args: PluggableDatabaseSnapshotArgs,
329
+ opts: Optional[pulumi.ResourceOptions] = None):
330
+ """
331
+ This resource provides the Pluggable Database Snapshot resource in Oracle Cloud Infrastructure Database service.
332
+
333
+ Creates a Pluggable Database Snapshot
334
+
335
+ ## Example Usage
336
+
337
+ ```python
338
+ import pulumi
339
+ import pulumi_oci as oci
340
+
341
+ test_pluggable_database_snapshot = oci.database.PluggableDatabaseSnapshot("test_pluggable_database_snapshot",
342
+ name=pluggable_database_snapshot_name,
343
+ pluggable_database_id=test_pluggable_database["id"],
344
+ defined_tags=pluggable_database_snapshot_defined_tags,
345
+ freeform_tags={
346
+ "Department": "Finance",
347
+ })
348
+ ```
349
+
350
+ ## Import
351
+
352
+ PluggableDatabaseSnapshots can be imported using the `id`, e.g.
353
+
354
+ ```sh
355
+ $ pulumi import oci:Database/pluggableDatabaseSnapshot:PluggableDatabaseSnapshot test_pluggable_database_snapshot "id"
356
+ ```
357
+
358
+ :param str resource_name: The name of the resource.
359
+ :param PluggableDatabaseSnapshotArgs args: The arguments to use to populate this resource's properties.
360
+ :param pulumi.ResourceOptions opts: Options for the resource.
361
+ """
362
+ ...
363
+ def __init__(__self__, resource_name: str, *args, **kwargs):
364
+ resource_args, opts = _utilities.get_resource_args_opts(PluggableDatabaseSnapshotArgs, pulumi.ResourceOptions, *args, **kwargs)
365
+ if resource_args is not None:
366
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
367
+ else:
368
+ __self__._internal_init(resource_name, *args, **kwargs)
369
+
370
+ def _internal_init(__self__,
371
+ resource_name: str,
372
+ opts: Optional[pulumi.ResourceOptions] = None,
373
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
374
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
375
+ name: Optional[pulumi.Input[_builtins.str]] = None,
376
+ pluggable_database_id: Optional[pulumi.Input[_builtins.str]] = None,
377
+ __props__=None):
378
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
379
+ if not isinstance(opts, pulumi.ResourceOptions):
380
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
381
+ if opts.id is None:
382
+ if __props__ is not None:
383
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
384
+ __props__ = PluggableDatabaseSnapshotArgs.__new__(PluggableDatabaseSnapshotArgs)
385
+
386
+ __props__.__dict__["defined_tags"] = defined_tags
387
+ __props__.__dict__["freeform_tags"] = freeform_tags
388
+ __props__.__dict__["name"] = name
389
+ if pluggable_database_id is None and not opts.urn:
390
+ raise TypeError("Missing required property 'pluggable_database_id'")
391
+ __props__.__dict__["pluggable_database_id"] = pluggable_database_id
392
+ __props__.__dict__["cluster_id"] = None
393
+ __props__.__dict__["compartment_id"] = None
394
+ __props__.__dict__["lifecycle_details"] = None
395
+ __props__.__dict__["state"] = None
396
+ __props__.__dict__["system_tags"] = None
397
+ __props__.__dict__["time_created"] = None
398
+ super(PluggableDatabaseSnapshot, __self__).__init__(
399
+ 'oci:Database/pluggableDatabaseSnapshot:PluggableDatabaseSnapshot',
400
+ resource_name,
401
+ __props__,
402
+ opts)
403
+
404
+ @staticmethod
405
+ def get(resource_name: str,
406
+ id: pulumi.Input[str],
407
+ opts: Optional[pulumi.ResourceOptions] = None,
408
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
409
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
410
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
411
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
412
+ lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
413
+ name: Optional[pulumi.Input[_builtins.str]] = None,
414
+ pluggable_database_id: Optional[pulumi.Input[_builtins.str]] = None,
415
+ state: Optional[pulumi.Input[_builtins.str]] = None,
416
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
417
+ time_created: Optional[pulumi.Input[_builtins.str]] = None) -> 'PluggableDatabaseSnapshot':
418
+ """
419
+ Get an existing PluggableDatabaseSnapshot resource's state with the given name, id, and optional extra
420
+ properties used to qualify the lookup.
421
+
422
+ :param str resource_name: The unique name of the resulting resource.
423
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
424
+ :param pulumi.ResourceOptions opts: Options for the resource.
425
+ :param pulumi.Input[_builtins.str] cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
426
+ :param pulumi.Input[_builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
427
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
428
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
429
+ :param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state of the Exadata Pluggable Database Snapshot.
430
+ :param pulumi.Input[_builtins.str] name: The user-friendly name for the Database Snapshot. The name should be unique.
431
+ :param pulumi.Input[_builtins.str] pluggable_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database.
432
+
433
+
434
+ ** IMPORTANT **
435
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
436
+ :param pulumi.Input[_builtins.str] state: The current state of the Exadata Pluggable Database Snapshot.
437
+ :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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
438
+ :param pulumi.Input[_builtins.str] time_created: The date and time that the Exadata Pluggable Database Snapshot was created, as expressed in RFC 3339 format. For example: 2023-06-27T21:10:29Z
439
+ """
440
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
441
+
442
+ __props__ = _PluggableDatabaseSnapshotState.__new__(_PluggableDatabaseSnapshotState)
443
+
444
+ __props__.__dict__["cluster_id"] = cluster_id
445
+ __props__.__dict__["compartment_id"] = compartment_id
446
+ __props__.__dict__["defined_tags"] = defined_tags
447
+ __props__.__dict__["freeform_tags"] = freeform_tags
448
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
449
+ __props__.__dict__["name"] = name
450
+ __props__.__dict__["pluggable_database_id"] = pluggable_database_id
451
+ __props__.__dict__["state"] = state
452
+ __props__.__dict__["system_tags"] = system_tags
453
+ __props__.__dict__["time_created"] = time_created
454
+ return PluggableDatabaseSnapshot(resource_name, opts=opts, __props__=__props__)
455
+
456
+ @_builtins.property
457
+ @pulumi.getter(name="clusterId")
458
+ def cluster_id(self) -> pulumi.Output[_builtins.str]:
459
+ """
460
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
461
+ """
462
+ return pulumi.get(self, "cluster_id")
463
+
464
+ @_builtins.property
465
+ @pulumi.getter(name="compartmentId")
466
+ def compartment_id(self) -> pulumi.Output[_builtins.str]:
467
+ """
468
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
469
+ """
470
+ return pulumi.get(self, "compartment_id")
471
+
472
+ @_builtins.property
473
+ @pulumi.getter(name="definedTags")
474
+ def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
475
+ """
476
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
477
+ """
478
+ return pulumi.get(self, "defined_tags")
479
+
480
+ @_builtins.property
481
+ @pulumi.getter(name="freeformTags")
482
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
483
+ """
484
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
485
+ """
486
+ return pulumi.get(self, "freeform_tags")
487
+
488
+ @_builtins.property
489
+ @pulumi.getter(name="lifecycleDetails")
490
+ def lifecycle_details(self) -> pulumi.Output[_builtins.str]:
491
+ """
492
+ Additional information about the current lifecycle state of the Exadata Pluggable Database Snapshot.
493
+ """
494
+ return pulumi.get(self, "lifecycle_details")
495
+
496
+ @_builtins.property
497
+ @pulumi.getter
498
+ def name(self) -> pulumi.Output[_builtins.str]:
499
+ """
500
+ The user-friendly name for the Database Snapshot. The name should be unique.
501
+ """
502
+ return pulumi.get(self, "name")
503
+
504
+ @_builtins.property
505
+ @pulumi.getter(name="pluggableDatabaseId")
506
+ def pluggable_database_id(self) -> pulumi.Output[_builtins.str]:
507
+ """
508
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database.
509
+
510
+
511
+ ** IMPORTANT **
512
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
513
+ """
514
+ return pulumi.get(self, "pluggable_database_id")
515
+
516
+ @_builtins.property
517
+ @pulumi.getter
518
+ def state(self) -> pulumi.Output[_builtins.str]:
519
+ """
520
+ The current state of the Exadata Pluggable Database Snapshot.
521
+ """
522
+ return pulumi.get(self, "state")
523
+
524
+ @_builtins.property
525
+ @pulumi.getter(name="systemTags")
526
+ def system_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
527
+ """
528
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
529
+ """
530
+ return pulumi.get(self, "system_tags")
531
+
532
+ @_builtins.property
533
+ @pulumi.getter(name="timeCreated")
534
+ def time_created(self) -> pulumi.Output[_builtins.str]:
535
+ """
536
+ The date and time that the Exadata Pluggable Database Snapshot was created, as expressed in RFC 3339 format. For example: 2023-06-27T21:10:29Z
537
+ """
538
+ return pulumi.get(self, "time_created")
539
+