pulumi-oci 3.4.0a1755714728__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.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755714728.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.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,253 @@
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__ = [
18
+ 'GetPluggableDatabaseSnapshotResult',
19
+ 'AwaitableGetPluggableDatabaseSnapshotResult',
20
+ 'get_pluggable_database_snapshot',
21
+ 'get_pluggable_database_snapshot_output',
22
+ ]
23
+
24
+ @pulumi.output_type
25
+ class GetPluggableDatabaseSnapshotResult:
26
+ """
27
+ A collection of values returned by getPluggableDatabaseSnapshot.
28
+ """
29
+ def __init__(__self__, cluster_id=None, compartment_id=None, defined_tags=None, freeform_tags=None, id=None, lifecycle_details=None, name=None, pluggable_database_id=None, pluggable_database_snapshot_id=None, state=None, system_tags=None, time_created=None):
30
+ if cluster_id and not isinstance(cluster_id, str):
31
+ raise TypeError("Expected argument 'cluster_id' to be a str")
32
+ pulumi.set(__self__, "cluster_id", cluster_id)
33
+ if compartment_id and not isinstance(compartment_id, str):
34
+ raise TypeError("Expected argument 'compartment_id' to be a str")
35
+ pulumi.set(__self__, "compartment_id", compartment_id)
36
+ if defined_tags and not isinstance(defined_tags, dict):
37
+ raise TypeError("Expected argument 'defined_tags' to be a dict")
38
+ pulumi.set(__self__, "defined_tags", defined_tags)
39
+ if freeform_tags and not isinstance(freeform_tags, dict):
40
+ raise TypeError("Expected argument 'freeform_tags' to be a dict")
41
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
42
+ if id and not isinstance(id, str):
43
+ raise TypeError("Expected argument 'id' to be a str")
44
+ pulumi.set(__self__, "id", id)
45
+ if lifecycle_details and not isinstance(lifecycle_details, str):
46
+ raise TypeError("Expected argument 'lifecycle_details' to be a str")
47
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
48
+ if name and not isinstance(name, str):
49
+ raise TypeError("Expected argument 'name' to be a str")
50
+ pulumi.set(__self__, "name", name)
51
+ if pluggable_database_id and not isinstance(pluggable_database_id, str):
52
+ raise TypeError("Expected argument 'pluggable_database_id' to be a str")
53
+ pulumi.set(__self__, "pluggable_database_id", pluggable_database_id)
54
+ if pluggable_database_snapshot_id and not isinstance(pluggable_database_snapshot_id, str):
55
+ raise TypeError("Expected argument 'pluggable_database_snapshot_id' to be a str")
56
+ pulumi.set(__self__, "pluggable_database_snapshot_id", pluggable_database_snapshot_id)
57
+ if state and not isinstance(state, str):
58
+ raise TypeError("Expected argument 'state' to be a str")
59
+ pulumi.set(__self__, "state", state)
60
+ if system_tags and not isinstance(system_tags, dict):
61
+ raise TypeError("Expected argument 'system_tags' to be a dict")
62
+ pulumi.set(__self__, "system_tags", system_tags)
63
+ if time_created and not isinstance(time_created, str):
64
+ raise TypeError("Expected argument 'time_created' to be a str")
65
+ pulumi.set(__self__, "time_created", time_created)
66
+
67
+ @_builtins.property
68
+ @pulumi.getter(name="clusterId")
69
+ def cluster_id(self) -> _builtins.str:
70
+ """
71
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
72
+ """
73
+ return pulumi.get(self, "cluster_id")
74
+
75
+ @_builtins.property
76
+ @pulumi.getter(name="compartmentId")
77
+ def compartment_id(self) -> _builtins.str:
78
+ """
79
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
80
+ """
81
+ return pulumi.get(self, "compartment_id")
82
+
83
+ @_builtins.property
84
+ @pulumi.getter(name="definedTags")
85
+ def defined_tags(self) -> Mapping[str, _builtins.str]:
86
+ """
87
+ 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).
88
+ """
89
+ return pulumi.get(self, "defined_tags")
90
+
91
+ @_builtins.property
92
+ @pulumi.getter(name="freeformTags")
93
+ def freeform_tags(self) -> Mapping[str, _builtins.str]:
94
+ """
95
+ 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"}`
96
+ """
97
+ return pulumi.get(self, "freeform_tags")
98
+
99
+ @_builtins.property
100
+ @pulumi.getter
101
+ def id(self) -> _builtins.str:
102
+ """
103
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database Snapshot.
104
+ """
105
+ return pulumi.get(self, "id")
106
+
107
+ @_builtins.property
108
+ @pulumi.getter(name="lifecycleDetails")
109
+ def lifecycle_details(self) -> _builtins.str:
110
+ """
111
+ Additional information about the current lifecycle state of the Exadata Pluggable Database Snapshot.
112
+ """
113
+ return pulumi.get(self, "lifecycle_details")
114
+
115
+ @_builtins.property
116
+ @pulumi.getter
117
+ def name(self) -> _builtins.str:
118
+ """
119
+ The user-friendly name for the Database Snapshot. The name should be unique.
120
+ """
121
+ return pulumi.get(self, "name")
122
+
123
+ @_builtins.property
124
+ @pulumi.getter(name="pluggableDatabaseId")
125
+ def pluggable_database_id(self) -> _builtins.str:
126
+ """
127
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database.
128
+ """
129
+ return pulumi.get(self, "pluggable_database_id")
130
+
131
+ @_builtins.property
132
+ @pulumi.getter(name="pluggableDatabaseSnapshotId")
133
+ def pluggable_database_snapshot_id(self) -> _builtins.str:
134
+ return pulumi.get(self, "pluggable_database_snapshot_id")
135
+
136
+ @_builtins.property
137
+ @pulumi.getter
138
+ def state(self) -> _builtins.str:
139
+ """
140
+ The current state of the Exadata Pluggable Database Snapshot.
141
+ """
142
+ return pulumi.get(self, "state")
143
+
144
+ @_builtins.property
145
+ @pulumi.getter(name="systemTags")
146
+ def system_tags(self) -> Mapping[str, _builtins.str]:
147
+ """
148
+ 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).
149
+ """
150
+ return pulumi.get(self, "system_tags")
151
+
152
+ @_builtins.property
153
+ @pulumi.getter(name="timeCreated")
154
+ def time_created(self) -> _builtins.str:
155
+ """
156
+ 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
157
+ """
158
+ return pulumi.get(self, "time_created")
159
+
160
+
161
+ class AwaitableGetPluggableDatabaseSnapshotResult(GetPluggableDatabaseSnapshotResult):
162
+ # pylint: disable=using-constant-test
163
+ def __await__(self):
164
+ if False:
165
+ yield self
166
+ return GetPluggableDatabaseSnapshotResult(
167
+ cluster_id=self.cluster_id,
168
+ compartment_id=self.compartment_id,
169
+ defined_tags=self.defined_tags,
170
+ freeform_tags=self.freeform_tags,
171
+ id=self.id,
172
+ lifecycle_details=self.lifecycle_details,
173
+ name=self.name,
174
+ pluggable_database_id=self.pluggable_database_id,
175
+ pluggable_database_snapshot_id=self.pluggable_database_snapshot_id,
176
+ state=self.state,
177
+ system_tags=self.system_tags,
178
+ time_created=self.time_created)
179
+
180
+
181
+ def get_pluggable_database_snapshot(pluggable_database_snapshot_id: Optional[_builtins.str] = None,
182
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPluggableDatabaseSnapshotResult:
183
+ """
184
+ This data source provides details about a specific Pluggable Database Snapshot resource in Oracle Cloud Infrastructure Database service.
185
+
186
+ Gets information about the specified Exadata Pluggable Database Snapshot in the specified compartment.
187
+
188
+ ## Example Usage
189
+
190
+ ```python
191
+ import pulumi
192
+ import pulumi_oci as oci
193
+
194
+ test_pluggable_database_snapshot = oci.Database.get_pluggable_database_snapshot(pluggable_database_snapshot_id=test_pluggable_database_snapshot_oci_database_pluggable_database_snapshot["id"])
195
+ ```
196
+
197
+
198
+ :param _builtins.str pluggable_database_snapshot_id: The Exadata Pluggable Database Snapshot [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
199
+ """
200
+ __args__ = dict()
201
+ __args__['pluggableDatabaseSnapshotId'] = pluggable_database_snapshot_id
202
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
203
+ __ret__ = pulumi.runtime.invoke('oci:Database/getPluggableDatabaseSnapshot:getPluggableDatabaseSnapshot', __args__, opts=opts, typ=GetPluggableDatabaseSnapshotResult).value
204
+
205
+ return AwaitableGetPluggableDatabaseSnapshotResult(
206
+ cluster_id=pulumi.get(__ret__, 'cluster_id'),
207
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
208
+ defined_tags=pulumi.get(__ret__, 'defined_tags'),
209
+ freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
210
+ id=pulumi.get(__ret__, 'id'),
211
+ lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
212
+ name=pulumi.get(__ret__, 'name'),
213
+ pluggable_database_id=pulumi.get(__ret__, 'pluggable_database_id'),
214
+ pluggable_database_snapshot_id=pulumi.get(__ret__, 'pluggable_database_snapshot_id'),
215
+ state=pulumi.get(__ret__, 'state'),
216
+ system_tags=pulumi.get(__ret__, 'system_tags'),
217
+ time_created=pulumi.get(__ret__, 'time_created'))
218
+ def get_pluggable_database_snapshot_output(pluggable_database_snapshot_id: Optional[pulumi.Input[_builtins.str]] = None,
219
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPluggableDatabaseSnapshotResult]:
220
+ """
221
+ This data source provides details about a specific Pluggable Database Snapshot resource in Oracle Cloud Infrastructure Database service.
222
+
223
+ Gets information about the specified Exadata Pluggable Database Snapshot in the specified compartment.
224
+
225
+ ## Example Usage
226
+
227
+ ```python
228
+ import pulumi
229
+ import pulumi_oci as oci
230
+
231
+ test_pluggable_database_snapshot = oci.Database.get_pluggable_database_snapshot(pluggable_database_snapshot_id=test_pluggable_database_snapshot_oci_database_pluggable_database_snapshot["id"])
232
+ ```
233
+
234
+
235
+ :param _builtins.str pluggable_database_snapshot_id: The Exadata Pluggable Database Snapshot [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
236
+ """
237
+ __args__ = dict()
238
+ __args__['pluggableDatabaseSnapshotId'] = pluggable_database_snapshot_id
239
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
240
+ __ret__ = pulumi.runtime.invoke_output('oci:Database/getPluggableDatabaseSnapshot:getPluggableDatabaseSnapshot', __args__, opts=opts, typ=GetPluggableDatabaseSnapshotResult)
241
+ return __ret__.apply(lambda __response__: GetPluggableDatabaseSnapshotResult(
242
+ cluster_id=pulumi.get(__response__, 'cluster_id'),
243
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
244
+ defined_tags=pulumi.get(__response__, 'defined_tags'),
245
+ freeform_tags=pulumi.get(__response__, 'freeform_tags'),
246
+ id=pulumi.get(__response__, 'id'),
247
+ lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
248
+ name=pulumi.get(__response__, 'name'),
249
+ pluggable_database_id=pulumi.get(__response__, 'pluggable_database_id'),
250
+ pluggable_database_snapshot_id=pulumi.get(__response__, 'pluggable_database_snapshot_id'),
251
+ state=pulumi.get(__response__, 'state'),
252
+ system_tags=pulumi.get(__response__, 'system_tags'),
253
+ time_created=pulumi.get(__response__, 'time_created')))
@@ -0,0 +1,235 @@
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
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = [
20
+ 'GetPluggableDatabaseSnapshotsResult',
21
+ 'AwaitableGetPluggableDatabaseSnapshotsResult',
22
+ 'get_pluggable_database_snapshots',
23
+ 'get_pluggable_database_snapshots_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetPluggableDatabaseSnapshotsResult:
28
+ """
29
+ A collection of values returned by getPluggableDatabaseSnapshots.
30
+ """
31
+ def __init__(__self__, cluster_id=None, compartment_id=None, filters=None, id=None, name=None, pluggable_database_id=None, pluggable_database_snapshots=None, state=None):
32
+ if cluster_id and not isinstance(cluster_id, str):
33
+ raise TypeError("Expected argument 'cluster_id' to be a str")
34
+ pulumi.set(__self__, "cluster_id", cluster_id)
35
+ if compartment_id and not isinstance(compartment_id, str):
36
+ raise TypeError("Expected argument 'compartment_id' to be a str")
37
+ pulumi.set(__self__, "compartment_id", compartment_id)
38
+ if filters and not isinstance(filters, list):
39
+ raise TypeError("Expected argument 'filters' to be a list")
40
+ pulumi.set(__self__, "filters", filters)
41
+ if id and not isinstance(id, str):
42
+ raise TypeError("Expected argument 'id' to be a str")
43
+ pulumi.set(__self__, "id", id)
44
+ if name and not isinstance(name, str):
45
+ raise TypeError("Expected argument 'name' to be a str")
46
+ pulumi.set(__self__, "name", name)
47
+ if pluggable_database_id and not isinstance(pluggable_database_id, str):
48
+ raise TypeError("Expected argument 'pluggable_database_id' to be a str")
49
+ pulumi.set(__self__, "pluggable_database_id", pluggable_database_id)
50
+ if pluggable_database_snapshots and not isinstance(pluggable_database_snapshots, list):
51
+ raise TypeError("Expected argument 'pluggable_database_snapshots' to be a list")
52
+ pulumi.set(__self__, "pluggable_database_snapshots", pluggable_database_snapshots)
53
+ if state and not isinstance(state, str):
54
+ raise TypeError("Expected argument 'state' to be a str")
55
+ pulumi.set(__self__, "state", state)
56
+
57
+ @_builtins.property
58
+ @pulumi.getter(name="clusterId")
59
+ def cluster_id(self) -> Optional[_builtins.str]:
60
+ """
61
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
62
+ """
63
+ return pulumi.get(self, "cluster_id")
64
+
65
+ @_builtins.property
66
+ @pulumi.getter(name="compartmentId")
67
+ def compartment_id(self) -> Optional[_builtins.str]:
68
+ """
69
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
70
+ """
71
+ return pulumi.get(self, "compartment_id")
72
+
73
+ @_builtins.property
74
+ @pulumi.getter
75
+ def filters(self) -> Optional[Sequence['outputs.GetPluggableDatabaseSnapshotsFilterResult']]:
76
+ return pulumi.get(self, "filters")
77
+
78
+ @_builtins.property
79
+ @pulumi.getter
80
+ def id(self) -> _builtins.str:
81
+ """
82
+ The provider-assigned unique ID for this managed resource.
83
+ """
84
+ return pulumi.get(self, "id")
85
+
86
+ @_builtins.property
87
+ @pulumi.getter
88
+ def name(self) -> Optional[_builtins.str]:
89
+ """
90
+ The user-friendly name for the Database Snapshot. The name should be unique.
91
+ """
92
+ return pulumi.get(self, "name")
93
+
94
+ @_builtins.property
95
+ @pulumi.getter(name="pluggableDatabaseId")
96
+ def pluggable_database_id(self) -> Optional[_builtins.str]:
97
+ """
98
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database.
99
+ """
100
+ return pulumi.get(self, "pluggable_database_id")
101
+
102
+ @_builtins.property
103
+ @pulumi.getter(name="pluggableDatabaseSnapshots")
104
+ def pluggable_database_snapshots(self) -> Sequence['outputs.GetPluggableDatabaseSnapshotsPluggableDatabaseSnapshotResult']:
105
+ """
106
+ The list of pluggable_database_snapshots.
107
+ """
108
+ return pulumi.get(self, "pluggable_database_snapshots")
109
+
110
+ @_builtins.property
111
+ @pulumi.getter
112
+ def state(self) -> Optional[_builtins.str]:
113
+ """
114
+ The current state of the Exadata Pluggable Database Snapshot.
115
+ """
116
+ return pulumi.get(self, "state")
117
+
118
+
119
+ class AwaitableGetPluggableDatabaseSnapshotsResult(GetPluggableDatabaseSnapshotsResult):
120
+ # pylint: disable=using-constant-test
121
+ def __await__(self):
122
+ if False:
123
+ yield self
124
+ return GetPluggableDatabaseSnapshotsResult(
125
+ cluster_id=self.cluster_id,
126
+ compartment_id=self.compartment_id,
127
+ filters=self.filters,
128
+ id=self.id,
129
+ name=self.name,
130
+ pluggable_database_id=self.pluggable_database_id,
131
+ pluggable_database_snapshots=self.pluggable_database_snapshots,
132
+ state=self.state)
133
+
134
+
135
+ def get_pluggable_database_snapshots(cluster_id: Optional[_builtins.str] = None,
136
+ compartment_id: Optional[_builtins.str] = None,
137
+ filters: Optional[Sequence[Union['GetPluggableDatabaseSnapshotsFilterArgs', 'GetPluggableDatabaseSnapshotsFilterArgsDict']]] = None,
138
+ name: Optional[_builtins.str] = None,
139
+ pluggable_database_id: Optional[_builtins.str] = None,
140
+ state: Optional[_builtins.str] = None,
141
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPluggableDatabaseSnapshotsResult:
142
+ """
143
+ This data source provides the list of Pluggable Database Snapshots in Oracle Cloud Infrastructure Database service.
144
+
145
+ Gets a list of the Exadata Pluggable Database Snapshots in the specified compartment.
146
+
147
+ ## Example Usage
148
+
149
+ ```python
150
+ import pulumi
151
+ import pulumi_oci as oci
152
+
153
+ test_pluggable_database_snapshots = oci.Database.get_pluggable_database_snapshots(cluster_id=test_cluster["id"],
154
+ compartment_id=compartment_id,
155
+ name=pluggable_database_snapshot_name,
156
+ pluggable_database_id=test_pluggable_database["id"],
157
+ state=pluggable_database_snapshot_state)
158
+ ```
159
+
160
+
161
+ :param _builtins.str cluster_id: A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
162
+ :param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
163
+ :param _builtins.str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
164
+ :param _builtins.str pluggable_database_id: A filter to return only Exadata Pluggable Database Snapshots that match the given database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
165
+ :param _builtins.str state: A filter to return only Exadata Pluggable Database Snapshots that match the given lifecycle state exactly.
166
+ """
167
+ __args__ = dict()
168
+ __args__['clusterId'] = cluster_id
169
+ __args__['compartmentId'] = compartment_id
170
+ __args__['filters'] = filters
171
+ __args__['name'] = name
172
+ __args__['pluggableDatabaseId'] = pluggable_database_id
173
+ __args__['state'] = state
174
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
175
+ __ret__ = pulumi.runtime.invoke('oci:Database/getPluggableDatabaseSnapshots:getPluggableDatabaseSnapshots', __args__, opts=opts, typ=GetPluggableDatabaseSnapshotsResult).value
176
+
177
+ return AwaitableGetPluggableDatabaseSnapshotsResult(
178
+ cluster_id=pulumi.get(__ret__, 'cluster_id'),
179
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
180
+ filters=pulumi.get(__ret__, 'filters'),
181
+ id=pulumi.get(__ret__, 'id'),
182
+ name=pulumi.get(__ret__, 'name'),
183
+ pluggable_database_id=pulumi.get(__ret__, 'pluggable_database_id'),
184
+ pluggable_database_snapshots=pulumi.get(__ret__, 'pluggable_database_snapshots'),
185
+ state=pulumi.get(__ret__, 'state'))
186
+ def get_pluggable_database_snapshots_output(cluster_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
187
+ compartment_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
188
+ filters: Optional[pulumi.Input[Optional[Sequence[Union['GetPluggableDatabaseSnapshotsFilterArgs', 'GetPluggableDatabaseSnapshotsFilterArgsDict']]]]] = None,
189
+ name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
190
+ pluggable_database_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
191
+ state: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
192
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPluggableDatabaseSnapshotsResult]:
193
+ """
194
+ This data source provides the list of Pluggable Database Snapshots in Oracle Cloud Infrastructure Database service.
195
+
196
+ Gets a list of the Exadata Pluggable Database Snapshots in the specified compartment.
197
+
198
+ ## Example Usage
199
+
200
+ ```python
201
+ import pulumi
202
+ import pulumi_oci as oci
203
+
204
+ test_pluggable_database_snapshots = oci.Database.get_pluggable_database_snapshots(cluster_id=test_cluster["id"],
205
+ compartment_id=compartment_id,
206
+ name=pluggable_database_snapshot_name,
207
+ pluggable_database_id=test_pluggable_database["id"],
208
+ state=pluggable_database_snapshot_state)
209
+ ```
210
+
211
+
212
+ :param _builtins.str cluster_id: A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
213
+ :param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
214
+ :param _builtins.str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
215
+ :param _builtins.str pluggable_database_id: A filter to return only Exadata Pluggable Database Snapshots that match the given database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
216
+ :param _builtins.str state: A filter to return only Exadata Pluggable Database Snapshots that match the given lifecycle state exactly.
217
+ """
218
+ __args__ = dict()
219
+ __args__['clusterId'] = cluster_id
220
+ __args__['compartmentId'] = compartment_id
221
+ __args__['filters'] = filters
222
+ __args__['name'] = name
223
+ __args__['pluggableDatabaseId'] = pluggable_database_id
224
+ __args__['state'] = state
225
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
226
+ __ret__ = pulumi.runtime.invoke_output('oci:Database/getPluggableDatabaseSnapshots:getPluggableDatabaseSnapshots', __args__, opts=opts, typ=GetPluggableDatabaseSnapshotsResult)
227
+ return __ret__.apply(lambda __response__: GetPluggableDatabaseSnapshotsResult(
228
+ cluster_id=pulumi.get(__response__, 'cluster_id'),
229
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
230
+ filters=pulumi.get(__response__, 'filters'),
231
+ id=pulumi.get(__response__, 'id'),
232
+ name=pulumi.get(__response__, 'name'),
233
+ pluggable_database_id=pulumi.get(__response__, 'pluggable_database_id'),
234
+ pluggable_database_snapshots=pulumi.get(__response__, 'pluggable_database_snapshots'),
235
+ state=pulumi.get(__response__, 'state')))