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
@@ -0,0 +1,630 @@
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__ = ['CloudDbHomeArgs', 'CloudDbHome']
18
+
19
+ @pulumi.input_type
20
+ class CloudDbHomeArgs:
21
+ def __init__(__self__, *,
22
+ cloud_db_home_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
+ """
26
+ The set of arguments for constructing a CloudDbHome resource.
27
+ :param pulumi.Input[_builtins.str] cloud_db_home_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database home.
28
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
29
+ :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"}`
30
+
31
+
32
+ ** IMPORTANT **
33
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
34
+ """
35
+ pulumi.set(__self__, "cloud_db_home_id", cloud_db_home_id)
36
+ if defined_tags is not None:
37
+ pulumi.set(__self__, "defined_tags", defined_tags)
38
+ if freeform_tags is not None:
39
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
40
+
41
+ @_builtins.property
42
+ @pulumi.getter(name="cloudDbHomeId")
43
+ def cloud_db_home_id(self) -> pulumi.Input[_builtins.str]:
44
+ """
45
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database home.
46
+ """
47
+ return pulumi.get(self, "cloud_db_home_id")
48
+
49
+ @cloud_db_home_id.setter
50
+ def cloud_db_home_id(self, value: pulumi.Input[_builtins.str]):
51
+ pulumi.set(self, "cloud_db_home_id", value)
52
+
53
+ @_builtins.property
54
+ @pulumi.getter(name="definedTags")
55
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
56
+ """
57
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
58
+ """
59
+ return pulumi.get(self, "defined_tags")
60
+
61
+ @defined_tags.setter
62
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
63
+ pulumi.set(self, "defined_tags", value)
64
+
65
+ @_builtins.property
66
+ @pulumi.getter(name="freeformTags")
67
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
68
+ """
69
+ (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"}`
70
+
71
+
72
+ ** IMPORTANT **
73
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
74
+ """
75
+ return pulumi.get(self, "freeform_tags")
76
+
77
+ @freeform_tags.setter
78
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
79
+ pulumi.set(self, "freeform_tags", value)
80
+
81
+
82
+ @pulumi.input_type
83
+ class _CloudDbHomeState:
84
+ def __init__(__self__, *,
85
+ additional_details: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
86
+ cloud_db_home_id: Optional[pulumi.Input[_builtins.str]] = None,
87
+ cloud_db_system_id: Optional[pulumi.Input[_builtins.str]] = None,
88
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
89
+ component_name: Optional[pulumi.Input[_builtins.str]] = None,
90
+ dbaas_id: Optional[pulumi.Input[_builtins.str]] = None,
91
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
92
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
93
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
94
+ home_directory: Optional[pulumi.Input[_builtins.str]] = None,
95
+ lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
96
+ state: Optional[pulumi.Input[_builtins.str]] = None,
97
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
98
+ time_created: Optional[pulumi.Input[_builtins.str]] = None,
99
+ time_updated: Optional[pulumi.Input[_builtins.str]] = None):
100
+ """
101
+ Input properties used for looking up and filtering CloudDbHome resources.
102
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] additional_details: The additional details of the DB home defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
103
+ :param pulumi.Input[_builtins.str] cloud_db_home_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database home.
104
+ :param pulumi.Input[_builtins.str] cloud_db_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the DB home is a part of.
105
+ :param pulumi.Input[_builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
106
+ :param pulumi.Input[_builtins.str] component_name: The name of the cloud DB home.
107
+ :param pulumi.Input[_builtins.str] dbaas_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB home in DBaas service.
108
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
109
+ :param pulumi.Input[_builtins.str] display_name: The user-friendly name for the cloud DB home. The name does not have to be unique.
110
+ :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"}`
111
+
112
+
113
+ ** IMPORTANT **
114
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
115
+ :param pulumi.Input[_builtins.str] home_directory: The location of the DB home.
116
+ :param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state.
117
+ :param pulumi.Input[_builtins.str] state: The current lifecycle state of the cloud DB home.
118
+ :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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
119
+ :param pulumi.Input[_builtins.str] time_created: The date and time the cloud DB home was created.
120
+ :param pulumi.Input[_builtins.str] time_updated: The date and time the cloud DB home was last updated.
121
+ """
122
+ if additional_details is not None:
123
+ pulumi.set(__self__, "additional_details", additional_details)
124
+ if cloud_db_home_id is not None:
125
+ pulumi.set(__self__, "cloud_db_home_id", cloud_db_home_id)
126
+ if cloud_db_system_id is not None:
127
+ pulumi.set(__self__, "cloud_db_system_id", cloud_db_system_id)
128
+ if compartment_id is not None:
129
+ pulumi.set(__self__, "compartment_id", compartment_id)
130
+ if component_name is not None:
131
+ pulumi.set(__self__, "component_name", component_name)
132
+ if dbaas_id is not None:
133
+ pulumi.set(__self__, "dbaas_id", dbaas_id)
134
+ if defined_tags is not None:
135
+ pulumi.set(__self__, "defined_tags", defined_tags)
136
+ if display_name is not None:
137
+ pulumi.set(__self__, "display_name", display_name)
138
+ if freeform_tags is not None:
139
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
140
+ if home_directory is not None:
141
+ pulumi.set(__self__, "home_directory", home_directory)
142
+ if lifecycle_details is not None:
143
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
144
+ if state is not None:
145
+ pulumi.set(__self__, "state", state)
146
+ if system_tags is not None:
147
+ pulumi.set(__self__, "system_tags", system_tags)
148
+ if time_created is not None:
149
+ pulumi.set(__self__, "time_created", time_created)
150
+ if time_updated is not None:
151
+ pulumi.set(__self__, "time_updated", time_updated)
152
+
153
+ @_builtins.property
154
+ @pulumi.getter(name="additionalDetails")
155
+ def additional_details(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
156
+ """
157
+ The additional details of the DB home defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
158
+ """
159
+ return pulumi.get(self, "additional_details")
160
+
161
+ @additional_details.setter
162
+ def additional_details(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
163
+ pulumi.set(self, "additional_details", value)
164
+
165
+ @_builtins.property
166
+ @pulumi.getter(name="cloudDbHomeId")
167
+ def cloud_db_home_id(self) -> Optional[pulumi.Input[_builtins.str]]:
168
+ """
169
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database home.
170
+ """
171
+ return pulumi.get(self, "cloud_db_home_id")
172
+
173
+ @cloud_db_home_id.setter
174
+ def cloud_db_home_id(self, value: Optional[pulumi.Input[_builtins.str]]):
175
+ pulumi.set(self, "cloud_db_home_id", value)
176
+
177
+ @_builtins.property
178
+ @pulumi.getter(name="cloudDbSystemId")
179
+ def cloud_db_system_id(self) -> Optional[pulumi.Input[_builtins.str]]:
180
+ """
181
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the DB home is a part of.
182
+ """
183
+ return pulumi.get(self, "cloud_db_system_id")
184
+
185
+ @cloud_db_system_id.setter
186
+ def cloud_db_system_id(self, value: Optional[pulumi.Input[_builtins.str]]):
187
+ pulumi.set(self, "cloud_db_system_id", value)
188
+
189
+ @_builtins.property
190
+ @pulumi.getter(name="compartmentId")
191
+ def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
192
+ """
193
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
194
+ """
195
+ return pulumi.get(self, "compartment_id")
196
+
197
+ @compartment_id.setter
198
+ def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
199
+ pulumi.set(self, "compartment_id", value)
200
+
201
+ @_builtins.property
202
+ @pulumi.getter(name="componentName")
203
+ def component_name(self) -> Optional[pulumi.Input[_builtins.str]]:
204
+ """
205
+ The name of the cloud DB home.
206
+ """
207
+ return pulumi.get(self, "component_name")
208
+
209
+ @component_name.setter
210
+ def component_name(self, value: Optional[pulumi.Input[_builtins.str]]):
211
+ pulumi.set(self, "component_name", value)
212
+
213
+ @_builtins.property
214
+ @pulumi.getter(name="dbaasId")
215
+ def dbaas_id(self) -> Optional[pulumi.Input[_builtins.str]]:
216
+ """
217
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB home in DBaas service.
218
+ """
219
+ return pulumi.get(self, "dbaas_id")
220
+
221
+ @dbaas_id.setter
222
+ def dbaas_id(self, value: Optional[pulumi.Input[_builtins.str]]):
223
+ pulumi.set(self, "dbaas_id", value)
224
+
225
+ @_builtins.property
226
+ @pulumi.getter(name="definedTags")
227
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
228
+ """
229
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
230
+ """
231
+ return pulumi.get(self, "defined_tags")
232
+
233
+ @defined_tags.setter
234
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
235
+ pulumi.set(self, "defined_tags", value)
236
+
237
+ @_builtins.property
238
+ @pulumi.getter(name="displayName")
239
+ def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
240
+ """
241
+ The user-friendly name for the cloud DB home. The name does not have to be unique.
242
+ """
243
+ return pulumi.get(self, "display_name")
244
+
245
+ @display_name.setter
246
+ def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
247
+ pulumi.set(self, "display_name", value)
248
+
249
+ @_builtins.property
250
+ @pulumi.getter(name="freeformTags")
251
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
252
+ """
253
+ (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"}`
254
+
255
+
256
+ ** IMPORTANT **
257
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
258
+ """
259
+ return pulumi.get(self, "freeform_tags")
260
+
261
+ @freeform_tags.setter
262
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
263
+ pulumi.set(self, "freeform_tags", value)
264
+
265
+ @_builtins.property
266
+ @pulumi.getter(name="homeDirectory")
267
+ def home_directory(self) -> Optional[pulumi.Input[_builtins.str]]:
268
+ """
269
+ The location of the DB home.
270
+ """
271
+ return pulumi.get(self, "home_directory")
272
+
273
+ @home_directory.setter
274
+ def home_directory(self, value: Optional[pulumi.Input[_builtins.str]]):
275
+ pulumi.set(self, "home_directory", value)
276
+
277
+ @_builtins.property
278
+ @pulumi.getter(name="lifecycleDetails")
279
+ def lifecycle_details(self) -> Optional[pulumi.Input[_builtins.str]]:
280
+ """
281
+ Additional information about the current lifecycle state.
282
+ """
283
+ return pulumi.get(self, "lifecycle_details")
284
+
285
+ @lifecycle_details.setter
286
+ def lifecycle_details(self, value: Optional[pulumi.Input[_builtins.str]]):
287
+ pulumi.set(self, "lifecycle_details", value)
288
+
289
+ @_builtins.property
290
+ @pulumi.getter
291
+ def state(self) -> Optional[pulumi.Input[_builtins.str]]:
292
+ """
293
+ The current lifecycle state of the cloud DB home.
294
+ """
295
+ return pulumi.get(self, "state")
296
+
297
+ @state.setter
298
+ def state(self, value: Optional[pulumi.Input[_builtins.str]]):
299
+ pulumi.set(self, "state", value)
300
+
301
+ @_builtins.property
302
+ @pulumi.getter(name="systemTags")
303
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
304
+ """
305
+ 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
306
+ """
307
+ return pulumi.get(self, "system_tags")
308
+
309
+ @system_tags.setter
310
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
311
+ pulumi.set(self, "system_tags", value)
312
+
313
+ @_builtins.property
314
+ @pulumi.getter(name="timeCreated")
315
+ def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
316
+ """
317
+ The date and time the cloud DB home was created.
318
+ """
319
+ return pulumi.get(self, "time_created")
320
+
321
+ @time_created.setter
322
+ def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
323
+ pulumi.set(self, "time_created", value)
324
+
325
+ @_builtins.property
326
+ @pulumi.getter(name="timeUpdated")
327
+ def time_updated(self) -> Optional[pulumi.Input[_builtins.str]]:
328
+ """
329
+ The date and time the cloud DB home was last updated.
330
+ """
331
+ return pulumi.get(self, "time_updated")
332
+
333
+ @time_updated.setter
334
+ def time_updated(self, value: Optional[pulumi.Input[_builtins.str]]):
335
+ pulumi.set(self, "time_updated", value)
336
+
337
+
338
+ @pulumi.type_token("oci:DatabaseManagement/cloudDbHome:CloudDbHome")
339
+ class CloudDbHome(pulumi.CustomResource):
340
+ @overload
341
+ def __init__(__self__,
342
+ resource_name: str,
343
+ opts: Optional[pulumi.ResourceOptions] = None,
344
+ cloud_db_home_id: Optional[pulumi.Input[_builtins.str]] = None,
345
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
346
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
347
+ __props__=None):
348
+ """
349
+ This resource provides the Cloud Db Home resource in Oracle Cloud Infrastructure Database Management service.
350
+
351
+ Updates the cloud DB home specified by `cloudDbHomeId`.
352
+
353
+ ## Import
354
+
355
+ CloudDbHomes can be imported using the `id`, e.g.
356
+
357
+ ```sh
358
+ $ pulumi import oci:DatabaseManagement/cloudDbHome:CloudDbHome test_cloud_db_home "id"
359
+ ```
360
+
361
+ :param str resource_name: The name of the resource.
362
+ :param pulumi.ResourceOptions opts: Options for the resource.
363
+ :param pulumi.Input[_builtins.str] cloud_db_home_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database home.
364
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
365
+ :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"}`
366
+
367
+
368
+ ** IMPORTANT **
369
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
370
+ """
371
+ ...
372
+ @overload
373
+ def __init__(__self__,
374
+ resource_name: str,
375
+ args: CloudDbHomeArgs,
376
+ opts: Optional[pulumi.ResourceOptions] = None):
377
+ """
378
+ This resource provides the Cloud Db Home resource in Oracle Cloud Infrastructure Database Management service.
379
+
380
+ Updates the cloud DB home specified by `cloudDbHomeId`.
381
+
382
+ ## Import
383
+
384
+ CloudDbHomes can be imported using the `id`, e.g.
385
+
386
+ ```sh
387
+ $ pulumi import oci:DatabaseManagement/cloudDbHome:CloudDbHome test_cloud_db_home "id"
388
+ ```
389
+
390
+ :param str resource_name: The name of the resource.
391
+ :param CloudDbHomeArgs args: The arguments to use to populate this resource's properties.
392
+ :param pulumi.ResourceOptions opts: Options for the resource.
393
+ """
394
+ ...
395
+ def __init__(__self__, resource_name: str, *args, **kwargs):
396
+ resource_args, opts = _utilities.get_resource_args_opts(CloudDbHomeArgs, pulumi.ResourceOptions, *args, **kwargs)
397
+ if resource_args is not None:
398
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
399
+ else:
400
+ __self__._internal_init(resource_name, *args, **kwargs)
401
+
402
+ def _internal_init(__self__,
403
+ resource_name: str,
404
+ opts: Optional[pulumi.ResourceOptions] = None,
405
+ cloud_db_home_id: Optional[pulumi.Input[_builtins.str]] = None,
406
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
407
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
408
+ __props__=None):
409
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
410
+ if not isinstance(opts, pulumi.ResourceOptions):
411
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
412
+ if opts.id is None:
413
+ if __props__ is not None:
414
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
415
+ __props__ = CloudDbHomeArgs.__new__(CloudDbHomeArgs)
416
+
417
+ if cloud_db_home_id is None and not opts.urn:
418
+ raise TypeError("Missing required property 'cloud_db_home_id'")
419
+ __props__.__dict__["cloud_db_home_id"] = cloud_db_home_id
420
+ __props__.__dict__["defined_tags"] = defined_tags
421
+ __props__.__dict__["freeform_tags"] = freeform_tags
422
+ __props__.__dict__["additional_details"] = None
423
+ __props__.__dict__["cloud_db_system_id"] = None
424
+ __props__.__dict__["compartment_id"] = None
425
+ __props__.__dict__["component_name"] = None
426
+ __props__.__dict__["dbaas_id"] = None
427
+ __props__.__dict__["display_name"] = None
428
+ __props__.__dict__["home_directory"] = None
429
+ __props__.__dict__["lifecycle_details"] = None
430
+ __props__.__dict__["state"] = None
431
+ __props__.__dict__["system_tags"] = None
432
+ __props__.__dict__["time_created"] = None
433
+ __props__.__dict__["time_updated"] = None
434
+ super(CloudDbHome, __self__).__init__(
435
+ 'oci:DatabaseManagement/cloudDbHome:CloudDbHome',
436
+ resource_name,
437
+ __props__,
438
+ opts)
439
+
440
+ @staticmethod
441
+ def get(resource_name: str,
442
+ id: pulumi.Input[str],
443
+ opts: Optional[pulumi.ResourceOptions] = None,
444
+ additional_details: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
445
+ cloud_db_home_id: Optional[pulumi.Input[_builtins.str]] = None,
446
+ cloud_db_system_id: Optional[pulumi.Input[_builtins.str]] = None,
447
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
448
+ component_name: Optional[pulumi.Input[_builtins.str]] = None,
449
+ dbaas_id: Optional[pulumi.Input[_builtins.str]] = None,
450
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
451
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
452
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
453
+ home_directory: Optional[pulumi.Input[_builtins.str]] = None,
454
+ lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
455
+ state: Optional[pulumi.Input[_builtins.str]] = None,
456
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
457
+ time_created: Optional[pulumi.Input[_builtins.str]] = None,
458
+ time_updated: Optional[pulumi.Input[_builtins.str]] = None) -> 'CloudDbHome':
459
+ """
460
+ Get an existing CloudDbHome resource's state with the given name, id, and optional extra
461
+ properties used to qualify the lookup.
462
+
463
+ :param str resource_name: The unique name of the resulting resource.
464
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
465
+ :param pulumi.ResourceOptions opts: Options for the resource.
466
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] additional_details: The additional details of the DB home defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
467
+ :param pulumi.Input[_builtins.str] cloud_db_home_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database home.
468
+ :param pulumi.Input[_builtins.str] cloud_db_system_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the DB home is a part of.
469
+ :param pulumi.Input[_builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
470
+ :param pulumi.Input[_builtins.str] component_name: The name of the cloud DB home.
471
+ :param pulumi.Input[_builtins.str] dbaas_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB home in DBaas service.
472
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
473
+ :param pulumi.Input[_builtins.str] display_name: The user-friendly name for the cloud DB home. The name does not have to be unique.
474
+ :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"}`
475
+
476
+
477
+ ** IMPORTANT **
478
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
479
+ :param pulumi.Input[_builtins.str] home_directory: The location of the DB home.
480
+ :param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state.
481
+ :param pulumi.Input[_builtins.str] state: The current lifecycle state of the cloud DB home.
482
+ :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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
483
+ :param pulumi.Input[_builtins.str] time_created: The date and time the cloud DB home was created.
484
+ :param pulumi.Input[_builtins.str] time_updated: The date and time the cloud DB home was last updated.
485
+ """
486
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
487
+
488
+ __props__ = _CloudDbHomeState.__new__(_CloudDbHomeState)
489
+
490
+ __props__.__dict__["additional_details"] = additional_details
491
+ __props__.__dict__["cloud_db_home_id"] = cloud_db_home_id
492
+ __props__.__dict__["cloud_db_system_id"] = cloud_db_system_id
493
+ __props__.__dict__["compartment_id"] = compartment_id
494
+ __props__.__dict__["component_name"] = component_name
495
+ __props__.__dict__["dbaas_id"] = dbaas_id
496
+ __props__.__dict__["defined_tags"] = defined_tags
497
+ __props__.__dict__["display_name"] = display_name
498
+ __props__.__dict__["freeform_tags"] = freeform_tags
499
+ __props__.__dict__["home_directory"] = home_directory
500
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
501
+ __props__.__dict__["state"] = state
502
+ __props__.__dict__["system_tags"] = system_tags
503
+ __props__.__dict__["time_created"] = time_created
504
+ __props__.__dict__["time_updated"] = time_updated
505
+ return CloudDbHome(resource_name, opts=opts, __props__=__props__)
506
+
507
+ @_builtins.property
508
+ @pulumi.getter(name="additionalDetails")
509
+ def additional_details(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
510
+ """
511
+ The additional details of the DB home defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
512
+ """
513
+ return pulumi.get(self, "additional_details")
514
+
515
+ @_builtins.property
516
+ @pulumi.getter(name="cloudDbHomeId")
517
+ def cloud_db_home_id(self) -> pulumi.Output[_builtins.str]:
518
+ """
519
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud database home.
520
+ """
521
+ return pulumi.get(self, "cloud_db_home_id")
522
+
523
+ @_builtins.property
524
+ @pulumi.getter(name="cloudDbSystemId")
525
+ def cloud_db_system_id(self) -> pulumi.Output[_builtins.str]:
526
+ """
527
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the DB home is a part of.
528
+ """
529
+ return pulumi.get(self, "cloud_db_system_id")
530
+
531
+ @_builtins.property
532
+ @pulumi.getter(name="compartmentId")
533
+ def compartment_id(self) -> pulumi.Output[_builtins.str]:
534
+ """
535
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
536
+ """
537
+ return pulumi.get(self, "compartment_id")
538
+
539
+ @_builtins.property
540
+ @pulumi.getter(name="componentName")
541
+ def component_name(self) -> pulumi.Output[_builtins.str]:
542
+ """
543
+ The name of the cloud DB home.
544
+ """
545
+ return pulumi.get(self, "component_name")
546
+
547
+ @_builtins.property
548
+ @pulumi.getter(name="dbaasId")
549
+ def dbaas_id(self) -> pulumi.Output[_builtins.str]:
550
+ """
551
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB home in DBaas service.
552
+ """
553
+ return pulumi.get(self, "dbaas_id")
554
+
555
+ @_builtins.property
556
+ @pulumi.getter(name="definedTags")
557
+ def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
558
+ """
559
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
560
+ """
561
+ return pulumi.get(self, "defined_tags")
562
+
563
+ @_builtins.property
564
+ @pulumi.getter(name="displayName")
565
+ def display_name(self) -> pulumi.Output[_builtins.str]:
566
+ """
567
+ The user-friendly name for the cloud DB home. The name does not have to be unique.
568
+ """
569
+ return pulumi.get(self, "display_name")
570
+
571
+ @_builtins.property
572
+ @pulumi.getter(name="freeformTags")
573
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
574
+ """
575
+ (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"}`
576
+
577
+
578
+ ** IMPORTANT **
579
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
580
+ """
581
+ return pulumi.get(self, "freeform_tags")
582
+
583
+ @_builtins.property
584
+ @pulumi.getter(name="homeDirectory")
585
+ def home_directory(self) -> pulumi.Output[_builtins.str]:
586
+ """
587
+ The location of the DB home.
588
+ """
589
+ return pulumi.get(self, "home_directory")
590
+
591
+ @_builtins.property
592
+ @pulumi.getter(name="lifecycleDetails")
593
+ def lifecycle_details(self) -> pulumi.Output[_builtins.str]:
594
+ """
595
+ Additional information about the current lifecycle state.
596
+ """
597
+ return pulumi.get(self, "lifecycle_details")
598
+
599
+ @_builtins.property
600
+ @pulumi.getter
601
+ def state(self) -> pulumi.Output[_builtins.str]:
602
+ """
603
+ The current lifecycle state of the cloud DB home.
604
+ """
605
+ return pulumi.get(self, "state")
606
+
607
+ @_builtins.property
608
+ @pulumi.getter(name="systemTags")
609
+ def system_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
610
+ """
611
+ 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
612
+ """
613
+ return pulumi.get(self, "system_tags")
614
+
615
+ @_builtins.property
616
+ @pulumi.getter(name="timeCreated")
617
+ def time_created(self) -> pulumi.Output[_builtins.str]:
618
+ """
619
+ The date and time the cloud DB home was created.
620
+ """
621
+ return pulumi.get(self, "time_created")
622
+
623
+ @_builtins.property
624
+ @pulumi.getter(name="timeUpdated")
625
+ def time_updated(self) -> pulumi.Output[_builtins.str]:
626
+ """
627
+ The date and time the cloud DB home was last updated.
628
+ """
629
+ return pulumi.get(self, "time_updated")
630
+