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,754 @@
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__ = ['CloudDbSystemDiscoveryArgs', 'CloudDbSystemDiscovery']
20
+
21
+ @pulumi.input_type
22
+ class CloudDbSystemDiscoveryArgs:
23
+ def __init__(__self__, *,
24
+ agent_id: pulumi.Input[_builtins.str],
25
+ compartment_id: pulumi.Input[_builtins.str],
26
+ dbaas_parent_infrastructure_id: pulumi.Input[_builtins.str],
27
+ deployment_type: pulumi.Input[_builtins.str],
28
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
29
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
30
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
31
+ patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input['CloudDbSystemDiscoveryPatchOperationArgs']]]] = None):
32
+ """
33
+ The set of arguments for constructing a CloudDbSystemDiscovery resource.
34
+ :param pulumi.Input[_builtins.str] agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent used for the cloud DB system discovery.
35
+ :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 DB system resides.
36
+ :param pulumi.Input[_builtins.str] dbaas_parent_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
37
+ :param pulumi.Input[_builtins.str] deployment_type: The deployment type of cloud dbsystem.
38
+ :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"}`
39
+ :param pulumi.Input[_builtins.str] display_name: (Updatable) The user-friendly name for the DB system. The name does not have to be unique.
40
+ :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"}`
41
+ :param pulumi.Input[Sequence[pulumi.Input['CloudDbSystemDiscoveryPatchOperationArgs']]] patch_operations: (Updatable)
42
+ """
43
+ pulumi.set(__self__, "agent_id", agent_id)
44
+ pulumi.set(__self__, "compartment_id", compartment_id)
45
+ pulumi.set(__self__, "dbaas_parent_infrastructure_id", dbaas_parent_infrastructure_id)
46
+ pulumi.set(__self__, "deployment_type", deployment_type)
47
+ if defined_tags is not None:
48
+ pulumi.set(__self__, "defined_tags", defined_tags)
49
+ if display_name is not None:
50
+ pulumi.set(__self__, "display_name", display_name)
51
+ if freeform_tags is not None:
52
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
53
+ if patch_operations is not None:
54
+ pulumi.set(__self__, "patch_operations", patch_operations)
55
+
56
+ @_builtins.property
57
+ @pulumi.getter(name="agentId")
58
+ def agent_id(self) -> pulumi.Input[_builtins.str]:
59
+ """
60
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent used for the cloud DB system discovery.
61
+ """
62
+ return pulumi.get(self, "agent_id")
63
+
64
+ @agent_id.setter
65
+ def agent_id(self, value: pulumi.Input[_builtins.str]):
66
+ pulumi.set(self, "agent_id", value)
67
+
68
+ @_builtins.property
69
+ @pulumi.getter(name="compartmentId")
70
+ def compartment_id(self) -> pulumi.Input[_builtins.str]:
71
+ """
72
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the cloud DB system resides.
73
+ """
74
+ return pulumi.get(self, "compartment_id")
75
+
76
+ @compartment_id.setter
77
+ def compartment_id(self, value: pulumi.Input[_builtins.str]):
78
+ pulumi.set(self, "compartment_id", value)
79
+
80
+ @_builtins.property
81
+ @pulumi.getter(name="dbaasParentInfrastructureId")
82
+ def dbaas_parent_infrastructure_id(self) -> pulumi.Input[_builtins.str]:
83
+ """
84
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
85
+ """
86
+ return pulumi.get(self, "dbaas_parent_infrastructure_id")
87
+
88
+ @dbaas_parent_infrastructure_id.setter
89
+ def dbaas_parent_infrastructure_id(self, value: pulumi.Input[_builtins.str]):
90
+ pulumi.set(self, "dbaas_parent_infrastructure_id", value)
91
+
92
+ @_builtins.property
93
+ @pulumi.getter(name="deploymentType")
94
+ def deployment_type(self) -> pulumi.Input[_builtins.str]:
95
+ """
96
+ The deployment type of cloud dbsystem.
97
+ """
98
+ return pulumi.get(self, "deployment_type")
99
+
100
+ @deployment_type.setter
101
+ def deployment_type(self, value: pulumi.Input[_builtins.str]):
102
+ pulumi.set(self, "deployment_type", value)
103
+
104
+ @_builtins.property
105
+ @pulumi.getter(name="definedTags")
106
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
107
+ """
108
+ (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
+ """
110
+ return pulumi.get(self, "defined_tags")
111
+
112
+ @defined_tags.setter
113
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
114
+ pulumi.set(self, "defined_tags", value)
115
+
116
+ @_builtins.property
117
+ @pulumi.getter(name="displayName")
118
+ def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
119
+ """
120
+ (Updatable) The user-friendly name for the DB system. The name does not have to be unique.
121
+ """
122
+ return pulumi.get(self, "display_name")
123
+
124
+ @display_name.setter
125
+ def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
126
+ pulumi.set(self, "display_name", value)
127
+
128
+ @_builtins.property
129
+ @pulumi.getter(name="freeformTags")
130
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
131
+ """
132
+ (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"}`
133
+ """
134
+ return pulumi.get(self, "freeform_tags")
135
+
136
+ @freeform_tags.setter
137
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
138
+ pulumi.set(self, "freeform_tags", value)
139
+
140
+ @_builtins.property
141
+ @pulumi.getter(name="patchOperations")
142
+ def patch_operations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudDbSystemDiscoveryPatchOperationArgs']]]]:
143
+ """
144
+ (Updatable)
145
+ """
146
+ return pulumi.get(self, "patch_operations")
147
+
148
+ @patch_operations.setter
149
+ def patch_operations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudDbSystemDiscoveryPatchOperationArgs']]]]):
150
+ pulumi.set(self, "patch_operations", value)
151
+
152
+
153
+ @pulumi.input_type
154
+ class _CloudDbSystemDiscoveryState:
155
+ def __init__(__self__, *,
156
+ agent_id: Optional[pulumi.Input[_builtins.str]] = None,
157
+ cloud_db_system_discovery_id: Optional[pulumi.Input[_builtins.str]] = None,
158
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
159
+ dbaas_parent_infrastructure_id: Optional[pulumi.Input[_builtins.str]] = None,
160
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
161
+ deployment_type: Optional[pulumi.Input[_builtins.str]] = None,
162
+ discovered_components: Optional[pulumi.Input[Sequence[pulumi.Input['CloudDbSystemDiscoveryDiscoveredComponentArgs']]]] = None,
163
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
164
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
165
+ grid_home: Optional[pulumi.Input[_builtins.str]] = None,
166
+ lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
167
+ patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input['CloudDbSystemDiscoveryPatchOperationArgs']]]] = None,
168
+ resource_id: Optional[pulumi.Input[_builtins.str]] = None,
169
+ state: Optional[pulumi.Input[_builtins.str]] = None,
170
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
171
+ time_created: Optional[pulumi.Input[_builtins.str]] = None,
172
+ time_updated: Optional[pulumi.Input[_builtins.str]] = None):
173
+ """
174
+ Input properties used for looking up and filtering CloudDbSystemDiscovery resources.
175
+ :param pulumi.Input[_builtins.str] agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent used for the cloud DB system discovery.
176
+ :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 DB system resides.
177
+ :param pulumi.Input[_builtins.str] dbaas_parent_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
178
+ :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"}`
179
+ :param pulumi.Input[_builtins.str] deployment_type: The deployment type of cloud dbsystem.
180
+ :param pulumi.Input[Sequence[pulumi.Input['CloudDbSystemDiscoveryDiscoveredComponentArgs']]] discovered_components: The list of DB system components that were found in the DB system discovery.
181
+ :param pulumi.Input[_builtins.str] display_name: (Updatable) The user-friendly name for the DB system. The name does not have to be unique.
182
+ :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"}`
183
+ :param pulumi.Input[_builtins.str] grid_home: The directory in which Oracle Grid Infrastructure is installed.
184
+ :param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state.
185
+ :param pulumi.Input[Sequence[pulumi.Input['CloudDbSystemDiscoveryPatchOperationArgs']]] patch_operations: (Updatable)
186
+ :param pulumi.Input[_builtins.str] resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
187
+ :param pulumi.Input[_builtins.str] state: The current lifecycle state of the cloud DB system discovery resource.
188
+ :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"}`
189
+ :param pulumi.Input[_builtins.str] time_created: The date and time the cloud DB system discovery was created.
190
+ :param pulumi.Input[_builtins.str] time_updated: The date and time the cloud DB system discovery was last updated.
191
+ """
192
+ if agent_id is not None:
193
+ pulumi.set(__self__, "agent_id", agent_id)
194
+ if cloud_db_system_discovery_id is not None:
195
+ pulumi.set(__self__, "cloud_db_system_discovery_id", cloud_db_system_discovery_id)
196
+ if compartment_id is not None:
197
+ pulumi.set(__self__, "compartment_id", compartment_id)
198
+ if dbaas_parent_infrastructure_id is not None:
199
+ pulumi.set(__self__, "dbaas_parent_infrastructure_id", dbaas_parent_infrastructure_id)
200
+ if defined_tags is not None:
201
+ pulumi.set(__self__, "defined_tags", defined_tags)
202
+ if deployment_type is not None:
203
+ pulumi.set(__self__, "deployment_type", deployment_type)
204
+ if discovered_components is not None:
205
+ pulumi.set(__self__, "discovered_components", discovered_components)
206
+ if display_name is not None:
207
+ pulumi.set(__self__, "display_name", display_name)
208
+ if freeform_tags is not None:
209
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
210
+ if grid_home is not None:
211
+ pulumi.set(__self__, "grid_home", grid_home)
212
+ if lifecycle_details is not None:
213
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
214
+ if patch_operations is not None:
215
+ pulumi.set(__self__, "patch_operations", patch_operations)
216
+ if resource_id is not None:
217
+ pulumi.set(__self__, "resource_id", resource_id)
218
+ if state is not None:
219
+ pulumi.set(__self__, "state", state)
220
+ if system_tags is not None:
221
+ pulumi.set(__self__, "system_tags", system_tags)
222
+ if time_created is not None:
223
+ pulumi.set(__self__, "time_created", time_created)
224
+ if time_updated is not None:
225
+ pulumi.set(__self__, "time_updated", time_updated)
226
+
227
+ @_builtins.property
228
+ @pulumi.getter(name="agentId")
229
+ def agent_id(self) -> Optional[pulumi.Input[_builtins.str]]:
230
+ """
231
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent used for the cloud DB system discovery.
232
+ """
233
+ return pulumi.get(self, "agent_id")
234
+
235
+ @agent_id.setter
236
+ def agent_id(self, value: Optional[pulumi.Input[_builtins.str]]):
237
+ pulumi.set(self, "agent_id", value)
238
+
239
+ @_builtins.property
240
+ @pulumi.getter(name="cloudDbSystemDiscoveryId")
241
+ def cloud_db_system_discovery_id(self) -> Optional[pulumi.Input[_builtins.str]]:
242
+ return pulumi.get(self, "cloud_db_system_discovery_id")
243
+
244
+ @cloud_db_system_discovery_id.setter
245
+ def cloud_db_system_discovery_id(self, value: Optional[pulumi.Input[_builtins.str]]):
246
+ pulumi.set(self, "cloud_db_system_discovery_id", value)
247
+
248
+ @_builtins.property
249
+ @pulumi.getter(name="compartmentId")
250
+ def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
251
+ """
252
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the cloud DB system resides.
253
+ """
254
+ return pulumi.get(self, "compartment_id")
255
+
256
+ @compartment_id.setter
257
+ def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
258
+ pulumi.set(self, "compartment_id", value)
259
+
260
+ @_builtins.property
261
+ @pulumi.getter(name="dbaasParentInfrastructureId")
262
+ def dbaas_parent_infrastructure_id(self) -> Optional[pulumi.Input[_builtins.str]]:
263
+ """
264
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
265
+ """
266
+ return pulumi.get(self, "dbaas_parent_infrastructure_id")
267
+
268
+ @dbaas_parent_infrastructure_id.setter
269
+ def dbaas_parent_infrastructure_id(self, value: Optional[pulumi.Input[_builtins.str]]):
270
+ pulumi.set(self, "dbaas_parent_infrastructure_id", value)
271
+
272
+ @_builtins.property
273
+ @pulumi.getter(name="definedTags")
274
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
275
+ """
276
+ (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"}`
277
+ """
278
+ return pulumi.get(self, "defined_tags")
279
+
280
+ @defined_tags.setter
281
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
282
+ pulumi.set(self, "defined_tags", value)
283
+
284
+ @_builtins.property
285
+ @pulumi.getter(name="deploymentType")
286
+ def deployment_type(self) -> Optional[pulumi.Input[_builtins.str]]:
287
+ """
288
+ The deployment type of cloud dbsystem.
289
+ """
290
+ return pulumi.get(self, "deployment_type")
291
+
292
+ @deployment_type.setter
293
+ def deployment_type(self, value: Optional[pulumi.Input[_builtins.str]]):
294
+ pulumi.set(self, "deployment_type", value)
295
+
296
+ @_builtins.property
297
+ @pulumi.getter(name="discoveredComponents")
298
+ def discovered_components(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudDbSystemDiscoveryDiscoveredComponentArgs']]]]:
299
+ """
300
+ The list of DB system components that were found in the DB system discovery.
301
+ """
302
+ return pulumi.get(self, "discovered_components")
303
+
304
+ @discovered_components.setter
305
+ def discovered_components(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudDbSystemDiscoveryDiscoveredComponentArgs']]]]):
306
+ pulumi.set(self, "discovered_components", value)
307
+
308
+ @_builtins.property
309
+ @pulumi.getter(name="displayName")
310
+ def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
311
+ """
312
+ (Updatable) The user-friendly name for the DB system. The name does not have to be unique.
313
+ """
314
+ return pulumi.get(self, "display_name")
315
+
316
+ @display_name.setter
317
+ def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
318
+ pulumi.set(self, "display_name", value)
319
+
320
+ @_builtins.property
321
+ @pulumi.getter(name="freeformTags")
322
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
323
+ """
324
+ (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"}`
325
+ """
326
+ return pulumi.get(self, "freeform_tags")
327
+
328
+ @freeform_tags.setter
329
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
330
+ pulumi.set(self, "freeform_tags", value)
331
+
332
+ @_builtins.property
333
+ @pulumi.getter(name="gridHome")
334
+ def grid_home(self) -> Optional[pulumi.Input[_builtins.str]]:
335
+ """
336
+ The directory in which Oracle Grid Infrastructure is installed.
337
+ """
338
+ return pulumi.get(self, "grid_home")
339
+
340
+ @grid_home.setter
341
+ def grid_home(self, value: Optional[pulumi.Input[_builtins.str]]):
342
+ pulumi.set(self, "grid_home", value)
343
+
344
+ @_builtins.property
345
+ @pulumi.getter(name="lifecycleDetails")
346
+ def lifecycle_details(self) -> Optional[pulumi.Input[_builtins.str]]:
347
+ """
348
+ Additional information about the current lifecycle state.
349
+ """
350
+ return pulumi.get(self, "lifecycle_details")
351
+
352
+ @lifecycle_details.setter
353
+ def lifecycle_details(self, value: Optional[pulumi.Input[_builtins.str]]):
354
+ pulumi.set(self, "lifecycle_details", value)
355
+
356
+ @_builtins.property
357
+ @pulumi.getter(name="patchOperations")
358
+ def patch_operations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudDbSystemDiscoveryPatchOperationArgs']]]]:
359
+ """
360
+ (Updatable)
361
+ """
362
+ return pulumi.get(self, "patch_operations")
363
+
364
+ @patch_operations.setter
365
+ def patch_operations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudDbSystemDiscoveryPatchOperationArgs']]]]):
366
+ pulumi.set(self, "patch_operations", value)
367
+
368
+ @_builtins.property
369
+ @pulumi.getter(name="resourceId")
370
+ def resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
371
+ """
372
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
373
+ """
374
+ return pulumi.get(self, "resource_id")
375
+
376
+ @resource_id.setter
377
+ def resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
378
+ pulumi.set(self, "resource_id", value)
379
+
380
+ @_builtins.property
381
+ @pulumi.getter
382
+ def state(self) -> Optional[pulumi.Input[_builtins.str]]:
383
+ """
384
+ The current lifecycle state of the cloud DB system discovery resource.
385
+ """
386
+ return pulumi.get(self, "state")
387
+
388
+ @state.setter
389
+ def state(self, value: Optional[pulumi.Input[_builtins.str]]):
390
+ pulumi.set(self, "state", value)
391
+
392
+ @_builtins.property
393
+ @pulumi.getter(name="systemTags")
394
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
395
+ """
396
+ 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"}`
397
+ """
398
+ return pulumi.get(self, "system_tags")
399
+
400
+ @system_tags.setter
401
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
402
+ pulumi.set(self, "system_tags", value)
403
+
404
+ @_builtins.property
405
+ @pulumi.getter(name="timeCreated")
406
+ def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
407
+ """
408
+ The date and time the cloud DB system discovery was created.
409
+ """
410
+ return pulumi.get(self, "time_created")
411
+
412
+ @time_created.setter
413
+ def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
414
+ pulumi.set(self, "time_created", value)
415
+
416
+ @_builtins.property
417
+ @pulumi.getter(name="timeUpdated")
418
+ def time_updated(self) -> Optional[pulumi.Input[_builtins.str]]:
419
+ """
420
+ The date and time the cloud DB system discovery was last updated.
421
+ """
422
+ return pulumi.get(self, "time_updated")
423
+
424
+ @time_updated.setter
425
+ def time_updated(self, value: Optional[pulumi.Input[_builtins.str]]):
426
+ pulumi.set(self, "time_updated", value)
427
+
428
+
429
+ @pulumi.type_token("oci:DatabaseManagement/cloudDbSystemDiscovery:CloudDbSystemDiscovery")
430
+ class CloudDbSystemDiscovery(pulumi.CustomResource):
431
+ @overload
432
+ def __init__(__self__,
433
+ resource_name: str,
434
+ opts: Optional[pulumi.ResourceOptions] = None,
435
+ agent_id: Optional[pulumi.Input[_builtins.str]] = None,
436
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
437
+ dbaas_parent_infrastructure_id: Optional[pulumi.Input[_builtins.str]] = None,
438
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
439
+ deployment_type: Optional[pulumi.Input[_builtins.str]] = None,
440
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
441
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
442
+ patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudDbSystemDiscoveryPatchOperationArgs', 'CloudDbSystemDiscoveryPatchOperationArgsDict']]]]] = None,
443
+ __props__=None):
444
+ """
445
+ This resource provides the Cloud Db System Discovery resource in Oracle Cloud Infrastructure Database Management service.
446
+
447
+ Creates a cloud DB system discovery resource and initiates the discovery process.
448
+
449
+ Patches the cloud DB system discovery specified by `cloudDbSystemDiscoveryId`.
450
+
451
+ ## Import
452
+
453
+ CloudDbSystemDiscoveries can be imported using the `id`, e.g.
454
+
455
+ ```sh
456
+ $ pulumi import oci:DatabaseManagement/cloudDbSystemDiscovery:CloudDbSystemDiscovery test_cloud_db_system_discovery "id"
457
+ ```
458
+
459
+ :param str resource_name: The name of the resource.
460
+ :param pulumi.ResourceOptions opts: Options for the resource.
461
+ :param pulumi.Input[_builtins.str] agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent used for the cloud DB system discovery.
462
+ :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 DB system resides.
463
+ :param pulumi.Input[_builtins.str] dbaas_parent_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
464
+ :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"}`
465
+ :param pulumi.Input[_builtins.str] deployment_type: The deployment type of cloud dbsystem.
466
+ :param pulumi.Input[_builtins.str] display_name: (Updatable) The user-friendly name for the DB system. The name does not have to be unique.
467
+ :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"}`
468
+ :param pulumi.Input[Sequence[pulumi.Input[Union['CloudDbSystemDiscoveryPatchOperationArgs', 'CloudDbSystemDiscoveryPatchOperationArgsDict']]]] patch_operations: (Updatable)
469
+ """
470
+ ...
471
+ @overload
472
+ def __init__(__self__,
473
+ resource_name: str,
474
+ args: CloudDbSystemDiscoveryArgs,
475
+ opts: Optional[pulumi.ResourceOptions] = None):
476
+ """
477
+ This resource provides the Cloud Db System Discovery resource in Oracle Cloud Infrastructure Database Management service.
478
+
479
+ Creates a cloud DB system discovery resource and initiates the discovery process.
480
+
481
+ Patches the cloud DB system discovery specified by `cloudDbSystemDiscoveryId`.
482
+
483
+ ## Import
484
+
485
+ CloudDbSystemDiscoveries can be imported using the `id`, e.g.
486
+
487
+ ```sh
488
+ $ pulumi import oci:DatabaseManagement/cloudDbSystemDiscovery:CloudDbSystemDiscovery test_cloud_db_system_discovery "id"
489
+ ```
490
+
491
+ :param str resource_name: The name of the resource.
492
+ :param CloudDbSystemDiscoveryArgs args: The arguments to use to populate this resource's properties.
493
+ :param pulumi.ResourceOptions opts: Options for the resource.
494
+ """
495
+ ...
496
+ def __init__(__self__, resource_name: str, *args, **kwargs):
497
+ resource_args, opts = _utilities.get_resource_args_opts(CloudDbSystemDiscoveryArgs, pulumi.ResourceOptions, *args, **kwargs)
498
+ if resource_args is not None:
499
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
500
+ else:
501
+ __self__._internal_init(resource_name, *args, **kwargs)
502
+
503
+ def _internal_init(__self__,
504
+ resource_name: str,
505
+ opts: Optional[pulumi.ResourceOptions] = None,
506
+ agent_id: Optional[pulumi.Input[_builtins.str]] = None,
507
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
508
+ dbaas_parent_infrastructure_id: Optional[pulumi.Input[_builtins.str]] = None,
509
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
510
+ deployment_type: Optional[pulumi.Input[_builtins.str]] = None,
511
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
512
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
513
+ patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudDbSystemDiscoveryPatchOperationArgs', 'CloudDbSystemDiscoveryPatchOperationArgsDict']]]]] = None,
514
+ __props__=None):
515
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
516
+ if not isinstance(opts, pulumi.ResourceOptions):
517
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
518
+ if opts.id is None:
519
+ if __props__ is not None:
520
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
521
+ __props__ = CloudDbSystemDiscoveryArgs.__new__(CloudDbSystemDiscoveryArgs)
522
+
523
+ if agent_id is None and not opts.urn:
524
+ raise TypeError("Missing required property 'agent_id'")
525
+ __props__.__dict__["agent_id"] = agent_id
526
+ if compartment_id is None and not opts.urn:
527
+ raise TypeError("Missing required property 'compartment_id'")
528
+ __props__.__dict__["compartment_id"] = compartment_id
529
+ if dbaas_parent_infrastructure_id is None and not opts.urn:
530
+ raise TypeError("Missing required property 'dbaas_parent_infrastructure_id'")
531
+ __props__.__dict__["dbaas_parent_infrastructure_id"] = dbaas_parent_infrastructure_id
532
+ __props__.__dict__["defined_tags"] = defined_tags
533
+ if deployment_type is None and not opts.urn:
534
+ raise TypeError("Missing required property 'deployment_type'")
535
+ __props__.__dict__["deployment_type"] = deployment_type
536
+ __props__.__dict__["display_name"] = display_name
537
+ __props__.__dict__["freeform_tags"] = freeform_tags
538
+ __props__.__dict__["patch_operations"] = patch_operations
539
+ __props__.__dict__["cloud_db_system_discovery_id"] = None
540
+ __props__.__dict__["discovered_components"] = None
541
+ __props__.__dict__["grid_home"] = None
542
+ __props__.__dict__["lifecycle_details"] = None
543
+ __props__.__dict__["resource_id"] = None
544
+ __props__.__dict__["state"] = None
545
+ __props__.__dict__["system_tags"] = None
546
+ __props__.__dict__["time_created"] = None
547
+ __props__.__dict__["time_updated"] = None
548
+ super(CloudDbSystemDiscovery, __self__).__init__(
549
+ 'oci:DatabaseManagement/cloudDbSystemDiscovery:CloudDbSystemDiscovery',
550
+ resource_name,
551
+ __props__,
552
+ opts)
553
+
554
+ @staticmethod
555
+ def get(resource_name: str,
556
+ id: pulumi.Input[str],
557
+ opts: Optional[pulumi.ResourceOptions] = None,
558
+ agent_id: Optional[pulumi.Input[_builtins.str]] = None,
559
+ cloud_db_system_discovery_id: Optional[pulumi.Input[_builtins.str]] = None,
560
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
561
+ dbaas_parent_infrastructure_id: Optional[pulumi.Input[_builtins.str]] = None,
562
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
563
+ deployment_type: Optional[pulumi.Input[_builtins.str]] = None,
564
+ discovered_components: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudDbSystemDiscoveryDiscoveredComponentArgs', 'CloudDbSystemDiscoveryDiscoveredComponentArgsDict']]]]] = None,
565
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
566
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
567
+ grid_home: Optional[pulumi.Input[_builtins.str]] = None,
568
+ lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
569
+ patch_operations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudDbSystemDiscoveryPatchOperationArgs', 'CloudDbSystemDiscoveryPatchOperationArgsDict']]]]] = None,
570
+ resource_id: Optional[pulumi.Input[_builtins.str]] = None,
571
+ state: Optional[pulumi.Input[_builtins.str]] = None,
572
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
573
+ time_created: Optional[pulumi.Input[_builtins.str]] = None,
574
+ time_updated: Optional[pulumi.Input[_builtins.str]] = None) -> 'CloudDbSystemDiscovery':
575
+ """
576
+ Get an existing CloudDbSystemDiscovery resource's state with the given name, id, and optional extra
577
+ properties used to qualify the lookup.
578
+
579
+ :param str resource_name: The unique name of the resulting resource.
580
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
581
+ :param pulumi.ResourceOptions opts: Options for the resource.
582
+ :param pulumi.Input[_builtins.str] agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent used for the cloud DB system discovery.
583
+ :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 DB system resides.
584
+ :param pulumi.Input[_builtins.str] dbaas_parent_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
585
+ :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"}`
586
+ :param pulumi.Input[_builtins.str] deployment_type: The deployment type of cloud dbsystem.
587
+ :param pulumi.Input[Sequence[pulumi.Input[Union['CloudDbSystemDiscoveryDiscoveredComponentArgs', 'CloudDbSystemDiscoveryDiscoveredComponentArgsDict']]]] discovered_components: The list of DB system components that were found in the DB system discovery.
588
+ :param pulumi.Input[_builtins.str] display_name: (Updatable) The user-friendly name for the DB system. The name does not have to be unique.
589
+ :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"}`
590
+ :param pulumi.Input[_builtins.str] grid_home: The directory in which Oracle Grid Infrastructure is installed.
591
+ :param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state.
592
+ :param pulumi.Input[Sequence[pulumi.Input[Union['CloudDbSystemDiscoveryPatchOperationArgs', 'CloudDbSystemDiscoveryPatchOperationArgsDict']]]] patch_operations: (Updatable)
593
+ :param pulumi.Input[_builtins.str] resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
594
+ :param pulumi.Input[_builtins.str] state: The current lifecycle state of the cloud DB system discovery resource.
595
+ :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"}`
596
+ :param pulumi.Input[_builtins.str] time_created: The date and time the cloud DB system discovery was created.
597
+ :param pulumi.Input[_builtins.str] time_updated: The date and time the cloud DB system discovery was last updated.
598
+ """
599
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
600
+
601
+ __props__ = _CloudDbSystemDiscoveryState.__new__(_CloudDbSystemDiscoveryState)
602
+
603
+ __props__.__dict__["agent_id"] = agent_id
604
+ __props__.__dict__["cloud_db_system_discovery_id"] = cloud_db_system_discovery_id
605
+ __props__.__dict__["compartment_id"] = compartment_id
606
+ __props__.__dict__["dbaas_parent_infrastructure_id"] = dbaas_parent_infrastructure_id
607
+ __props__.__dict__["defined_tags"] = defined_tags
608
+ __props__.__dict__["deployment_type"] = deployment_type
609
+ __props__.__dict__["discovered_components"] = discovered_components
610
+ __props__.__dict__["display_name"] = display_name
611
+ __props__.__dict__["freeform_tags"] = freeform_tags
612
+ __props__.__dict__["grid_home"] = grid_home
613
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
614
+ __props__.__dict__["patch_operations"] = patch_operations
615
+ __props__.__dict__["resource_id"] = resource_id
616
+ __props__.__dict__["state"] = state
617
+ __props__.__dict__["system_tags"] = system_tags
618
+ __props__.__dict__["time_created"] = time_created
619
+ __props__.__dict__["time_updated"] = time_updated
620
+ return CloudDbSystemDiscovery(resource_name, opts=opts, __props__=__props__)
621
+
622
+ @_builtins.property
623
+ @pulumi.getter(name="agentId")
624
+ def agent_id(self) -> pulumi.Output[_builtins.str]:
625
+ """
626
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent used for the cloud DB system discovery.
627
+ """
628
+ return pulumi.get(self, "agent_id")
629
+
630
+ @_builtins.property
631
+ @pulumi.getter(name="cloudDbSystemDiscoveryId")
632
+ def cloud_db_system_discovery_id(self) -> pulumi.Output[_builtins.str]:
633
+ return pulumi.get(self, "cloud_db_system_discovery_id")
634
+
635
+ @_builtins.property
636
+ @pulumi.getter(name="compartmentId")
637
+ def compartment_id(self) -> pulumi.Output[_builtins.str]:
638
+ """
639
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the cloud DB system resides.
640
+ """
641
+ return pulumi.get(self, "compartment_id")
642
+
643
+ @_builtins.property
644
+ @pulumi.getter(name="dbaasParentInfrastructureId")
645
+ def dbaas_parent_infrastructure_id(self) -> pulumi.Output[_builtins.str]:
646
+ """
647
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
648
+ """
649
+ return pulumi.get(self, "dbaas_parent_infrastructure_id")
650
+
651
+ @_builtins.property
652
+ @pulumi.getter(name="definedTags")
653
+ def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
654
+ """
655
+ (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"}`
656
+ """
657
+ return pulumi.get(self, "defined_tags")
658
+
659
+ @_builtins.property
660
+ @pulumi.getter(name="deploymentType")
661
+ def deployment_type(self) -> pulumi.Output[_builtins.str]:
662
+ """
663
+ The deployment type of cloud dbsystem.
664
+ """
665
+ return pulumi.get(self, "deployment_type")
666
+
667
+ @_builtins.property
668
+ @pulumi.getter(name="discoveredComponents")
669
+ def discovered_components(self) -> pulumi.Output[Sequence['outputs.CloudDbSystemDiscoveryDiscoveredComponent']]:
670
+ """
671
+ The list of DB system components that were found in the DB system discovery.
672
+ """
673
+ return pulumi.get(self, "discovered_components")
674
+
675
+ @_builtins.property
676
+ @pulumi.getter(name="displayName")
677
+ def display_name(self) -> pulumi.Output[_builtins.str]:
678
+ """
679
+ (Updatable) The user-friendly name for the DB system. The name does not have to be unique.
680
+ """
681
+ return pulumi.get(self, "display_name")
682
+
683
+ @_builtins.property
684
+ @pulumi.getter(name="freeformTags")
685
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
686
+ """
687
+ (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"}`
688
+ """
689
+ return pulumi.get(self, "freeform_tags")
690
+
691
+ @_builtins.property
692
+ @pulumi.getter(name="gridHome")
693
+ def grid_home(self) -> pulumi.Output[_builtins.str]:
694
+ """
695
+ The directory in which Oracle Grid Infrastructure is installed.
696
+ """
697
+ return pulumi.get(self, "grid_home")
698
+
699
+ @_builtins.property
700
+ @pulumi.getter(name="lifecycleDetails")
701
+ def lifecycle_details(self) -> pulumi.Output[_builtins.str]:
702
+ """
703
+ Additional information about the current lifecycle state.
704
+ """
705
+ return pulumi.get(self, "lifecycle_details")
706
+
707
+ @_builtins.property
708
+ @pulumi.getter(name="patchOperations")
709
+ def patch_operations(self) -> pulumi.Output[Optional[Sequence['outputs.CloudDbSystemDiscoveryPatchOperation']]]:
710
+ """
711
+ (Updatable)
712
+ """
713
+ return pulumi.get(self, "patch_operations")
714
+
715
+ @_builtins.property
716
+ @pulumi.getter(name="resourceId")
717
+ def resource_id(self) -> pulumi.Output[_builtins.str]:
718
+ """
719
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
720
+ """
721
+ return pulumi.get(self, "resource_id")
722
+
723
+ @_builtins.property
724
+ @pulumi.getter
725
+ def state(self) -> pulumi.Output[_builtins.str]:
726
+ """
727
+ The current lifecycle state of the cloud DB system discovery resource.
728
+ """
729
+ return pulumi.get(self, "state")
730
+
731
+ @_builtins.property
732
+ @pulumi.getter(name="systemTags")
733
+ def system_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
734
+ """
735
+ 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"}`
736
+ """
737
+ return pulumi.get(self, "system_tags")
738
+
739
+ @_builtins.property
740
+ @pulumi.getter(name="timeCreated")
741
+ def time_created(self) -> pulumi.Output[_builtins.str]:
742
+ """
743
+ The date and time the cloud DB system discovery was created.
744
+ """
745
+ return pulumi.get(self, "time_created")
746
+
747
+ @_builtins.property
748
+ @pulumi.getter(name="timeUpdated")
749
+ def time_updated(self) -> pulumi.Output[_builtins.str]:
750
+ """
751
+ The date and time the cloud DB system discovery was last updated.
752
+ """
753
+ return pulumi.get(self, "time_updated")
754
+