pulumi-oci 3.4.0a1755714728__py3-none-any.whl → 3.5.0a1756190604__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.5.0a1756190604.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0a1756190604.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.5.0a1756190604.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0a1756190604.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1043 @@
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__ = ['CloudListenerArgs', 'CloudListener']
20
+
21
+ @pulumi.input_type
22
+ class CloudListenerArgs:
23
+ def __init__(__self__, *,
24
+ cloud_listener_id: pulumi.Input[_builtins.str],
25
+ cloud_connector_id: Optional[pulumi.Input[_builtins.str]] = None,
26
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
27
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
28
+ """
29
+ The set of arguments for constructing a CloudListener resource.
30
+ :param pulumi.Input[_builtins.str] cloud_listener_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud listener.
31
+ :param pulumi.Input[_builtins.str] cloud_connector_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
32
+ :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"}`
33
+ :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"}`
34
+
35
+
36
+ ** IMPORTANT **
37
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
38
+ """
39
+ pulumi.set(__self__, "cloud_listener_id", cloud_listener_id)
40
+ if cloud_connector_id is not None:
41
+ pulumi.set(__self__, "cloud_connector_id", cloud_connector_id)
42
+ if defined_tags is not None:
43
+ pulumi.set(__self__, "defined_tags", defined_tags)
44
+ if freeform_tags is not None:
45
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
46
+
47
+ @_builtins.property
48
+ @pulumi.getter(name="cloudListenerId")
49
+ def cloud_listener_id(self) -> pulumi.Input[_builtins.str]:
50
+ """
51
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud listener.
52
+ """
53
+ return pulumi.get(self, "cloud_listener_id")
54
+
55
+ @cloud_listener_id.setter
56
+ def cloud_listener_id(self, value: pulumi.Input[_builtins.str]):
57
+ pulumi.set(self, "cloud_listener_id", value)
58
+
59
+ @_builtins.property
60
+ @pulumi.getter(name="cloudConnectorId")
61
+ def cloud_connector_id(self) -> Optional[pulumi.Input[_builtins.str]]:
62
+ """
63
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
64
+ """
65
+ return pulumi.get(self, "cloud_connector_id")
66
+
67
+ @cloud_connector_id.setter
68
+ def cloud_connector_id(self, value: Optional[pulumi.Input[_builtins.str]]):
69
+ pulumi.set(self, "cloud_connector_id", value)
70
+
71
+ @_builtins.property
72
+ @pulumi.getter(name="definedTags")
73
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
74
+ """
75
+ (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"}`
76
+ """
77
+ return pulumi.get(self, "defined_tags")
78
+
79
+ @defined_tags.setter
80
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
81
+ pulumi.set(self, "defined_tags", value)
82
+
83
+ @_builtins.property
84
+ @pulumi.getter(name="freeformTags")
85
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
86
+ """
87
+ (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"}`
88
+
89
+
90
+ ** IMPORTANT **
91
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
92
+ """
93
+ return pulumi.get(self, "freeform_tags")
94
+
95
+ @freeform_tags.setter
96
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
97
+ pulumi.set(self, "freeform_tags", value)
98
+
99
+
100
+ @pulumi.input_type
101
+ class _CloudListenerState:
102
+ def __init__(__self__, *,
103
+ additional_details: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
104
+ adr_home_directory: Optional[pulumi.Input[_builtins.str]] = None,
105
+ cloud_connector_id: Optional[pulumi.Input[_builtins.str]] = None,
106
+ cloud_db_home_id: Optional[pulumi.Input[_builtins.str]] = None,
107
+ cloud_db_node_id: Optional[pulumi.Input[_builtins.str]] = None,
108
+ cloud_db_system_id: Optional[pulumi.Input[_builtins.str]] = None,
109
+ cloud_listener_id: Optional[pulumi.Input[_builtins.str]] = None,
110
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
111
+ component_name: Optional[pulumi.Input[_builtins.str]] = None,
112
+ dbaas_id: Optional[pulumi.Input[_builtins.str]] = None,
113
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
114
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
115
+ endpoints: Optional[pulumi.Input[Sequence[pulumi.Input['CloudListenerEndpointArgs']]]] = None,
116
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
117
+ host_name: Optional[pulumi.Input[_builtins.str]] = None,
118
+ lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
119
+ listener_alias: Optional[pulumi.Input[_builtins.str]] = None,
120
+ listener_ora_location: Optional[pulumi.Input[_builtins.str]] = None,
121
+ listener_type: Optional[pulumi.Input[_builtins.str]] = None,
122
+ log_directory: Optional[pulumi.Input[_builtins.str]] = None,
123
+ oracle_home: Optional[pulumi.Input[_builtins.str]] = None,
124
+ serviced_asms: Optional[pulumi.Input[Sequence[pulumi.Input['CloudListenerServicedAsmArgs']]]] = None,
125
+ serviced_databases: Optional[pulumi.Input[Sequence[pulumi.Input['CloudListenerServicedDatabaseArgs']]]] = None,
126
+ state: Optional[pulumi.Input[_builtins.str]] = None,
127
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
128
+ time_created: Optional[pulumi.Input[_builtins.str]] = None,
129
+ time_updated: Optional[pulumi.Input[_builtins.str]] = None,
130
+ trace_directory: Optional[pulumi.Input[_builtins.str]] = None,
131
+ version: Optional[pulumi.Input[_builtins.str]] = None):
132
+ """
133
+ Input properties used for looking up and filtering CloudListener resources.
134
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] additional_details: The additional details of the cloud listener defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
135
+ :param pulumi.Input[_builtins.str] adr_home_directory: The directory that stores tracing and logging incidents when Automatic Diagnostic Repository (ADR) is enabled.
136
+ :param pulumi.Input[_builtins.str] cloud_connector_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
137
+ :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 DB home.
138
+ :param pulumi.Input[_builtins.str] cloud_db_node_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB node.
139
+ :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 listener is a part of.
140
+ :param pulumi.Input[_builtins.str] cloud_listener_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud listener.
141
+ :param pulumi.Input[_builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the cloud database resides.
142
+ :param pulumi.Input[_builtins.str] component_name: The name of the cloud listener.
143
+ :param pulumi.Input[_builtins.str] dbaas_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the existing Dbaas Oracle Cloud Infrastructure resource matching the discovered DB system component.
144
+ :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"}`
145
+ :param pulumi.Input[_builtins.str] display_name: The user-friendly name for the database. The name does not have to be unique.
146
+ :param pulumi.Input[Sequence[pulumi.Input['CloudListenerEndpointArgs']]] endpoints: The list of protocol addresses the listener is configured to listen on.
147
+ :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"}`
148
+
149
+
150
+ ** IMPORTANT **
151
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
152
+ :param pulumi.Input[_builtins.str] host_name: The name of the host on which the cloud listener is running.
153
+ :param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state.
154
+ :param pulumi.Input[_builtins.str] listener_alias: The listener alias.
155
+ :param pulumi.Input[_builtins.str] listener_ora_location: The location of the listener configuration file listener.ora.
156
+ :param pulumi.Input[_builtins.str] listener_type: The type of listener.
157
+ :param pulumi.Input[_builtins.str] log_directory: The destination directory of the listener log file.
158
+ :param pulumi.Input[_builtins.str] oracle_home: The Oracle home location of the listener.
159
+ :param pulumi.Input[Sequence[pulumi.Input['CloudListenerServicedAsmArgs']]] serviced_asms: The list of ASMs that are serviced by the listener.
160
+ :param pulumi.Input[Sequence[pulumi.Input['CloudListenerServicedDatabaseArgs']]] serviced_databases: The list of databases that are serviced by the listener.
161
+ :param pulumi.Input[_builtins.str] state: The current lifecycle state of the cloud listener.
162
+ :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"}`
163
+ :param pulumi.Input[_builtins.str] time_created: The date and time the cloud listener was created.
164
+ :param pulumi.Input[_builtins.str] time_updated: The date and time the cloud listener was last updated.
165
+ :param pulumi.Input[_builtins.str] trace_directory: The destination directory of the listener trace file.
166
+ :param pulumi.Input[_builtins.str] version: The listener version.
167
+ """
168
+ if additional_details is not None:
169
+ pulumi.set(__self__, "additional_details", additional_details)
170
+ if adr_home_directory is not None:
171
+ pulumi.set(__self__, "adr_home_directory", adr_home_directory)
172
+ if cloud_connector_id is not None:
173
+ pulumi.set(__self__, "cloud_connector_id", cloud_connector_id)
174
+ if cloud_db_home_id is not None:
175
+ pulumi.set(__self__, "cloud_db_home_id", cloud_db_home_id)
176
+ if cloud_db_node_id is not None:
177
+ pulumi.set(__self__, "cloud_db_node_id", cloud_db_node_id)
178
+ if cloud_db_system_id is not None:
179
+ pulumi.set(__self__, "cloud_db_system_id", cloud_db_system_id)
180
+ if cloud_listener_id is not None:
181
+ pulumi.set(__self__, "cloud_listener_id", cloud_listener_id)
182
+ if compartment_id is not None:
183
+ pulumi.set(__self__, "compartment_id", compartment_id)
184
+ if component_name is not None:
185
+ pulumi.set(__self__, "component_name", component_name)
186
+ if dbaas_id is not None:
187
+ pulumi.set(__self__, "dbaas_id", dbaas_id)
188
+ if defined_tags is not None:
189
+ pulumi.set(__self__, "defined_tags", defined_tags)
190
+ if display_name is not None:
191
+ pulumi.set(__self__, "display_name", display_name)
192
+ if endpoints is not None:
193
+ pulumi.set(__self__, "endpoints", endpoints)
194
+ if freeform_tags is not None:
195
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
196
+ if host_name is not None:
197
+ pulumi.set(__self__, "host_name", host_name)
198
+ if lifecycle_details is not None:
199
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
200
+ if listener_alias is not None:
201
+ pulumi.set(__self__, "listener_alias", listener_alias)
202
+ if listener_ora_location is not None:
203
+ pulumi.set(__self__, "listener_ora_location", listener_ora_location)
204
+ if listener_type is not None:
205
+ pulumi.set(__self__, "listener_type", listener_type)
206
+ if log_directory is not None:
207
+ pulumi.set(__self__, "log_directory", log_directory)
208
+ if oracle_home is not None:
209
+ pulumi.set(__self__, "oracle_home", oracle_home)
210
+ if serviced_asms is not None:
211
+ pulumi.set(__self__, "serviced_asms", serviced_asms)
212
+ if serviced_databases is not None:
213
+ pulumi.set(__self__, "serviced_databases", serviced_databases)
214
+ if state is not None:
215
+ pulumi.set(__self__, "state", state)
216
+ if system_tags is not None:
217
+ pulumi.set(__self__, "system_tags", system_tags)
218
+ if time_created is not None:
219
+ pulumi.set(__self__, "time_created", time_created)
220
+ if time_updated is not None:
221
+ pulumi.set(__self__, "time_updated", time_updated)
222
+ if trace_directory is not None:
223
+ pulumi.set(__self__, "trace_directory", trace_directory)
224
+ if version is not None:
225
+ pulumi.set(__self__, "version", version)
226
+
227
+ @_builtins.property
228
+ @pulumi.getter(name="additionalDetails")
229
+ def additional_details(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
230
+ """
231
+ The additional details of the cloud listener defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
232
+ """
233
+ return pulumi.get(self, "additional_details")
234
+
235
+ @additional_details.setter
236
+ def additional_details(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
237
+ pulumi.set(self, "additional_details", value)
238
+
239
+ @_builtins.property
240
+ @pulumi.getter(name="adrHomeDirectory")
241
+ def adr_home_directory(self) -> Optional[pulumi.Input[_builtins.str]]:
242
+ """
243
+ The directory that stores tracing and logging incidents when Automatic Diagnostic Repository (ADR) is enabled.
244
+ """
245
+ return pulumi.get(self, "adr_home_directory")
246
+
247
+ @adr_home_directory.setter
248
+ def adr_home_directory(self, value: Optional[pulumi.Input[_builtins.str]]):
249
+ pulumi.set(self, "adr_home_directory", value)
250
+
251
+ @_builtins.property
252
+ @pulumi.getter(name="cloudConnectorId")
253
+ def cloud_connector_id(self) -> Optional[pulumi.Input[_builtins.str]]:
254
+ """
255
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
256
+ """
257
+ return pulumi.get(self, "cloud_connector_id")
258
+
259
+ @cloud_connector_id.setter
260
+ def cloud_connector_id(self, value: Optional[pulumi.Input[_builtins.str]]):
261
+ pulumi.set(self, "cloud_connector_id", value)
262
+
263
+ @_builtins.property
264
+ @pulumi.getter(name="cloudDbHomeId")
265
+ def cloud_db_home_id(self) -> Optional[pulumi.Input[_builtins.str]]:
266
+ """
267
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB home.
268
+ """
269
+ return pulumi.get(self, "cloud_db_home_id")
270
+
271
+ @cloud_db_home_id.setter
272
+ def cloud_db_home_id(self, value: Optional[pulumi.Input[_builtins.str]]):
273
+ pulumi.set(self, "cloud_db_home_id", value)
274
+
275
+ @_builtins.property
276
+ @pulumi.getter(name="cloudDbNodeId")
277
+ def cloud_db_node_id(self) -> Optional[pulumi.Input[_builtins.str]]:
278
+ """
279
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB node.
280
+ """
281
+ return pulumi.get(self, "cloud_db_node_id")
282
+
283
+ @cloud_db_node_id.setter
284
+ def cloud_db_node_id(self, value: Optional[pulumi.Input[_builtins.str]]):
285
+ pulumi.set(self, "cloud_db_node_id", value)
286
+
287
+ @_builtins.property
288
+ @pulumi.getter(name="cloudDbSystemId")
289
+ def cloud_db_system_id(self) -> Optional[pulumi.Input[_builtins.str]]:
290
+ """
291
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the listener is a part of.
292
+ """
293
+ return pulumi.get(self, "cloud_db_system_id")
294
+
295
+ @cloud_db_system_id.setter
296
+ def cloud_db_system_id(self, value: Optional[pulumi.Input[_builtins.str]]):
297
+ pulumi.set(self, "cloud_db_system_id", value)
298
+
299
+ @_builtins.property
300
+ @pulumi.getter(name="cloudListenerId")
301
+ def cloud_listener_id(self) -> Optional[pulumi.Input[_builtins.str]]:
302
+ """
303
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud listener.
304
+ """
305
+ return pulumi.get(self, "cloud_listener_id")
306
+
307
+ @cloud_listener_id.setter
308
+ def cloud_listener_id(self, value: Optional[pulumi.Input[_builtins.str]]):
309
+ pulumi.set(self, "cloud_listener_id", value)
310
+
311
+ @_builtins.property
312
+ @pulumi.getter(name="compartmentId")
313
+ def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
314
+ """
315
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the cloud database resides.
316
+ """
317
+ return pulumi.get(self, "compartment_id")
318
+
319
+ @compartment_id.setter
320
+ def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
321
+ pulumi.set(self, "compartment_id", value)
322
+
323
+ @_builtins.property
324
+ @pulumi.getter(name="componentName")
325
+ def component_name(self) -> Optional[pulumi.Input[_builtins.str]]:
326
+ """
327
+ The name of the cloud listener.
328
+ """
329
+ return pulumi.get(self, "component_name")
330
+
331
+ @component_name.setter
332
+ def component_name(self, value: Optional[pulumi.Input[_builtins.str]]):
333
+ pulumi.set(self, "component_name", value)
334
+
335
+ @_builtins.property
336
+ @pulumi.getter(name="dbaasId")
337
+ def dbaas_id(self) -> Optional[pulumi.Input[_builtins.str]]:
338
+ """
339
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the existing Dbaas Oracle Cloud Infrastructure resource matching the discovered DB system component.
340
+ """
341
+ return pulumi.get(self, "dbaas_id")
342
+
343
+ @dbaas_id.setter
344
+ def dbaas_id(self, value: Optional[pulumi.Input[_builtins.str]]):
345
+ pulumi.set(self, "dbaas_id", value)
346
+
347
+ @_builtins.property
348
+ @pulumi.getter(name="definedTags")
349
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
350
+ """
351
+ (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"}`
352
+ """
353
+ return pulumi.get(self, "defined_tags")
354
+
355
+ @defined_tags.setter
356
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
357
+ pulumi.set(self, "defined_tags", value)
358
+
359
+ @_builtins.property
360
+ @pulumi.getter(name="displayName")
361
+ def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
362
+ """
363
+ The user-friendly name for the database. The name does not have to be unique.
364
+ """
365
+ return pulumi.get(self, "display_name")
366
+
367
+ @display_name.setter
368
+ def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
369
+ pulumi.set(self, "display_name", value)
370
+
371
+ @_builtins.property
372
+ @pulumi.getter
373
+ def endpoints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudListenerEndpointArgs']]]]:
374
+ """
375
+ The list of protocol addresses the listener is configured to listen on.
376
+ """
377
+ return pulumi.get(self, "endpoints")
378
+
379
+ @endpoints.setter
380
+ def endpoints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudListenerEndpointArgs']]]]):
381
+ pulumi.set(self, "endpoints", value)
382
+
383
+ @_builtins.property
384
+ @pulumi.getter(name="freeformTags")
385
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
386
+ """
387
+ (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"}`
388
+
389
+
390
+ ** IMPORTANT **
391
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
392
+ """
393
+ return pulumi.get(self, "freeform_tags")
394
+
395
+ @freeform_tags.setter
396
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
397
+ pulumi.set(self, "freeform_tags", value)
398
+
399
+ @_builtins.property
400
+ @pulumi.getter(name="hostName")
401
+ def host_name(self) -> Optional[pulumi.Input[_builtins.str]]:
402
+ """
403
+ The name of the host on which the cloud listener is running.
404
+ """
405
+ return pulumi.get(self, "host_name")
406
+
407
+ @host_name.setter
408
+ def host_name(self, value: Optional[pulumi.Input[_builtins.str]]):
409
+ pulumi.set(self, "host_name", value)
410
+
411
+ @_builtins.property
412
+ @pulumi.getter(name="lifecycleDetails")
413
+ def lifecycle_details(self) -> Optional[pulumi.Input[_builtins.str]]:
414
+ """
415
+ Additional information about the current lifecycle state.
416
+ """
417
+ return pulumi.get(self, "lifecycle_details")
418
+
419
+ @lifecycle_details.setter
420
+ def lifecycle_details(self, value: Optional[pulumi.Input[_builtins.str]]):
421
+ pulumi.set(self, "lifecycle_details", value)
422
+
423
+ @_builtins.property
424
+ @pulumi.getter(name="listenerAlias")
425
+ def listener_alias(self) -> Optional[pulumi.Input[_builtins.str]]:
426
+ """
427
+ The listener alias.
428
+ """
429
+ return pulumi.get(self, "listener_alias")
430
+
431
+ @listener_alias.setter
432
+ def listener_alias(self, value: Optional[pulumi.Input[_builtins.str]]):
433
+ pulumi.set(self, "listener_alias", value)
434
+
435
+ @_builtins.property
436
+ @pulumi.getter(name="listenerOraLocation")
437
+ def listener_ora_location(self) -> Optional[pulumi.Input[_builtins.str]]:
438
+ """
439
+ The location of the listener configuration file listener.ora.
440
+ """
441
+ return pulumi.get(self, "listener_ora_location")
442
+
443
+ @listener_ora_location.setter
444
+ def listener_ora_location(self, value: Optional[pulumi.Input[_builtins.str]]):
445
+ pulumi.set(self, "listener_ora_location", value)
446
+
447
+ @_builtins.property
448
+ @pulumi.getter(name="listenerType")
449
+ def listener_type(self) -> Optional[pulumi.Input[_builtins.str]]:
450
+ """
451
+ The type of listener.
452
+ """
453
+ return pulumi.get(self, "listener_type")
454
+
455
+ @listener_type.setter
456
+ def listener_type(self, value: Optional[pulumi.Input[_builtins.str]]):
457
+ pulumi.set(self, "listener_type", value)
458
+
459
+ @_builtins.property
460
+ @pulumi.getter(name="logDirectory")
461
+ def log_directory(self) -> Optional[pulumi.Input[_builtins.str]]:
462
+ """
463
+ The destination directory of the listener log file.
464
+ """
465
+ return pulumi.get(self, "log_directory")
466
+
467
+ @log_directory.setter
468
+ def log_directory(self, value: Optional[pulumi.Input[_builtins.str]]):
469
+ pulumi.set(self, "log_directory", value)
470
+
471
+ @_builtins.property
472
+ @pulumi.getter(name="oracleHome")
473
+ def oracle_home(self) -> Optional[pulumi.Input[_builtins.str]]:
474
+ """
475
+ The Oracle home location of the listener.
476
+ """
477
+ return pulumi.get(self, "oracle_home")
478
+
479
+ @oracle_home.setter
480
+ def oracle_home(self, value: Optional[pulumi.Input[_builtins.str]]):
481
+ pulumi.set(self, "oracle_home", value)
482
+
483
+ @_builtins.property
484
+ @pulumi.getter(name="servicedAsms")
485
+ def serviced_asms(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudListenerServicedAsmArgs']]]]:
486
+ """
487
+ The list of ASMs that are serviced by the listener.
488
+ """
489
+ return pulumi.get(self, "serviced_asms")
490
+
491
+ @serviced_asms.setter
492
+ def serviced_asms(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudListenerServicedAsmArgs']]]]):
493
+ pulumi.set(self, "serviced_asms", value)
494
+
495
+ @_builtins.property
496
+ @pulumi.getter(name="servicedDatabases")
497
+ def serviced_databases(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudListenerServicedDatabaseArgs']]]]:
498
+ """
499
+ The list of databases that are serviced by the listener.
500
+ """
501
+ return pulumi.get(self, "serviced_databases")
502
+
503
+ @serviced_databases.setter
504
+ def serviced_databases(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudListenerServicedDatabaseArgs']]]]):
505
+ pulumi.set(self, "serviced_databases", value)
506
+
507
+ @_builtins.property
508
+ @pulumi.getter
509
+ def state(self) -> Optional[pulumi.Input[_builtins.str]]:
510
+ """
511
+ The current lifecycle state of the cloud listener.
512
+ """
513
+ return pulumi.get(self, "state")
514
+
515
+ @state.setter
516
+ def state(self, value: Optional[pulumi.Input[_builtins.str]]):
517
+ pulumi.set(self, "state", value)
518
+
519
+ @_builtins.property
520
+ @pulumi.getter(name="systemTags")
521
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
522
+ """
523
+ 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"}`
524
+ """
525
+ return pulumi.get(self, "system_tags")
526
+
527
+ @system_tags.setter
528
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
529
+ pulumi.set(self, "system_tags", value)
530
+
531
+ @_builtins.property
532
+ @pulumi.getter(name="timeCreated")
533
+ def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
534
+ """
535
+ The date and time the cloud listener was created.
536
+ """
537
+ return pulumi.get(self, "time_created")
538
+
539
+ @time_created.setter
540
+ def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
541
+ pulumi.set(self, "time_created", value)
542
+
543
+ @_builtins.property
544
+ @pulumi.getter(name="timeUpdated")
545
+ def time_updated(self) -> Optional[pulumi.Input[_builtins.str]]:
546
+ """
547
+ The date and time the cloud listener was last updated.
548
+ """
549
+ return pulumi.get(self, "time_updated")
550
+
551
+ @time_updated.setter
552
+ def time_updated(self, value: Optional[pulumi.Input[_builtins.str]]):
553
+ pulumi.set(self, "time_updated", value)
554
+
555
+ @_builtins.property
556
+ @pulumi.getter(name="traceDirectory")
557
+ def trace_directory(self) -> Optional[pulumi.Input[_builtins.str]]:
558
+ """
559
+ The destination directory of the listener trace file.
560
+ """
561
+ return pulumi.get(self, "trace_directory")
562
+
563
+ @trace_directory.setter
564
+ def trace_directory(self, value: Optional[pulumi.Input[_builtins.str]]):
565
+ pulumi.set(self, "trace_directory", value)
566
+
567
+ @_builtins.property
568
+ @pulumi.getter
569
+ def version(self) -> Optional[pulumi.Input[_builtins.str]]:
570
+ """
571
+ The listener version.
572
+ """
573
+ return pulumi.get(self, "version")
574
+
575
+ @version.setter
576
+ def version(self, value: Optional[pulumi.Input[_builtins.str]]):
577
+ pulumi.set(self, "version", value)
578
+
579
+
580
+ @pulumi.type_token("oci:DatabaseManagement/cloudListener:CloudListener")
581
+ class CloudListener(pulumi.CustomResource):
582
+ @overload
583
+ def __init__(__self__,
584
+ resource_name: str,
585
+ opts: Optional[pulumi.ResourceOptions] = None,
586
+ cloud_connector_id: Optional[pulumi.Input[_builtins.str]] = None,
587
+ cloud_listener_id: Optional[pulumi.Input[_builtins.str]] = None,
588
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
589
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
590
+ __props__=None):
591
+ """
592
+ This resource provides the Cloud Listener resource in Oracle Cloud Infrastructure Database Management service.
593
+
594
+ Updates the cloud listener specified by `cloudListenerId`.
595
+
596
+ ## Import
597
+
598
+ CloudListeners can be imported using the `id`, e.g.
599
+
600
+ ```sh
601
+ $ pulumi import oci:DatabaseManagement/cloudListener:CloudListener test_cloud_listener "id"
602
+ ```
603
+
604
+ :param str resource_name: The name of the resource.
605
+ :param pulumi.ResourceOptions opts: Options for the resource.
606
+ :param pulumi.Input[_builtins.str] cloud_connector_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
607
+ :param pulumi.Input[_builtins.str] cloud_listener_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud listener.
608
+ :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"}`
609
+ :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"}`
610
+
611
+
612
+ ** IMPORTANT **
613
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
614
+ """
615
+ ...
616
+ @overload
617
+ def __init__(__self__,
618
+ resource_name: str,
619
+ args: CloudListenerArgs,
620
+ opts: Optional[pulumi.ResourceOptions] = None):
621
+ """
622
+ This resource provides the Cloud Listener resource in Oracle Cloud Infrastructure Database Management service.
623
+
624
+ Updates the cloud listener specified by `cloudListenerId`.
625
+
626
+ ## Import
627
+
628
+ CloudListeners can be imported using the `id`, e.g.
629
+
630
+ ```sh
631
+ $ pulumi import oci:DatabaseManagement/cloudListener:CloudListener test_cloud_listener "id"
632
+ ```
633
+
634
+ :param str resource_name: The name of the resource.
635
+ :param CloudListenerArgs args: The arguments to use to populate this resource's properties.
636
+ :param pulumi.ResourceOptions opts: Options for the resource.
637
+ """
638
+ ...
639
+ def __init__(__self__, resource_name: str, *args, **kwargs):
640
+ resource_args, opts = _utilities.get_resource_args_opts(CloudListenerArgs, pulumi.ResourceOptions, *args, **kwargs)
641
+ if resource_args is not None:
642
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
643
+ else:
644
+ __self__._internal_init(resource_name, *args, **kwargs)
645
+
646
+ def _internal_init(__self__,
647
+ resource_name: str,
648
+ opts: Optional[pulumi.ResourceOptions] = None,
649
+ cloud_connector_id: Optional[pulumi.Input[_builtins.str]] = None,
650
+ cloud_listener_id: Optional[pulumi.Input[_builtins.str]] = None,
651
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
652
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
653
+ __props__=None):
654
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
655
+ if not isinstance(opts, pulumi.ResourceOptions):
656
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
657
+ if opts.id is None:
658
+ if __props__ is not None:
659
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
660
+ __props__ = CloudListenerArgs.__new__(CloudListenerArgs)
661
+
662
+ __props__.__dict__["cloud_connector_id"] = cloud_connector_id
663
+ if cloud_listener_id is None and not opts.urn:
664
+ raise TypeError("Missing required property 'cloud_listener_id'")
665
+ __props__.__dict__["cloud_listener_id"] = cloud_listener_id
666
+ __props__.__dict__["defined_tags"] = defined_tags
667
+ __props__.__dict__["freeform_tags"] = freeform_tags
668
+ __props__.__dict__["additional_details"] = None
669
+ __props__.__dict__["adr_home_directory"] = None
670
+ __props__.__dict__["cloud_db_home_id"] = None
671
+ __props__.__dict__["cloud_db_node_id"] = None
672
+ __props__.__dict__["cloud_db_system_id"] = None
673
+ __props__.__dict__["compartment_id"] = None
674
+ __props__.__dict__["component_name"] = None
675
+ __props__.__dict__["dbaas_id"] = None
676
+ __props__.__dict__["display_name"] = None
677
+ __props__.__dict__["endpoints"] = None
678
+ __props__.__dict__["host_name"] = None
679
+ __props__.__dict__["lifecycle_details"] = None
680
+ __props__.__dict__["listener_alias"] = None
681
+ __props__.__dict__["listener_ora_location"] = None
682
+ __props__.__dict__["listener_type"] = None
683
+ __props__.__dict__["log_directory"] = None
684
+ __props__.__dict__["oracle_home"] = None
685
+ __props__.__dict__["serviced_asms"] = None
686
+ __props__.__dict__["serviced_databases"] = None
687
+ __props__.__dict__["state"] = None
688
+ __props__.__dict__["system_tags"] = None
689
+ __props__.__dict__["time_created"] = None
690
+ __props__.__dict__["time_updated"] = None
691
+ __props__.__dict__["trace_directory"] = None
692
+ __props__.__dict__["version"] = None
693
+ super(CloudListener, __self__).__init__(
694
+ 'oci:DatabaseManagement/cloudListener:CloudListener',
695
+ resource_name,
696
+ __props__,
697
+ opts)
698
+
699
+ @staticmethod
700
+ def get(resource_name: str,
701
+ id: pulumi.Input[str],
702
+ opts: Optional[pulumi.ResourceOptions] = None,
703
+ additional_details: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
704
+ adr_home_directory: Optional[pulumi.Input[_builtins.str]] = None,
705
+ cloud_connector_id: Optional[pulumi.Input[_builtins.str]] = None,
706
+ cloud_db_home_id: Optional[pulumi.Input[_builtins.str]] = None,
707
+ cloud_db_node_id: Optional[pulumi.Input[_builtins.str]] = None,
708
+ cloud_db_system_id: Optional[pulumi.Input[_builtins.str]] = None,
709
+ cloud_listener_id: Optional[pulumi.Input[_builtins.str]] = None,
710
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
711
+ component_name: Optional[pulumi.Input[_builtins.str]] = None,
712
+ dbaas_id: Optional[pulumi.Input[_builtins.str]] = None,
713
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
714
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
715
+ endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudListenerEndpointArgs', 'CloudListenerEndpointArgsDict']]]]] = None,
716
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
717
+ host_name: Optional[pulumi.Input[_builtins.str]] = None,
718
+ lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
719
+ listener_alias: Optional[pulumi.Input[_builtins.str]] = None,
720
+ listener_ora_location: Optional[pulumi.Input[_builtins.str]] = None,
721
+ listener_type: Optional[pulumi.Input[_builtins.str]] = None,
722
+ log_directory: Optional[pulumi.Input[_builtins.str]] = None,
723
+ oracle_home: Optional[pulumi.Input[_builtins.str]] = None,
724
+ serviced_asms: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudListenerServicedAsmArgs', 'CloudListenerServicedAsmArgsDict']]]]] = None,
725
+ serviced_databases: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudListenerServicedDatabaseArgs', 'CloudListenerServicedDatabaseArgsDict']]]]] = None,
726
+ state: Optional[pulumi.Input[_builtins.str]] = None,
727
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
728
+ time_created: Optional[pulumi.Input[_builtins.str]] = None,
729
+ time_updated: Optional[pulumi.Input[_builtins.str]] = None,
730
+ trace_directory: Optional[pulumi.Input[_builtins.str]] = None,
731
+ version: Optional[pulumi.Input[_builtins.str]] = None) -> 'CloudListener':
732
+ """
733
+ Get an existing CloudListener resource's state with the given name, id, and optional extra
734
+ properties used to qualify the lookup.
735
+
736
+ :param str resource_name: The unique name of the resulting resource.
737
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
738
+ :param pulumi.ResourceOptions opts: Options for the resource.
739
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] additional_details: The additional details of the cloud listener defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
740
+ :param pulumi.Input[_builtins.str] adr_home_directory: The directory that stores tracing and logging incidents when Automatic Diagnostic Repository (ADR) is enabled.
741
+ :param pulumi.Input[_builtins.str] cloud_connector_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
742
+ :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 DB home.
743
+ :param pulumi.Input[_builtins.str] cloud_db_node_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB node.
744
+ :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 listener is a part of.
745
+ :param pulumi.Input[_builtins.str] cloud_listener_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud listener.
746
+ :param pulumi.Input[_builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the cloud database resides.
747
+ :param pulumi.Input[_builtins.str] component_name: The name of the cloud listener.
748
+ :param pulumi.Input[_builtins.str] dbaas_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the existing Dbaas Oracle Cloud Infrastructure resource matching the discovered DB system component.
749
+ :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"}`
750
+ :param pulumi.Input[_builtins.str] display_name: The user-friendly name for the database. The name does not have to be unique.
751
+ :param pulumi.Input[Sequence[pulumi.Input[Union['CloudListenerEndpointArgs', 'CloudListenerEndpointArgsDict']]]] endpoints: The list of protocol addresses the listener is configured to listen on.
752
+ :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"}`
753
+
754
+
755
+ ** IMPORTANT **
756
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
757
+ :param pulumi.Input[_builtins.str] host_name: The name of the host on which the cloud listener is running.
758
+ :param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state.
759
+ :param pulumi.Input[_builtins.str] listener_alias: The listener alias.
760
+ :param pulumi.Input[_builtins.str] listener_ora_location: The location of the listener configuration file listener.ora.
761
+ :param pulumi.Input[_builtins.str] listener_type: The type of listener.
762
+ :param pulumi.Input[_builtins.str] log_directory: The destination directory of the listener log file.
763
+ :param pulumi.Input[_builtins.str] oracle_home: The Oracle home location of the listener.
764
+ :param pulumi.Input[Sequence[pulumi.Input[Union['CloudListenerServicedAsmArgs', 'CloudListenerServicedAsmArgsDict']]]] serviced_asms: The list of ASMs that are serviced by the listener.
765
+ :param pulumi.Input[Sequence[pulumi.Input[Union['CloudListenerServicedDatabaseArgs', 'CloudListenerServicedDatabaseArgsDict']]]] serviced_databases: The list of databases that are serviced by the listener.
766
+ :param pulumi.Input[_builtins.str] state: The current lifecycle state of the cloud listener.
767
+ :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"}`
768
+ :param pulumi.Input[_builtins.str] time_created: The date and time the cloud listener was created.
769
+ :param pulumi.Input[_builtins.str] time_updated: The date and time the cloud listener was last updated.
770
+ :param pulumi.Input[_builtins.str] trace_directory: The destination directory of the listener trace file.
771
+ :param pulumi.Input[_builtins.str] version: The listener version.
772
+ """
773
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
774
+
775
+ __props__ = _CloudListenerState.__new__(_CloudListenerState)
776
+
777
+ __props__.__dict__["additional_details"] = additional_details
778
+ __props__.__dict__["adr_home_directory"] = adr_home_directory
779
+ __props__.__dict__["cloud_connector_id"] = cloud_connector_id
780
+ __props__.__dict__["cloud_db_home_id"] = cloud_db_home_id
781
+ __props__.__dict__["cloud_db_node_id"] = cloud_db_node_id
782
+ __props__.__dict__["cloud_db_system_id"] = cloud_db_system_id
783
+ __props__.__dict__["cloud_listener_id"] = cloud_listener_id
784
+ __props__.__dict__["compartment_id"] = compartment_id
785
+ __props__.__dict__["component_name"] = component_name
786
+ __props__.__dict__["dbaas_id"] = dbaas_id
787
+ __props__.__dict__["defined_tags"] = defined_tags
788
+ __props__.__dict__["display_name"] = display_name
789
+ __props__.__dict__["endpoints"] = endpoints
790
+ __props__.__dict__["freeform_tags"] = freeform_tags
791
+ __props__.__dict__["host_name"] = host_name
792
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
793
+ __props__.__dict__["listener_alias"] = listener_alias
794
+ __props__.__dict__["listener_ora_location"] = listener_ora_location
795
+ __props__.__dict__["listener_type"] = listener_type
796
+ __props__.__dict__["log_directory"] = log_directory
797
+ __props__.__dict__["oracle_home"] = oracle_home
798
+ __props__.__dict__["serviced_asms"] = serviced_asms
799
+ __props__.__dict__["serviced_databases"] = serviced_databases
800
+ __props__.__dict__["state"] = state
801
+ __props__.__dict__["system_tags"] = system_tags
802
+ __props__.__dict__["time_created"] = time_created
803
+ __props__.__dict__["time_updated"] = time_updated
804
+ __props__.__dict__["trace_directory"] = trace_directory
805
+ __props__.__dict__["version"] = version
806
+ return CloudListener(resource_name, opts=opts, __props__=__props__)
807
+
808
+ @_builtins.property
809
+ @pulumi.getter(name="additionalDetails")
810
+ def additional_details(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
811
+ """
812
+ The additional details of the cloud listener defined in `{"key": "value"}` format. Example: `{"bar-key": "value"}`
813
+ """
814
+ return pulumi.get(self, "additional_details")
815
+
816
+ @_builtins.property
817
+ @pulumi.getter(name="adrHomeDirectory")
818
+ def adr_home_directory(self) -> pulumi.Output[_builtins.str]:
819
+ """
820
+ The directory that stores tracing and logging incidents when Automatic Diagnostic Repository (ADR) is enabled.
821
+ """
822
+ return pulumi.get(self, "adr_home_directory")
823
+
824
+ @_builtins.property
825
+ @pulumi.getter(name="cloudConnectorId")
826
+ def cloud_connector_id(self) -> pulumi.Output[_builtins.str]:
827
+ """
828
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector.
829
+ """
830
+ return pulumi.get(self, "cloud_connector_id")
831
+
832
+ @_builtins.property
833
+ @pulumi.getter(name="cloudDbHomeId")
834
+ def cloud_db_home_id(self) -> pulumi.Output[_builtins.str]:
835
+ """
836
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB home.
837
+ """
838
+ return pulumi.get(self, "cloud_db_home_id")
839
+
840
+ @_builtins.property
841
+ @pulumi.getter(name="cloudDbNodeId")
842
+ def cloud_db_node_id(self) -> pulumi.Output[_builtins.str]:
843
+ """
844
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB node.
845
+ """
846
+ return pulumi.get(self, "cloud_db_node_id")
847
+
848
+ @_builtins.property
849
+ @pulumi.getter(name="cloudDbSystemId")
850
+ def cloud_db_system_id(self) -> pulumi.Output[_builtins.str]:
851
+ """
852
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the listener is a part of.
853
+ """
854
+ return pulumi.get(self, "cloud_db_system_id")
855
+
856
+ @_builtins.property
857
+ @pulumi.getter(name="cloudListenerId")
858
+ def cloud_listener_id(self) -> pulumi.Output[_builtins.str]:
859
+ """
860
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud listener.
861
+ """
862
+ return pulumi.get(self, "cloud_listener_id")
863
+
864
+ @_builtins.property
865
+ @pulumi.getter(name="compartmentId")
866
+ def compartment_id(self) -> pulumi.Output[_builtins.str]:
867
+ """
868
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the cloud database resides.
869
+ """
870
+ return pulumi.get(self, "compartment_id")
871
+
872
+ @_builtins.property
873
+ @pulumi.getter(name="componentName")
874
+ def component_name(self) -> pulumi.Output[_builtins.str]:
875
+ """
876
+ The name of the cloud listener.
877
+ """
878
+ return pulumi.get(self, "component_name")
879
+
880
+ @_builtins.property
881
+ @pulumi.getter(name="dbaasId")
882
+ def dbaas_id(self) -> pulumi.Output[_builtins.str]:
883
+ """
884
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the existing Dbaas Oracle Cloud Infrastructure resource matching the discovered DB system component.
885
+ """
886
+ return pulumi.get(self, "dbaas_id")
887
+
888
+ @_builtins.property
889
+ @pulumi.getter(name="definedTags")
890
+ def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
891
+ """
892
+ (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"}`
893
+ """
894
+ return pulumi.get(self, "defined_tags")
895
+
896
+ @_builtins.property
897
+ @pulumi.getter(name="displayName")
898
+ def display_name(self) -> pulumi.Output[_builtins.str]:
899
+ """
900
+ The user-friendly name for the database. The name does not have to be unique.
901
+ """
902
+ return pulumi.get(self, "display_name")
903
+
904
+ @_builtins.property
905
+ @pulumi.getter
906
+ def endpoints(self) -> pulumi.Output[Sequence['outputs.CloudListenerEndpoint']]:
907
+ """
908
+ The list of protocol addresses the listener is configured to listen on.
909
+ """
910
+ return pulumi.get(self, "endpoints")
911
+
912
+ @_builtins.property
913
+ @pulumi.getter(name="freeformTags")
914
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
915
+ """
916
+ (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"}`
917
+
918
+
919
+ ** IMPORTANT **
920
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
921
+ """
922
+ return pulumi.get(self, "freeform_tags")
923
+
924
+ @_builtins.property
925
+ @pulumi.getter(name="hostName")
926
+ def host_name(self) -> pulumi.Output[_builtins.str]:
927
+ """
928
+ The name of the host on which the cloud listener is running.
929
+ """
930
+ return pulumi.get(self, "host_name")
931
+
932
+ @_builtins.property
933
+ @pulumi.getter(name="lifecycleDetails")
934
+ def lifecycle_details(self) -> pulumi.Output[_builtins.str]:
935
+ """
936
+ Additional information about the current lifecycle state.
937
+ """
938
+ return pulumi.get(self, "lifecycle_details")
939
+
940
+ @_builtins.property
941
+ @pulumi.getter(name="listenerAlias")
942
+ def listener_alias(self) -> pulumi.Output[_builtins.str]:
943
+ """
944
+ The listener alias.
945
+ """
946
+ return pulumi.get(self, "listener_alias")
947
+
948
+ @_builtins.property
949
+ @pulumi.getter(name="listenerOraLocation")
950
+ def listener_ora_location(self) -> pulumi.Output[_builtins.str]:
951
+ """
952
+ The location of the listener configuration file listener.ora.
953
+ """
954
+ return pulumi.get(self, "listener_ora_location")
955
+
956
+ @_builtins.property
957
+ @pulumi.getter(name="listenerType")
958
+ def listener_type(self) -> pulumi.Output[_builtins.str]:
959
+ """
960
+ The type of listener.
961
+ """
962
+ return pulumi.get(self, "listener_type")
963
+
964
+ @_builtins.property
965
+ @pulumi.getter(name="logDirectory")
966
+ def log_directory(self) -> pulumi.Output[_builtins.str]:
967
+ """
968
+ The destination directory of the listener log file.
969
+ """
970
+ return pulumi.get(self, "log_directory")
971
+
972
+ @_builtins.property
973
+ @pulumi.getter(name="oracleHome")
974
+ def oracle_home(self) -> pulumi.Output[_builtins.str]:
975
+ """
976
+ The Oracle home location of the listener.
977
+ """
978
+ return pulumi.get(self, "oracle_home")
979
+
980
+ @_builtins.property
981
+ @pulumi.getter(name="servicedAsms")
982
+ def serviced_asms(self) -> pulumi.Output[Sequence['outputs.CloudListenerServicedAsm']]:
983
+ """
984
+ The list of ASMs that are serviced by the listener.
985
+ """
986
+ return pulumi.get(self, "serviced_asms")
987
+
988
+ @_builtins.property
989
+ @pulumi.getter(name="servicedDatabases")
990
+ def serviced_databases(self) -> pulumi.Output[Sequence['outputs.CloudListenerServicedDatabase']]:
991
+ """
992
+ The list of databases that are serviced by the listener.
993
+ """
994
+ return pulumi.get(self, "serviced_databases")
995
+
996
+ @_builtins.property
997
+ @pulumi.getter
998
+ def state(self) -> pulumi.Output[_builtins.str]:
999
+ """
1000
+ The current lifecycle state of the cloud listener.
1001
+ """
1002
+ return pulumi.get(self, "state")
1003
+
1004
+ @_builtins.property
1005
+ @pulumi.getter(name="systemTags")
1006
+ def system_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
1007
+ """
1008
+ 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"}`
1009
+ """
1010
+ return pulumi.get(self, "system_tags")
1011
+
1012
+ @_builtins.property
1013
+ @pulumi.getter(name="timeCreated")
1014
+ def time_created(self) -> pulumi.Output[_builtins.str]:
1015
+ """
1016
+ The date and time the cloud listener was created.
1017
+ """
1018
+ return pulumi.get(self, "time_created")
1019
+
1020
+ @_builtins.property
1021
+ @pulumi.getter(name="timeUpdated")
1022
+ def time_updated(self) -> pulumi.Output[_builtins.str]:
1023
+ """
1024
+ The date and time the cloud listener was last updated.
1025
+ """
1026
+ return pulumi.get(self, "time_updated")
1027
+
1028
+ @_builtins.property
1029
+ @pulumi.getter(name="traceDirectory")
1030
+ def trace_directory(self) -> pulumi.Output[_builtins.str]:
1031
+ """
1032
+ The destination directory of the listener trace file.
1033
+ """
1034
+ return pulumi.get(self, "trace_directory")
1035
+
1036
+ @_builtins.property
1037
+ @pulumi.getter
1038
+ def version(self) -> pulumi.Output[_builtins.str]:
1039
+ """
1040
+ The listener version.
1041
+ """
1042
+ return pulumi.get(self, "version")
1043
+