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
@@ -1,3699 +0,0 @@
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
-
18
- __all__ = [
19
- 'DataAssetDataSourceDetails',
20
- 'DataAssetDataSourceDetailsVersionSpecificDetails',
21
- 'DetectAnomalyJobInputDetails',
22
- 'DetectAnomalyJobInputDetailsData',
23
- 'DetectAnomalyJobInputDetailsObjectLocation',
24
- 'DetectAnomalyJobOutputDetails',
25
- 'ModelModelTrainingDetails',
26
- 'ModelModelTrainingResult',
27
- 'ModelModelTrainingResultRowReductionDetail',
28
- 'ModelModelTrainingResultSignalDetail',
29
- 'GetAiPrivateEndpointsAiPrivateEndpointCollectionResult',
30
- 'GetAiPrivateEndpointsAiPrivateEndpointCollectionItemResult',
31
- 'GetAiPrivateEndpointsFilterResult',
32
- 'GetDetectAnomalyJobInputDetailResult',
33
- 'GetDetectAnomalyJobInputDetailDataResult',
34
- 'GetDetectAnomalyJobInputDetailObjectLocationResult',
35
- 'GetDetectAnomalyJobOutputDetailResult',
36
- 'GetDetectAnomalyJobsDetectAnomalyJobCollectionResult',
37
- 'GetDetectAnomalyJobsDetectAnomalyJobCollectionItemResult',
38
- 'GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailResult',
39
- 'GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailDataResult',
40
- 'GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailObjectLocationResult',
41
- 'GetDetectAnomalyJobsDetectAnomalyJobCollectionItemOutputDetailResult',
42
- 'GetDetectAnomalyJobsFilterResult',
43
- 'GetDetectionDataAssetDataSourceDetailResult',
44
- 'GetDetectionDataAssetDataSourceDetailVersionSpecificDetailResult',
45
- 'GetDetectionDataAssetsDataAssetCollectionResult',
46
- 'GetDetectionDataAssetsDataAssetCollectionItemResult',
47
- 'GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailResult',
48
- 'GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailVersionSpecificDetailResult',
49
- 'GetDetectionDataAssetsFilterResult',
50
- 'GetDetectionModelModelTrainingDetailResult',
51
- 'GetDetectionModelModelTrainingResultResult',
52
- 'GetDetectionModelModelTrainingResultRowReductionDetailResult',
53
- 'GetDetectionModelModelTrainingResultSignalDetailResult',
54
- 'GetDetectionModelsFilterResult',
55
- 'GetDetectionModelsModelCollectionResult',
56
- 'GetDetectionModelsModelCollectionItemResult',
57
- 'GetDetectionModelsModelCollectionItemModelTrainingDetailResult',
58
- 'GetDetectionModelsModelCollectionItemModelTrainingResultResult',
59
- 'GetDetectionModelsModelCollectionItemModelTrainingResultRowReductionDetailResult',
60
- 'GetDetectionModelsModelCollectionItemModelTrainingResultSignalDetailResult',
61
- 'GetDetectionProjectsFilterResult',
62
- 'GetDetectionProjectsProjectCollectionResult',
63
- 'GetDetectionProjectsProjectCollectionItemResult',
64
- ]
65
-
66
- @pulumi.output_type
67
- class DataAssetDataSourceDetails(dict):
68
- @staticmethod
69
- def __key_warning(key: str):
70
- suggest = None
71
- if key == "dataSourceType":
72
- suggest = "data_source_type"
73
- elif key == "atpPasswordSecretId":
74
- suggest = "atp_password_secret_id"
75
- elif key == "atpUserName":
76
- suggest = "atp_user_name"
77
- elif key == "cwalletFileSecretId":
78
- suggest = "cwallet_file_secret_id"
79
- elif key == "databaseName":
80
- suggest = "database_name"
81
- elif key == "ewalletFileSecretId":
82
- suggest = "ewallet_file_secret_id"
83
- elif key == "keyStoreFileSecretId":
84
- suggest = "key_store_file_secret_id"
85
- elif key == "measurementName":
86
- suggest = "measurement_name"
87
- elif key == "ojdbcFileSecretId":
88
- suggest = "ojdbc_file_secret_id"
89
- elif key == "passwordSecretId":
90
- suggest = "password_secret_id"
91
- elif key == "tableName":
92
- suggest = "table_name"
93
- elif key == "tnsnamesFileSecretId":
94
- suggest = "tnsnames_file_secret_id"
95
- elif key == "truststoreFileSecretId":
96
- suggest = "truststore_file_secret_id"
97
- elif key == "userName":
98
- suggest = "user_name"
99
- elif key == "versionSpecificDetails":
100
- suggest = "version_specific_details"
101
- elif key == "walletPasswordSecretId":
102
- suggest = "wallet_password_secret_id"
103
-
104
- if suggest:
105
- pulumi.log.warn(f"Key '{key}' not found in DataAssetDataSourceDetails. Access the value via the '{suggest}' property getter instead.")
106
-
107
- def __getitem__(self, key: str) -> Any:
108
- DataAssetDataSourceDetails.__key_warning(key)
109
- return super().__getitem__(key)
110
-
111
- def get(self, key: str, default = None) -> Any:
112
- DataAssetDataSourceDetails.__key_warning(key)
113
- return super().get(key, default)
114
-
115
- def __init__(__self__, *,
116
- data_source_type: _builtins.str,
117
- atp_password_secret_id: Optional[_builtins.str] = None,
118
- atp_user_name: Optional[_builtins.str] = None,
119
- bucket: Optional[_builtins.str] = None,
120
- cwallet_file_secret_id: Optional[_builtins.str] = None,
121
- database_name: Optional[_builtins.str] = None,
122
- ewallet_file_secret_id: Optional[_builtins.str] = None,
123
- key_store_file_secret_id: Optional[_builtins.str] = None,
124
- measurement_name: Optional[_builtins.str] = None,
125
- namespace: Optional[_builtins.str] = None,
126
- object: Optional[_builtins.str] = None,
127
- ojdbc_file_secret_id: Optional[_builtins.str] = None,
128
- password_secret_id: Optional[_builtins.str] = None,
129
- table_name: Optional[_builtins.str] = None,
130
- tnsnames_file_secret_id: Optional[_builtins.str] = None,
131
- truststore_file_secret_id: Optional[_builtins.str] = None,
132
- url: Optional[_builtins.str] = None,
133
- user_name: Optional[_builtins.str] = None,
134
- version_specific_details: Optional['outputs.DataAssetDataSourceDetailsVersionSpecificDetails'] = None,
135
- wallet_password_secret_id: Optional[_builtins.str] = None):
136
- """
137
- :param _builtins.str data_source_type: Data source type where actually data asset is being stored
138
- :param _builtins.str atp_password_secret_id: atp db password Secret Id
139
- :param _builtins.str atp_user_name: atp db user name
140
- :param _builtins.str bucket: Object storage bucket name
141
- :param _builtins.str cwallet_file_secret_id: OCID of the secret containing the containers certificates of ATP wallet
142
- :param _builtins.str database_name: atp database name
143
- :param _builtins.str ewallet_file_secret_id: OCID of the secret containing the PDB'S certificates of ATP wallet
144
- :param _builtins.str key_store_file_secret_id: OCID of the secret containing Keystore.jks file of the ATP wallet
145
- :param _builtins.str measurement_name: Measurement name for influx
146
- :param _builtins.str namespace: Object storage namespace
147
- :param _builtins.str object: File name
148
- :param _builtins.str ojdbc_file_secret_id: OCID of the secret that contains jdbc properties file of ATP wallet
149
- :param _builtins.str password_secret_id: Password Secret Id for the influx connection
150
- :param _builtins.str table_name: atp database table name
151
- :param _builtins.str tnsnames_file_secret_id: OCID of the secret that contains the tnsnames file of ATP wallet
152
- :param _builtins.str truststore_file_secret_id: OCID of the secret containing truststore.jks file of the ATP wallet
153
- :param _builtins.str url: public IP address and port to influx DB
154
- :param _builtins.str user_name: Username for connection to Influx
155
- :param 'DataAssetDataSourceDetailsVersionSpecificDetailsArgs' version_specific_details: Possible data sources
156
- :param _builtins.str wallet_password_secret_id: wallet password Secret ID in String format
157
- """
158
- pulumi.set(__self__, "data_source_type", data_source_type)
159
- if atp_password_secret_id is not None:
160
- pulumi.set(__self__, "atp_password_secret_id", atp_password_secret_id)
161
- if atp_user_name is not None:
162
- pulumi.set(__self__, "atp_user_name", atp_user_name)
163
- if bucket is not None:
164
- pulumi.set(__self__, "bucket", bucket)
165
- if cwallet_file_secret_id is not None:
166
- pulumi.set(__self__, "cwallet_file_secret_id", cwallet_file_secret_id)
167
- if database_name is not None:
168
- pulumi.set(__self__, "database_name", database_name)
169
- if ewallet_file_secret_id is not None:
170
- pulumi.set(__self__, "ewallet_file_secret_id", ewallet_file_secret_id)
171
- if key_store_file_secret_id is not None:
172
- pulumi.set(__self__, "key_store_file_secret_id", key_store_file_secret_id)
173
- if measurement_name is not None:
174
- pulumi.set(__self__, "measurement_name", measurement_name)
175
- if namespace is not None:
176
- pulumi.set(__self__, "namespace", namespace)
177
- if object is not None:
178
- pulumi.set(__self__, "object", object)
179
- if ojdbc_file_secret_id is not None:
180
- pulumi.set(__self__, "ojdbc_file_secret_id", ojdbc_file_secret_id)
181
- if password_secret_id is not None:
182
- pulumi.set(__self__, "password_secret_id", password_secret_id)
183
- if table_name is not None:
184
- pulumi.set(__self__, "table_name", table_name)
185
- if tnsnames_file_secret_id is not None:
186
- pulumi.set(__self__, "tnsnames_file_secret_id", tnsnames_file_secret_id)
187
- if truststore_file_secret_id is not None:
188
- pulumi.set(__self__, "truststore_file_secret_id", truststore_file_secret_id)
189
- if url is not None:
190
- pulumi.set(__self__, "url", url)
191
- if user_name is not None:
192
- pulumi.set(__self__, "user_name", user_name)
193
- if version_specific_details is not None:
194
- pulumi.set(__self__, "version_specific_details", version_specific_details)
195
- if wallet_password_secret_id is not None:
196
- pulumi.set(__self__, "wallet_password_secret_id", wallet_password_secret_id)
197
-
198
- @_builtins.property
199
- @pulumi.getter(name="dataSourceType")
200
- def data_source_type(self) -> _builtins.str:
201
- """
202
- Data source type where actually data asset is being stored
203
- """
204
- return pulumi.get(self, "data_source_type")
205
-
206
- @_builtins.property
207
- @pulumi.getter(name="atpPasswordSecretId")
208
- def atp_password_secret_id(self) -> Optional[_builtins.str]:
209
- """
210
- atp db password Secret Id
211
- """
212
- return pulumi.get(self, "atp_password_secret_id")
213
-
214
- @_builtins.property
215
- @pulumi.getter(name="atpUserName")
216
- def atp_user_name(self) -> Optional[_builtins.str]:
217
- """
218
- atp db user name
219
- """
220
- return pulumi.get(self, "atp_user_name")
221
-
222
- @_builtins.property
223
- @pulumi.getter
224
- def bucket(self) -> Optional[_builtins.str]:
225
- """
226
- Object storage bucket name
227
- """
228
- return pulumi.get(self, "bucket")
229
-
230
- @_builtins.property
231
- @pulumi.getter(name="cwalletFileSecretId")
232
- def cwallet_file_secret_id(self) -> Optional[_builtins.str]:
233
- """
234
- OCID of the secret containing the containers certificates of ATP wallet
235
- """
236
- return pulumi.get(self, "cwallet_file_secret_id")
237
-
238
- @_builtins.property
239
- @pulumi.getter(name="databaseName")
240
- def database_name(self) -> Optional[_builtins.str]:
241
- """
242
- atp database name
243
- """
244
- return pulumi.get(self, "database_name")
245
-
246
- @_builtins.property
247
- @pulumi.getter(name="ewalletFileSecretId")
248
- def ewallet_file_secret_id(self) -> Optional[_builtins.str]:
249
- """
250
- OCID of the secret containing the PDB'S certificates of ATP wallet
251
- """
252
- return pulumi.get(self, "ewallet_file_secret_id")
253
-
254
- @_builtins.property
255
- @pulumi.getter(name="keyStoreFileSecretId")
256
- def key_store_file_secret_id(self) -> Optional[_builtins.str]:
257
- """
258
- OCID of the secret containing Keystore.jks file of the ATP wallet
259
- """
260
- return pulumi.get(self, "key_store_file_secret_id")
261
-
262
- @_builtins.property
263
- @pulumi.getter(name="measurementName")
264
- def measurement_name(self) -> Optional[_builtins.str]:
265
- """
266
- Measurement name for influx
267
- """
268
- return pulumi.get(self, "measurement_name")
269
-
270
- @_builtins.property
271
- @pulumi.getter
272
- def namespace(self) -> Optional[_builtins.str]:
273
- """
274
- Object storage namespace
275
- """
276
- return pulumi.get(self, "namespace")
277
-
278
- @_builtins.property
279
- @pulumi.getter
280
- def object(self) -> Optional[_builtins.str]:
281
- """
282
- File name
283
- """
284
- return pulumi.get(self, "object")
285
-
286
- @_builtins.property
287
- @pulumi.getter(name="ojdbcFileSecretId")
288
- def ojdbc_file_secret_id(self) -> Optional[_builtins.str]:
289
- """
290
- OCID of the secret that contains jdbc properties file of ATP wallet
291
- """
292
- return pulumi.get(self, "ojdbc_file_secret_id")
293
-
294
- @_builtins.property
295
- @pulumi.getter(name="passwordSecretId")
296
- def password_secret_id(self) -> Optional[_builtins.str]:
297
- """
298
- Password Secret Id for the influx connection
299
- """
300
- return pulumi.get(self, "password_secret_id")
301
-
302
- @_builtins.property
303
- @pulumi.getter(name="tableName")
304
- def table_name(self) -> Optional[_builtins.str]:
305
- """
306
- atp database table name
307
- """
308
- return pulumi.get(self, "table_name")
309
-
310
- @_builtins.property
311
- @pulumi.getter(name="tnsnamesFileSecretId")
312
- def tnsnames_file_secret_id(self) -> Optional[_builtins.str]:
313
- """
314
- OCID of the secret that contains the tnsnames file of ATP wallet
315
- """
316
- return pulumi.get(self, "tnsnames_file_secret_id")
317
-
318
- @_builtins.property
319
- @pulumi.getter(name="truststoreFileSecretId")
320
- def truststore_file_secret_id(self) -> Optional[_builtins.str]:
321
- """
322
- OCID of the secret containing truststore.jks file of the ATP wallet
323
- """
324
- return pulumi.get(self, "truststore_file_secret_id")
325
-
326
- @_builtins.property
327
- @pulumi.getter
328
- def url(self) -> Optional[_builtins.str]:
329
- """
330
- public IP address and port to influx DB
331
- """
332
- return pulumi.get(self, "url")
333
-
334
- @_builtins.property
335
- @pulumi.getter(name="userName")
336
- def user_name(self) -> Optional[_builtins.str]:
337
- """
338
- Username for connection to Influx
339
- """
340
- return pulumi.get(self, "user_name")
341
-
342
- @_builtins.property
343
- @pulumi.getter(name="versionSpecificDetails")
344
- def version_specific_details(self) -> Optional['outputs.DataAssetDataSourceDetailsVersionSpecificDetails']:
345
- """
346
- Possible data sources
347
- """
348
- return pulumi.get(self, "version_specific_details")
349
-
350
- @_builtins.property
351
- @pulumi.getter(name="walletPasswordSecretId")
352
- def wallet_password_secret_id(self) -> Optional[_builtins.str]:
353
- """
354
- wallet password Secret ID in String format
355
- """
356
- return pulumi.get(self, "wallet_password_secret_id")
357
-
358
-
359
- @pulumi.output_type
360
- class DataAssetDataSourceDetailsVersionSpecificDetails(dict):
361
- @staticmethod
362
- def __key_warning(key: str):
363
- suggest = None
364
- if key == "influxVersion":
365
- suggest = "influx_version"
366
- elif key == "databaseName":
367
- suggest = "database_name"
368
- elif key == "organizationName":
369
- suggest = "organization_name"
370
- elif key == "retentionPolicyName":
371
- suggest = "retention_policy_name"
372
-
373
- if suggest:
374
- pulumi.log.warn(f"Key '{key}' not found in DataAssetDataSourceDetailsVersionSpecificDetails. Access the value via the '{suggest}' property getter instead.")
375
-
376
- def __getitem__(self, key: str) -> Any:
377
- DataAssetDataSourceDetailsVersionSpecificDetails.__key_warning(key)
378
- return super().__getitem__(key)
379
-
380
- def get(self, key: str, default = None) -> Any:
381
- DataAssetDataSourceDetailsVersionSpecificDetails.__key_warning(key)
382
- return super().get(key, default)
383
-
384
- def __init__(__self__, *,
385
- influx_version: _builtins.str,
386
- bucket: Optional[_builtins.str] = None,
387
- database_name: Optional[_builtins.str] = None,
388
- organization_name: Optional[_builtins.str] = None,
389
- retention_policy_name: Optional[_builtins.str] = None):
390
- """
391
- :param _builtins.str influx_version: Data source type where actually data asset is being stored
392
- :param _builtins.str bucket: Bucket Name for influx connection
393
- :param _builtins.str database_name: DB Name for influx connection
394
- :param _builtins.str organization_name: Org name for the influx db
395
- :param _builtins.str retention_policy_name: retention policy is how long the bucket would last
396
- """
397
- pulumi.set(__self__, "influx_version", influx_version)
398
- if bucket is not None:
399
- pulumi.set(__self__, "bucket", bucket)
400
- if database_name is not None:
401
- pulumi.set(__self__, "database_name", database_name)
402
- if organization_name is not None:
403
- pulumi.set(__self__, "organization_name", organization_name)
404
- if retention_policy_name is not None:
405
- pulumi.set(__self__, "retention_policy_name", retention_policy_name)
406
-
407
- @_builtins.property
408
- @pulumi.getter(name="influxVersion")
409
- def influx_version(self) -> _builtins.str:
410
- """
411
- Data source type where actually data asset is being stored
412
- """
413
- return pulumi.get(self, "influx_version")
414
-
415
- @_builtins.property
416
- @pulumi.getter
417
- def bucket(self) -> Optional[_builtins.str]:
418
- """
419
- Bucket Name for influx connection
420
- """
421
- return pulumi.get(self, "bucket")
422
-
423
- @_builtins.property
424
- @pulumi.getter(name="databaseName")
425
- def database_name(self) -> Optional[_builtins.str]:
426
- """
427
- DB Name for influx connection
428
- """
429
- return pulumi.get(self, "database_name")
430
-
431
- @_builtins.property
432
- @pulumi.getter(name="organizationName")
433
- def organization_name(self) -> Optional[_builtins.str]:
434
- """
435
- Org name for the influx db
436
- """
437
- return pulumi.get(self, "organization_name")
438
-
439
- @_builtins.property
440
- @pulumi.getter(name="retentionPolicyName")
441
- def retention_policy_name(self) -> Optional[_builtins.str]:
442
- """
443
- retention policy is how long the bucket would last
444
- """
445
- return pulumi.get(self, "retention_policy_name")
446
-
447
-
448
- @pulumi.output_type
449
- class DetectAnomalyJobInputDetails(dict):
450
- @staticmethod
451
- def __key_warning(key: str):
452
- suggest = None
453
- if key == "inputType":
454
- suggest = "input_type"
455
- elif key == "contentType":
456
- suggest = "content_type"
457
- elif key == "objectLocations":
458
- suggest = "object_locations"
459
- elif key == "signalNames":
460
- suggest = "signal_names"
461
-
462
- if suggest:
463
- pulumi.log.warn(f"Key '{key}' not found in DetectAnomalyJobInputDetails. Access the value via the '{suggest}' property getter instead.")
464
-
465
- def __getitem__(self, key: str) -> Any:
466
- DetectAnomalyJobInputDetails.__key_warning(key)
467
- return super().__getitem__(key)
468
-
469
- def get(self, key: str, default = None) -> Any:
470
- DetectAnomalyJobInputDetails.__key_warning(key)
471
- return super().get(key, default)
472
-
473
- def __init__(__self__, *,
474
- input_type: _builtins.str,
475
- content: Optional[_builtins.str] = None,
476
- content_type: Optional[_builtins.str] = None,
477
- datas: Optional[Sequence['outputs.DetectAnomalyJobInputDetailsData']] = None,
478
- message: Optional[_builtins.str] = None,
479
- object_locations: Optional[Sequence['outputs.DetectAnomalyJobInputDetailsObjectLocation']] = None,
480
- signal_names: Optional[Sequence[_builtins.str]] = None):
481
- """
482
- :param _builtins.str input_type: Type of request. This parameter is automatically populated by classes generated by the SDK. For raw curl requests, you must provide this field.
483
- :param Sequence['DetectAnomalyJobInputDetailsDataArgs'] datas: Array containing data.
484
- :param _builtins.str message: Inline input details.
485
- :param Sequence['DetectAnomalyJobInputDetailsObjectLocationArgs'] object_locations: List of ObjectLocations.
486
- :param Sequence[_builtins.str] signal_names: List of signal names.
487
- """
488
- pulumi.set(__self__, "input_type", input_type)
489
- if content is not None:
490
- pulumi.set(__self__, "content", content)
491
- if content_type is not None:
492
- pulumi.set(__self__, "content_type", content_type)
493
- if datas is not None:
494
- pulumi.set(__self__, "datas", datas)
495
- if message is not None:
496
- pulumi.set(__self__, "message", message)
497
- if object_locations is not None:
498
- pulumi.set(__self__, "object_locations", object_locations)
499
- if signal_names is not None:
500
- pulumi.set(__self__, "signal_names", signal_names)
501
-
502
- @_builtins.property
503
- @pulumi.getter(name="inputType")
504
- def input_type(self) -> _builtins.str:
505
- """
506
- Type of request. This parameter is automatically populated by classes generated by the SDK. For raw curl requests, you must provide this field.
507
- """
508
- return pulumi.get(self, "input_type")
509
-
510
- @_builtins.property
511
- @pulumi.getter
512
- def content(self) -> Optional[_builtins.str]:
513
- return pulumi.get(self, "content")
514
-
515
- @_builtins.property
516
- @pulumi.getter(name="contentType")
517
- def content_type(self) -> Optional[_builtins.str]:
518
- return pulumi.get(self, "content_type")
519
-
520
- @_builtins.property
521
- @pulumi.getter
522
- def datas(self) -> Optional[Sequence['outputs.DetectAnomalyJobInputDetailsData']]:
523
- """
524
- Array containing data.
525
- """
526
- return pulumi.get(self, "datas")
527
-
528
- @_builtins.property
529
- @pulumi.getter
530
- def message(self) -> Optional[_builtins.str]:
531
- """
532
- Inline input details.
533
- """
534
- return pulumi.get(self, "message")
535
-
536
- @_builtins.property
537
- @pulumi.getter(name="objectLocations")
538
- def object_locations(self) -> Optional[Sequence['outputs.DetectAnomalyJobInputDetailsObjectLocation']]:
539
- """
540
- List of ObjectLocations.
541
- """
542
- return pulumi.get(self, "object_locations")
543
-
544
- @_builtins.property
545
- @pulumi.getter(name="signalNames")
546
- def signal_names(self) -> Optional[Sequence[_builtins.str]]:
547
- """
548
- List of signal names.
549
- """
550
- return pulumi.get(self, "signal_names")
551
-
552
-
553
- @pulumi.output_type
554
- class DetectAnomalyJobInputDetailsData(dict):
555
- def __init__(__self__, *,
556
- timestamp: Optional[_builtins.str] = None,
557
- values: Optional[Sequence[_builtins.float]] = None):
558
- """
559
- :param _builtins.str timestamp: Nullable string representing timestamp.
560
- :param Sequence[_builtins.float] values: Array of double precision values.
561
- """
562
- if timestamp is not None:
563
- pulumi.set(__self__, "timestamp", timestamp)
564
- if values is not None:
565
- pulumi.set(__self__, "values", values)
566
-
567
- @_builtins.property
568
- @pulumi.getter
569
- def timestamp(self) -> Optional[_builtins.str]:
570
- """
571
- Nullable string representing timestamp.
572
- """
573
- return pulumi.get(self, "timestamp")
574
-
575
- @_builtins.property
576
- @pulumi.getter
577
- def values(self) -> Optional[Sequence[_builtins.float]]:
578
- """
579
- Array of double precision values.
580
- """
581
- return pulumi.get(self, "values")
582
-
583
-
584
- @pulumi.output_type
585
- class DetectAnomalyJobInputDetailsObjectLocation(dict):
586
- def __init__(__self__, *,
587
- bucket: Optional[_builtins.str] = None,
588
- namespace: Optional[_builtins.str] = None,
589
- object: Optional[_builtins.str] = None):
590
- """
591
- :param _builtins.str bucket: Object Storage bucket name.
592
- :param _builtins.str namespace: Object Storage namespace name.
593
- :param _builtins.str object: Object Storage object name.
594
- """
595
- if bucket is not None:
596
- pulumi.set(__self__, "bucket", bucket)
597
- if namespace is not None:
598
- pulumi.set(__self__, "namespace", namespace)
599
- if object is not None:
600
- pulumi.set(__self__, "object", object)
601
-
602
- @_builtins.property
603
- @pulumi.getter
604
- def bucket(self) -> Optional[_builtins.str]:
605
- """
606
- Object Storage bucket name.
607
- """
608
- return pulumi.get(self, "bucket")
609
-
610
- @_builtins.property
611
- @pulumi.getter
612
- def namespace(self) -> Optional[_builtins.str]:
613
- """
614
- Object Storage namespace name.
615
- """
616
- return pulumi.get(self, "namespace")
617
-
618
- @_builtins.property
619
- @pulumi.getter
620
- def object(self) -> Optional[_builtins.str]:
621
- """
622
- Object Storage object name.
623
- """
624
- return pulumi.get(self, "object")
625
-
626
-
627
- @pulumi.output_type
628
- class DetectAnomalyJobOutputDetails(dict):
629
- @staticmethod
630
- def __key_warning(key: str):
631
- suggest = None
632
- if key == "outputType":
633
- suggest = "output_type"
634
-
635
- if suggest:
636
- pulumi.log.warn(f"Key '{key}' not found in DetectAnomalyJobOutputDetails. Access the value via the '{suggest}' property getter instead.")
637
-
638
- def __getitem__(self, key: str) -> Any:
639
- DetectAnomalyJobOutputDetails.__key_warning(key)
640
- return super().__getitem__(key)
641
-
642
- def get(self, key: str, default = None) -> Any:
643
- DetectAnomalyJobOutputDetails.__key_warning(key)
644
- return super().get(key, default)
645
-
646
- def __init__(__self__, *,
647
- bucket: _builtins.str,
648
- namespace: _builtins.str,
649
- output_type: _builtins.str,
650
- prefix: Optional[_builtins.str] = None):
651
- """
652
- :param _builtins.str bucket: Object Storage bucket name.
653
- :param _builtins.str namespace: Object Storage namespace.
654
- :param _builtins.str output_type: The type of output location. Allowed values are:
655
- * `OBJECT_STORAGE`: Object store output location.
656
- :param _builtins.str prefix: Object Storage folder name.
657
- """
658
- pulumi.set(__self__, "bucket", bucket)
659
- pulumi.set(__self__, "namespace", namespace)
660
- pulumi.set(__self__, "output_type", output_type)
661
- if prefix is not None:
662
- pulumi.set(__self__, "prefix", prefix)
663
-
664
- @_builtins.property
665
- @pulumi.getter
666
- def bucket(self) -> _builtins.str:
667
- """
668
- Object Storage bucket name.
669
- """
670
- return pulumi.get(self, "bucket")
671
-
672
- @_builtins.property
673
- @pulumi.getter
674
- def namespace(self) -> _builtins.str:
675
- """
676
- Object Storage namespace.
677
- """
678
- return pulumi.get(self, "namespace")
679
-
680
- @_builtins.property
681
- @pulumi.getter(name="outputType")
682
- def output_type(self) -> _builtins.str:
683
- """
684
- The type of output location. Allowed values are:
685
- * `OBJECT_STORAGE`: Object store output location.
686
- """
687
- return pulumi.get(self, "output_type")
688
-
689
- @_builtins.property
690
- @pulumi.getter
691
- def prefix(self) -> Optional[_builtins.str]:
692
- """
693
- Object Storage folder name.
694
- """
695
- return pulumi.get(self, "prefix")
696
-
697
-
698
- @pulumi.output_type
699
- class ModelModelTrainingDetails(dict):
700
- @staticmethod
701
- def __key_warning(key: str):
702
- suggest = None
703
- if key == "dataAssetIds":
704
- suggest = "data_asset_ids"
705
- elif key == "algorithmHint":
706
- suggest = "algorithm_hint"
707
- elif key == "targetFap":
708
- suggest = "target_fap"
709
- elif key == "trainingFraction":
710
- suggest = "training_fraction"
711
- elif key == "windowSize":
712
- suggest = "window_size"
713
-
714
- if suggest:
715
- pulumi.log.warn(f"Key '{key}' not found in ModelModelTrainingDetails. Access the value via the '{suggest}' property getter instead.")
716
-
717
- def __getitem__(self, key: str) -> Any:
718
- ModelModelTrainingDetails.__key_warning(key)
719
- return super().__getitem__(key)
720
-
721
- def get(self, key: str, default = None) -> Any:
722
- ModelModelTrainingDetails.__key_warning(key)
723
- return super().get(key, default)
724
-
725
- def __init__(__self__, *,
726
- data_asset_ids: Sequence[_builtins.str],
727
- algorithm_hint: Optional[_builtins.str] = None,
728
- target_fap: Optional[_builtins.float] = None,
729
- training_fraction: Optional[_builtins.float] = None,
730
- window_size: Optional[_builtins.int] = None):
731
- """
732
- :param Sequence[_builtins.str] data_asset_ids: The list of OCIDs of the data assets to train the model. The dataAssets have to be in the same project where the ai model would reside.
733
- :param _builtins.str algorithm_hint: User can choose specific algorithm for training.
734
- :param _builtins.float target_fap: A target model accuracy metric user provides as their requirement
735
- :param _builtins.float training_fraction: Fraction of total data that is used for training the model. The remaining is used for validation of the model.
736
- :param _builtins.int window_size: This value would determine the window size of the training algorithm.
737
- """
738
- pulumi.set(__self__, "data_asset_ids", data_asset_ids)
739
- if algorithm_hint is not None:
740
- pulumi.set(__self__, "algorithm_hint", algorithm_hint)
741
- if target_fap is not None:
742
- pulumi.set(__self__, "target_fap", target_fap)
743
- if training_fraction is not None:
744
- pulumi.set(__self__, "training_fraction", training_fraction)
745
- if window_size is not None:
746
- pulumi.set(__self__, "window_size", window_size)
747
-
748
- @_builtins.property
749
- @pulumi.getter(name="dataAssetIds")
750
- def data_asset_ids(self) -> Sequence[_builtins.str]:
751
- """
752
- The list of OCIDs of the data assets to train the model. The dataAssets have to be in the same project where the ai model would reside.
753
- """
754
- return pulumi.get(self, "data_asset_ids")
755
-
756
- @_builtins.property
757
- @pulumi.getter(name="algorithmHint")
758
- def algorithm_hint(self) -> Optional[_builtins.str]:
759
- """
760
- User can choose specific algorithm for training.
761
- """
762
- return pulumi.get(self, "algorithm_hint")
763
-
764
- @_builtins.property
765
- @pulumi.getter(name="targetFap")
766
- def target_fap(self) -> Optional[_builtins.float]:
767
- """
768
- A target model accuracy metric user provides as their requirement
769
- """
770
- return pulumi.get(self, "target_fap")
771
-
772
- @_builtins.property
773
- @pulumi.getter(name="trainingFraction")
774
- def training_fraction(self) -> Optional[_builtins.float]:
775
- """
776
- Fraction of total data that is used for training the model. The remaining is used for validation of the model.
777
- """
778
- return pulumi.get(self, "training_fraction")
779
-
780
- @_builtins.property
781
- @pulumi.getter(name="windowSize")
782
- def window_size(self) -> Optional[_builtins.int]:
783
- """
784
- This value would determine the window size of the training algorithm.
785
- """
786
- return pulumi.get(self, "window_size")
787
-
788
-
789
- @pulumi.output_type
790
- class ModelModelTrainingResult(dict):
791
- @staticmethod
792
- def __key_warning(key: str):
793
- suggest = None
794
- if key == "isTrainingGoalAchieved":
795
- suggest = "is_training_goal_achieved"
796
- elif key == "maxInferenceSyncRows":
797
- suggest = "max_inference_sync_rows"
798
- elif key == "multivariateFap":
799
- suggest = "multivariate_fap"
800
- elif key == "rowReductionDetails":
801
- suggest = "row_reduction_details"
802
- elif key == "signalDetails":
803
- suggest = "signal_details"
804
- elif key == "windowSize":
805
- suggest = "window_size"
806
-
807
- if suggest:
808
- pulumi.log.warn(f"Key '{key}' not found in ModelModelTrainingResult. Access the value via the '{suggest}' property getter instead.")
809
-
810
- def __getitem__(self, key: str) -> Any:
811
- ModelModelTrainingResult.__key_warning(key)
812
- return super().__getitem__(key)
813
-
814
- def get(self, key: str, default = None) -> Any:
815
- ModelModelTrainingResult.__key_warning(key)
816
- return super().get(key, default)
817
-
818
- def __init__(__self__, *,
819
- fap: Optional[_builtins.float] = None,
820
- is_training_goal_achieved: Optional[_builtins.bool] = None,
821
- mae: Optional[_builtins.float] = None,
822
- max_inference_sync_rows: Optional[_builtins.int] = None,
823
- multivariate_fap: Optional[_builtins.float] = None,
824
- rmse: Optional[_builtins.float] = None,
825
- row_reduction_details: Optional[Sequence['outputs.ModelModelTrainingResultRowReductionDetail']] = None,
826
- signal_details: Optional[Sequence['outputs.ModelModelTrainingResultSignalDetail']] = None,
827
- warning: Optional[_builtins.str] = None,
828
- window_size: Optional[_builtins.int] = None):
829
- """
830
- :param _builtins.float fap: Accuracy metric for a signal.
831
- :param _builtins.bool is_training_goal_achieved: A boolean value to indicate if train goal/targetFap is achieved for trained model
832
- :param _builtins.float multivariate_fap: The model accuracy metric on timestamp level.
833
- :param Sequence['ModelModelTrainingResultRowReductionDetailArgs'] row_reduction_details: Information regarding how/what row reduction methods will be applied. If this property is not present or is null, then it means row reduction is not applied.
834
- :param Sequence['ModelModelTrainingResultSignalDetailArgs'] signal_details: The list of signal details.
835
- :param _builtins.str warning: A warning message to explain the reason when targetFap cannot be achieved for trained model
836
- :param _builtins.int window_size: Window size defined during training or deduced by the algorithm.
837
- """
838
- if fap is not None:
839
- pulumi.set(__self__, "fap", fap)
840
- if is_training_goal_achieved is not None:
841
- pulumi.set(__self__, "is_training_goal_achieved", is_training_goal_achieved)
842
- if mae is not None:
843
- pulumi.set(__self__, "mae", mae)
844
- if max_inference_sync_rows is not None:
845
- pulumi.set(__self__, "max_inference_sync_rows", max_inference_sync_rows)
846
- if multivariate_fap is not None:
847
- pulumi.set(__self__, "multivariate_fap", multivariate_fap)
848
- if rmse is not None:
849
- pulumi.set(__self__, "rmse", rmse)
850
- if row_reduction_details is not None:
851
- pulumi.set(__self__, "row_reduction_details", row_reduction_details)
852
- if signal_details is not None:
853
- pulumi.set(__self__, "signal_details", signal_details)
854
- if warning is not None:
855
- pulumi.set(__self__, "warning", warning)
856
- if window_size is not None:
857
- pulumi.set(__self__, "window_size", window_size)
858
-
859
- @_builtins.property
860
- @pulumi.getter
861
- def fap(self) -> Optional[_builtins.float]:
862
- """
863
- Accuracy metric for a signal.
864
- """
865
- return pulumi.get(self, "fap")
866
-
867
- @_builtins.property
868
- @pulumi.getter(name="isTrainingGoalAchieved")
869
- def is_training_goal_achieved(self) -> Optional[_builtins.bool]:
870
- """
871
- A boolean value to indicate if train goal/targetFap is achieved for trained model
872
- """
873
- return pulumi.get(self, "is_training_goal_achieved")
874
-
875
- @_builtins.property
876
- @pulumi.getter
877
- def mae(self) -> Optional[_builtins.float]:
878
- return pulumi.get(self, "mae")
879
-
880
- @_builtins.property
881
- @pulumi.getter(name="maxInferenceSyncRows")
882
- def max_inference_sync_rows(self) -> Optional[_builtins.int]:
883
- return pulumi.get(self, "max_inference_sync_rows")
884
-
885
- @_builtins.property
886
- @pulumi.getter(name="multivariateFap")
887
- def multivariate_fap(self) -> Optional[_builtins.float]:
888
- """
889
- The model accuracy metric on timestamp level.
890
- """
891
- return pulumi.get(self, "multivariate_fap")
892
-
893
- @_builtins.property
894
- @pulumi.getter
895
- def rmse(self) -> Optional[_builtins.float]:
896
- return pulumi.get(self, "rmse")
897
-
898
- @_builtins.property
899
- @pulumi.getter(name="rowReductionDetails")
900
- def row_reduction_details(self) -> Optional[Sequence['outputs.ModelModelTrainingResultRowReductionDetail']]:
901
- """
902
- Information regarding how/what row reduction methods will be applied. If this property is not present or is null, then it means row reduction is not applied.
903
- """
904
- return pulumi.get(self, "row_reduction_details")
905
-
906
- @_builtins.property
907
- @pulumi.getter(name="signalDetails")
908
- def signal_details(self) -> Optional[Sequence['outputs.ModelModelTrainingResultSignalDetail']]:
909
- """
910
- The list of signal details.
911
- """
912
- return pulumi.get(self, "signal_details")
913
-
914
- @_builtins.property
915
- @pulumi.getter
916
- def warning(self) -> Optional[_builtins.str]:
917
- """
918
- A warning message to explain the reason when targetFap cannot be achieved for trained model
919
- """
920
- return pulumi.get(self, "warning")
921
-
922
- @_builtins.property
923
- @pulumi.getter(name="windowSize")
924
- def window_size(self) -> Optional[_builtins.int]:
925
- """
926
- Window size defined during training or deduced by the algorithm.
927
- """
928
- return pulumi.get(self, "window_size")
929
-
930
-
931
- @pulumi.output_type
932
- class ModelModelTrainingResultRowReductionDetail(dict):
933
- @staticmethod
934
- def __key_warning(key: str):
935
- suggest = None
936
- if key == "isReductionEnabled":
937
- suggest = "is_reduction_enabled"
938
- elif key == "reductionMethod":
939
- suggest = "reduction_method"
940
- elif key == "reductionPercentage":
941
- suggest = "reduction_percentage"
942
-
943
- if suggest:
944
- pulumi.log.warn(f"Key '{key}' not found in ModelModelTrainingResultRowReductionDetail. Access the value via the '{suggest}' property getter instead.")
945
-
946
- def __getitem__(self, key: str) -> Any:
947
- ModelModelTrainingResultRowReductionDetail.__key_warning(key)
948
- return super().__getitem__(key)
949
-
950
- def get(self, key: str, default = None) -> Any:
951
- ModelModelTrainingResultRowReductionDetail.__key_warning(key)
952
- return super().get(key, default)
953
-
954
- def __init__(__self__, *,
955
- is_reduction_enabled: Optional[_builtins.bool] = None,
956
- reduction_method: Optional[_builtins.str] = None,
957
- reduction_percentage: Optional[_builtins.float] = None):
958
- """
959
- :param _builtins.bool is_reduction_enabled: A boolean value to indicate if row reduction is applied
960
- :param _builtins.str reduction_method: Method for row reduction:
961
- * DELETE_ROW - delete rows with equal intervals
962
- * AVERAGE_ROW - average multiple rows to one row
963
- :param _builtins.float reduction_percentage: A percentage to reduce data size down to on top of original data
964
- """
965
- if is_reduction_enabled is not None:
966
- pulumi.set(__self__, "is_reduction_enabled", is_reduction_enabled)
967
- if reduction_method is not None:
968
- pulumi.set(__self__, "reduction_method", reduction_method)
969
- if reduction_percentage is not None:
970
- pulumi.set(__self__, "reduction_percentage", reduction_percentage)
971
-
972
- @_builtins.property
973
- @pulumi.getter(name="isReductionEnabled")
974
- def is_reduction_enabled(self) -> Optional[_builtins.bool]:
975
- """
976
- A boolean value to indicate if row reduction is applied
977
- """
978
- return pulumi.get(self, "is_reduction_enabled")
979
-
980
- @_builtins.property
981
- @pulumi.getter(name="reductionMethod")
982
- def reduction_method(self) -> Optional[_builtins.str]:
983
- """
984
- Method for row reduction:
985
- * DELETE_ROW - delete rows with equal intervals
986
- * AVERAGE_ROW - average multiple rows to one row
987
- """
988
- return pulumi.get(self, "reduction_method")
989
-
990
- @_builtins.property
991
- @pulumi.getter(name="reductionPercentage")
992
- def reduction_percentage(self) -> Optional[_builtins.float]:
993
- """
994
- A percentage to reduce data size down to on top of original data
995
- """
996
- return pulumi.get(self, "reduction_percentage")
997
-
998
-
999
- @pulumi.output_type
1000
- class ModelModelTrainingResultSignalDetail(dict):
1001
- @staticmethod
1002
- def __key_warning(key: str):
1003
- suggest = None
1004
- if key == "isQuantized":
1005
- suggest = "is_quantized"
1006
- elif key == "mviRatio":
1007
- suggest = "mvi_ratio"
1008
- elif key == "signalName":
1009
- suggest = "signal_name"
1010
-
1011
- if suggest:
1012
- pulumi.log.warn(f"Key '{key}' not found in ModelModelTrainingResultSignalDetail. Access the value via the '{suggest}' property getter instead.")
1013
-
1014
- def __getitem__(self, key: str) -> Any:
1015
- ModelModelTrainingResultSignalDetail.__key_warning(key)
1016
- return super().__getitem__(key)
1017
-
1018
- def get(self, key: str, default = None) -> Any:
1019
- ModelModelTrainingResultSignalDetail.__key_warning(key)
1020
- return super().get(key, default)
1021
-
1022
- def __init__(__self__, *,
1023
- details: Optional[_builtins.str] = None,
1024
- fap: Optional[_builtins.float] = None,
1025
- is_quantized: Optional[_builtins.bool] = None,
1026
- max: Optional[_builtins.float] = None,
1027
- min: Optional[_builtins.float] = None,
1028
- mvi_ratio: Optional[_builtins.float] = None,
1029
- signal_name: Optional[_builtins.str] = None,
1030
- status: Optional[_builtins.str] = None,
1031
- std: Optional[_builtins.float] = None):
1032
- """
1033
- :param _builtins.str details: detailed information for a signal.
1034
- :param _builtins.float fap: Accuracy metric for a signal.
1035
- :param _builtins.bool is_quantized: A boolean value to indicate if a signal is quantized or not.
1036
- :param _builtins.float max: Max value within a signal.
1037
- :param _builtins.float min: Min value within a signal.
1038
- :param _builtins.float mvi_ratio: The ratio of missing values in a signal filled/imputed by the IDP algorithm.
1039
- :param _builtins.str signal_name: The name of a signal.
1040
- :param _builtins.str status: Status of the signal:
1041
- * ACCEPTED - the signal is used for training the model
1042
- * DROPPED - the signal does not meet requirement, and is dropped before training the model.
1043
- * OTHER - placeholder for other status
1044
- :param _builtins.float std: Standard deviation of values within a signal.
1045
- """
1046
- if details is not None:
1047
- pulumi.set(__self__, "details", details)
1048
- if fap is not None:
1049
- pulumi.set(__self__, "fap", fap)
1050
- if is_quantized is not None:
1051
- pulumi.set(__self__, "is_quantized", is_quantized)
1052
- if max is not None:
1053
- pulumi.set(__self__, "max", max)
1054
- if min is not None:
1055
- pulumi.set(__self__, "min", min)
1056
- if mvi_ratio is not None:
1057
- pulumi.set(__self__, "mvi_ratio", mvi_ratio)
1058
- if signal_name is not None:
1059
- pulumi.set(__self__, "signal_name", signal_name)
1060
- if status is not None:
1061
- pulumi.set(__self__, "status", status)
1062
- if std is not None:
1063
- pulumi.set(__self__, "std", std)
1064
-
1065
- @_builtins.property
1066
- @pulumi.getter
1067
- def details(self) -> Optional[_builtins.str]:
1068
- """
1069
- detailed information for a signal.
1070
- """
1071
- return pulumi.get(self, "details")
1072
-
1073
- @_builtins.property
1074
- @pulumi.getter
1075
- def fap(self) -> Optional[_builtins.float]:
1076
- """
1077
- Accuracy metric for a signal.
1078
- """
1079
- return pulumi.get(self, "fap")
1080
-
1081
- @_builtins.property
1082
- @pulumi.getter(name="isQuantized")
1083
- def is_quantized(self) -> Optional[_builtins.bool]:
1084
- """
1085
- A boolean value to indicate if a signal is quantized or not.
1086
- """
1087
- return pulumi.get(self, "is_quantized")
1088
-
1089
- @_builtins.property
1090
- @pulumi.getter
1091
- def max(self) -> Optional[_builtins.float]:
1092
- """
1093
- Max value within a signal.
1094
- """
1095
- return pulumi.get(self, "max")
1096
-
1097
- @_builtins.property
1098
- @pulumi.getter
1099
- def min(self) -> Optional[_builtins.float]:
1100
- """
1101
- Min value within a signal.
1102
- """
1103
- return pulumi.get(self, "min")
1104
-
1105
- @_builtins.property
1106
- @pulumi.getter(name="mviRatio")
1107
- def mvi_ratio(self) -> Optional[_builtins.float]:
1108
- """
1109
- The ratio of missing values in a signal filled/imputed by the IDP algorithm.
1110
- """
1111
- return pulumi.get(self, "mvi_ratio")
1112
-
1113
- @_builtins.property
1114
- @pulumi.getter(name="signalName")
1115
- def signal_name(self) -> Optional[_builtins.str]:
1116
- """
1117
- The name of a signal.
1118
- """
1119
- return pulumi.get(self, "signal_name")
1120
-
1121
- @_builtins.property
1122
- @pulumi.getter
1123
- def status(self) -> Optional[_builtins.str]:
1124
- """
1125
- Status of the signal:
1126
- * ACCEPTED - the signal is used for training the model
1127
- * DROPPED - the signal does not meet requirement, and is dropped before training the model.
1128
- * OTHER - placeholder for other status
1129
- """
1130
- return pulumi.get(self, "status")
1131
-
1132
- @_builtins.property
1133
- @pulumi.getter
1134
- def std(self) -> Optional[_builtins.float]:
1135
- """
1136
- Standard deviation of values within a signal.
1137
- """
1138
- return pulumi.get(self, "std")
1139
-
1140
-
1141
- @pulumi.output_type
1142
- class GetAiPrivateEndpointsAiPrivateEndpointCollectionResult(dict):
1143
- def __init__(__self__, *,
1144
- items: Sequence['outputs.GetAiPrivateEndpointsAiPrivateEndpointCollectionItemResult']):
1145
- pulumi.set(__self__, "items", items)
1146
-
1147
- @_builtins.property
1148
- @pulumi.getter
1149
- def items(self) -> Sequence['outputs.GetAiPrivateEndpointsAiPrivateEndpointCollectionItemResult']:
1150
- return pulumi.get(self, "items")
1151
-
1152
-
1153
- @pulumi.output_type
1154
- class GetAiPrivateEndpointsAiPrivateEndpointCollectionItemResult(dict):
1155
- def __init__(__self__, *,
1156
- attached_data_assets: Sequence[_builtins.str],
1157
- compartment_id: _builtins.str,
1158
- defined_tags: Mapping[str, _builtins.str],
1159
- display_name: _builtins.str,
1160
- dns_zones: Sequence[_builtins.str],
1161
- freeform_tags: Mapping[str, _builtins.str],
1162
- id: _builtins.str,
1163
- lifecycle_details: _builtins.str,
1164
- state: _builtins.str,
1165
- subnet_id: _builtins.str,
1166
- system_tags: Mapping[str, _builtins.str],
1167
- time_created: _builtins.str,
1168
- time_updated: _builtins.str):
1169
- """
1170
- :param Sequence[_builtins.str] attached_data_assets: The list of dataAssets using the private reverse connection endpoint.
1171
- :param _builtins.str compartment_id: The ID of the compartment in which to list resources.
1172
- :param Mapping[str, _builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1173
- :param _builtins.str display_name: A filter to return only resources that match the entire display name given.
1174
- :param Sequence[_builtins.str] dns_zones: List of DNS zones to be used by the data assets. Example: custpvtsubnet.oraclevcn.com for data asset: db.custpvtsubnet.oraclevcn.com
1175
- :param Mapping[str, _builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1176
- :param _builtins.str id: unique AiPrivateEndpoint identifier
1177
- :param _builtins.str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
1178
- :param _builtins.str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
1179
- :param _builtins.str subnet_id: Subnet Identifier
1180
- :param Mapping[str, _builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1181
- :param _builtins.str time_created: The time the private endpoint was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
1182
- :param _builtins.str time_updated: The time the private endpoint was updated. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
1183
- """
1184
- pulumi.set(__self__, "attached_data_assets", attached_data_assets)
1185
- pulumi.set(__self__, "compartment_id", compartment_id)
1186
- pulumi.set(__self__, "defined_tags", defined_tags)
1187
- pulumi.set(__self__, "display_name", display_name)
1188
- pulumi.set(__self__, "dns_zones", dns_zones)
1189
- pulumi.set(__self__, "freeform_tags", freeform_tags)
1190
- pulumi.set(__self__, "id", id)
1191
- pulumi.set(__self__, "lifecycle_details", lifecycle_details)
1192
- pulumi.set(__self__, "state", state)
1193
- pulumi.set(__self__, "subnet_id", subnet_id)
1194
- pulumi.set(__self__, "system_tags", system_tags)
1195
- pulumi.set(__self__, "time_created", time_created)
1196
- pulumi.set(__self__, "time_updated", time_updated)
1197
-
1198
- @_builtins.property
1199
- @pulumi.getter(name="attachedDataAssets")
1200
- def attached_data_assets(self) -> Sequence[_builtins.str]:
1201
- """
1202
- The list of dataAssets using the private reverse connection endpoint.
1203
- """
1204
- return pulumi.get(self, "attached_data_assets")
1205
-
1206
- @_builtins.property
1207
- @pulumi.getter(name="compartmentId")
1208
- def compartment_id(self) -> _builtins.str:
1209
- """
1210
- The ID of the compartment in which to list resources.
1211
- """
1212
- return pulumi.get(self, "compartment_id")
1213
-
1214
- @_builtins.property
1215
- @pulumi.getter(name="definedTags")
1216
- def defined_tags(self) -> Mapping[str, _builtins.str]:
1217
- """
1218
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1219
- """
1220
- return pulumi.get(self, "defined_tags")
1221
-
1222
- @_builtins.property
1223
- @pulumi.getter(name="displayName")
1224
- def display_name(self) -> _builtins.str:
1225
- """
1226
- A filter to return only resources that match the entire display name given.
1227
- """
1228
- return pulumi.get(self, "display_name")
1229
-
1230
- @_builtins.property
1231
- @pulumi.getter(name="dnsZones")
1232
- def dns_zones(self) -> Sequence[_builtins.str]:
1233
- """
1234
- List of DNS zones to be used by the data assets. Example: custpvtsubnet.oraclevcn.com for data asset: db.custpvtsubnet.oraclevcn.com
1235
- """
1236
- return pulumi.get(self, "dns_zones")
1237
-
1238
- @_builtins.property
1239
- @pulumi.getter(name="freeformTags")
1240
- def freeform_tags(self) -> Mapping[str, _builtins.str]:
1241
- """
1242
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1243
- """
1244
- return pulumi.get(self, "freeform_tags")
1245
-
1246
- @_builtins.property
1247
- @pulumi.getter
1248
- def id(self) -> _builtins.str:
1249
- """
1250
- unique AiPrivateEndpoint identifier
1251
- """
1252
- return pulumi.get(self, "id")
1253
-
1254
- @_builtins.property
1255
- @pulumi.getter(name="lifecycleDetails")
1256
- def lifecycle_details(self) -> _builtins.str:
1257
- """
1258
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
1259
- """
1260
- return pulumi.get(self, "lifecycle_details")
1261
-
1262
- @_builtins.property
1263
- @pulumi.getter
1264
- def state(self) -> _builtins.str:
1265
- """
1266
- <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
1267
- """
1268
- return pulumi.get(self, "state")
1269
-
1270
- @_builtins.property
1271
- @pulumi.getter(name="subnetId")
1272
- def subnet_id(self) -> _builtins.str:
1273
- """
1274
- Subnet Identifier
1275
- """
1276
- return pulumi.get(self, "subnet_id")
1277
-
1278
- @_builtins.property
1279
- @pulumi.getter(name="systemTags")
1280
- def system_tags(self) -> Mapping[str, _builtins.str]:
1281
- """
1282
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1283
- """
1284
- return pulumi.get(self, "system_tags")
1285
-
1286
- @_builtins.property
1287
- @pulumi.getter(name="timeCreated")
1288
- def time_created(self) -> _builtins.str:
1289
- """
1290
- The time the private endpoint was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
1291
- """
1292
- return pulumi.get(self, "time_created")
1293
-
1294
- @_builtins.property
1295
- @pulumi.getter(name="timeUpdated")
1296
- def time_updated(self) -> _builtins.str:
1297
- """
1298
- The time the private endpoint was updated. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
1299
- """
1300
- return pulumi.get(self, "time_updated")
1301
-
1302
-
1303
- @pulumi.output_type
1304
- class GetAiPrivateEndpointsFilterResult(dict):
1305
- def __init__(__self__, *,
1306
- name: _builtins.str,
1307
- values: Sequence[_builtins.str],
1308
- regex: Optional[_builtins.bool] = None):
1309
- pulumi.set(__self__, "name", name)
1310
- pulumi.set(__self__, "values", values)
1311
- if regex is not None:
1312
- pulumi.set(__self__, "regex", regex)
1313
-
1314
- @_builtins.property
1315
- @pulumi.getter
1316
- def name(self) -> _builtins.str:
1317
- return pulumi.get(self, "name")
1318
-
1319
- @_builtins.property
1320
- @pulumi.getter
1321
- def values(self) -> Sequence[_builtins.str]:
1322
- return pulumi.get(self, "values")
1323
-
1324
- @_builtins.property
1325
- @pulumi.getter
1326
- def regex(self) -> Optional[_builtins.bool]:
1327
- return pulumi.get(self, "regex")
1328
-
1329
-
1330
- @pulumi.output_type
1331
- class GetDetectAnomalyJobInputDetailResult(dict):
1332
- def __init__(__self__, *,
1333
- content: _builtins.str,
1334
- content_type: _builtins.str,
1335
- datas: Sequence['outputs.GetDetectAnomalyJobInputDetailDataResult'],
1336
- input_type: _builtins.str,
1337
- message: _builtins.str,
1338
- object_locations: Sequence['outputs.GetDetectAnomalyJobInputDetailObjectLocationResult'],
1339
- signal_names: Sequence[_builtins.str]):
1340
- """
1341
- :param _builtins.str input_type: The type of input location Allowed values are:
1342
- * `INLINE`: Inline input data.
1343
- * `OBJECT_LIST`: Object store output location.
1344
- :param _builtins.str message: Inline input details.
1345
- :param Sequence['GetDetectAnomalyJobInputDetailObjectLocationArgs'] object_locations: List of ObjectLocations.
1346
- """
1347
- pulumi.set(__self__, "content", content)
1348
- pulumi.set(__self__, "content_type", content_type)
1349
- pulumi.set(__self__, "datas", datas)
1350
- pulumi.set(__self__, "input_type", input_type)
1351
- pulumi.set(__self__, "message", message)
1352
- pulumi.set(__self__, "object_locations", object_locations)
1353
- pulumi.set(__self__, "signal_names", signal_names)
1354
-
1355
- @_builtins.property
1356
- @pulumi.getter
1357
- def content(self) -> _builtins.str:
1358
- return pulumi.get(self, "content")
1359
-
1360
- @_builtins.property
1361
- @pulumi.getter(name="contentType")
1362
- def content_type(self) -> _builtins.str:
1363
- return pulumi.get(self, "content_type")
1364
-
1365
- @_builtins.property
1366
- @pulumi.getter
1367
- def datas(self) -> Sequence['outputs.GetDetectAnomalyJobInputDetailDataResult']:
1368
- return pulumi.get(self, "datas")
1369
-
1370
- @_builtins.property
1371
- @pulumi.getter(name="inputType")
1372
- def input_type(self) -> _builtins.str:
1373
- """
1374
- The type of input location Allowed values are:
1375
- * `INLINE`: Inline input data.
1376
- * `OBJECT_LIST`: Object store output location.
1377
- """
1378
- return pulumi.get(self, "input_type")
1379
-
1380
- @_builtins.property
1381
- @pulumi.getter
1382
- def message(self) -> _builtins.str:
1383
- """
1384
- Inline input details.
1385
- """
1386
- return pulumi.get(self, "message")
1387
-
1388
- @_builtins.property
1389
- @pulumi.getter(name="objectLocations")
1390
- def object_locations(self) -> Sequence['outputs.GetDetectAnomalyJobInputDetailObjectLocationResult']:
1391
- """
1392
- List of ObjectLocations.
1393
- """
1394
- return pulumi.get(self, "object_locations")
1395
-
1396
- @_builtins.property
1397
- @pulumi.getter(name="signalNames")
1398
- def signal_names(self) -> Sequence[_builtins.str]:
1399
- return pulumi.get(self, "signal_names")
1400
-
1401
-
1402
- @pulumi.output_type
1403
- class GetDetectAnomalyJobInputDetailDataResult(dict):
1404
- def __init__(__self__, *,
1405
- timestamp: _builtins.str,
1406
- values: Sequence[_builtins.float]):
1407
- pulumi.set(__self__, "timestamp", timestamp)
1408
- pulumi.set(__self__, "values", values)
1409
-
1410
- @_builtins.property
1411
- @pulumi.getter
1412
- def timestamp(self) -> _builtins.str:
1413
- return pulumi.get(self, "timestamp")
1414
-
1415
- @_builtins.property
1416
- @pulumi.getter
1417
- def values(self) -> Sequence[_builtins.float]:
1418
- return pulumi.get(self, "values")
1419
-
1420
-
1421
- @pulumi.output_type
1422
- class GetDetectAnomalyJobInputDetailObjectLocationResult(dict):
1423
- def __init__(__self__, *,
1424
- bucket: _builtins.str,
1425
- namespace: _builtins.str,
1426
- object: _builtins.str):
1427
- """
1428
- :param _builtins.str bucket: Object Storage bucket name.
1429
- :param _builtins.str namespace: Object Storage namespace.
1430
- :param _builtins.str object: Object Storage object name.
1431
- """
1432
- pulumi.set(__self__, "bucket", bucket)
1433
- pulumi.set(__self__, "namespace", namespace)
1434
- pulumi.set(__self__, "object", object)
1435
-
1436
- @_builtins.property
1437
- @pulumi.getter
1438
- def bucket(self) -> _builtins.str:
1439
- """
1440
- Object Storage bucket name.
1441
- """
1442
- return pulumi.get(self, "bucket")
1443
-
1444
- @_builtins.property
1445
- @pulumi.getter
1446
- def namespace(self) -> _builtins.str:
1447
- """
1448
- Object Storage namespace.
1449
- """
1450
- return pulumi.get(self, "namespace")
1451
-
1452
- @_builtins.property
1453
- @pulumi.getter
1454
- def object(self) -> _builtins.str:
1455
- """
1456
- Object Storage object name.
1457
- """
1458
- return pulumi.get(self, "object")
1459
-
1460
-
1461
- @pulumi.output_type
1462
- class GetDetectAnomalyJobOutputDetailResult(dict):
1463
- def __init__(__self__, *,
1464
- bucket: _builtins.str,
1465
- namespace: _builtins.str,
1466
- output_type: _builtins.str,
1467
- prefix: _builtins.str):
1468
- """
1469
- :param _builtins.str bucket: Object Storage bucket name.
1470
- :param _builtins.str namespace: Object Storage namespace.
1471
- :param _builtins.str output_type: The type of output location Allowed values are:
1472
- * `OBJECT_STORAGE`: Object store output location.
1473
- :param _builtins.str prefix: Object Storage folder name.
1474
- """
1475
- pulumi.set(__self__, "bucket", bucket)
1476
- pulumi.set(__self__, "namespace", namespace)
1477
- pulumi.set(__self__, "output_type", output_type)
1478
- pulumi.set(__self__, "prefix", prefix)
1479
-
1480
- @_builtins.property
1481
- @pulumi.getter
1482
- def bucket(self) -> _builtins.str:
1483
- """
1484
- Object Storage bucket name.
1485
- """
1486
- return pulumi.get(self, "bucket")
1487
-
1488
- @_builtins.property
1489
- @pulumi.getter
1490
- def namespace(self) -> _builtins.str:
1491
- """
1492
- Object Storage namespace.
1493
- """
1494
- return pulumi.get(self, "namespace")
1495
-
1496
- @_builtins.property
1497
- @pulumi.getter(name="outputType")
1498
- def output_type(self) -> _builtins.str:
1499
- """
1500
- The type of output location Allowed values are:
1501
- * `OBJECT_STORAGE`: Object store output location.
1502
- """
1503
- return pulumi.get(self, "output_type")
1504
-
1505
- @_builtins.property
1506
- @pulumi.getter
1507
- def prefix(self) -> _builtins.str:
1508
- """
1509
- Object Storage folder name.
1510
- """
1511
- return pulumi.get(self, "prefix")
1512
-
1513
-
1514
- @pulumi.output_type
1515
- class GetDetectAnomalyJobsDetectAnomalyJobCollectionResult(dict):
1516
- def __init__(__self__, *,
1517
- items: Sequence['outputs.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemResult']):
1518
- pulumi.set(__self__, "items", items)
1519
-
1520
- @_builtins.property
1521
- @pulumi.getter
1522
- def items(self) -> Sequence['outputs.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemResult']:
1523
- return pulumi.get(self, "items")
1524
-
1525
-
1526
- @pulumi.output_type
1527
- class GetDetectAnomalyJobsDetectAnomalyJobCollectionItemResult(dict):
1528
- def __init__(__self__, *,
1529
- compartment_id: _builtins.str,
1530
- defined_tags: Mapping[str, _builtins.str],
1531
- description: _builtins.str,
1532
- display_name: _builtins.str,
1533
- freeform_tags: Mapping[str, _builtins.str],
1534
- id: _builtins.str,
1535
- input_details: Sequence['outputs.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailResult'],
1536
- lifecycle_state_details: _builtins.str,
1537
- model_id: _builtins.str,
1538
- output_details: Sequence['outputs.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemOutputDetailResult'],
1539
- project_id: _builtins.str,
1540
- sensitivity: _builtins.float,
1541
- state: _builtins.str,
1542
- system_tags: Mapping[str, _builtins.str],
1543
- time_accepted: _builtins.str,
1544
- time_finished: _builtins.str,
1545
- time_started: _builtins.str):
1546
- """
1547
- :param _builtins.str compartment_id: The ID of the compartment in which to list resources.
1548
- :param Mapping[str, _builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1549
- :param _builtins.str description: Detect anomaly job description.
1550
- :param _builtins.str display_name: A filter to return only resources that match the entire display name given.
1551
- :param Mapping[str, _builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1552
- :param _builtins.str id: Id of the job.
1553
- :param Sequence['GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailArgs'] input_details: Input details for detect anomaly job.
1554
- :param _builtins.str lifecycle_state_details: The current state details of the batch document job.
1555
- :param _builtins.str model_id: The ID of the trained model for which to list the resources.
1556
- :param Sequence['GetDetectAnomalyJobsDetectAnomalyJobCollectionItemOutputDetailArgs'] output_details: Output details for detect anomaly job.
1557
- :param _builtins.str project_id: The ID of the project for which to list the objects.
1558
- :param _builtins.float sensitivity: The value that customer can adjust to control the sensitivity of anomaly detection
1559
- :param _builtins.str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
1560
- :param Mapping[str, _builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1561
- :param _builtins.str time_accepted: Job accepted time
1562
- :param _builtins.str time_finished: Job finished time
1563
- :param _builtins.str time_started: Job started time
1564
- """
1565
- pulumi.set(__self__, "compartment_id", compartment_id)
1566
- pulumi.set(__self__, "defined_tags", defined_tags)
1567
- pulumi.set(__self__, "description", description)
1568
- pulumi.set(__self__, "display_name", display_name)
1569
- pulumi.set(__self__, "freeform_tags", freeform_tags)
1570
- pulumi.set(__self__, "id", id)
1571
- pulumi.set(__self__, "input_details", input_details)
1572
- pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
1573
- pulumi.set(__self__, "model_id", model_id)
1574
- pulumi.set(__self__, "output_details", output_details)
1575
- pulumi.set(__self__, "project_id", project_id)
1576
- pulumi.set(__self__, "sensitivity", sensitivity)
1577
- pulumi.set(__self__, "state", state)
1578
- pulumi.set(__self__, "system_tags", system_tags)
1579
- pulumi.set(__self__, "time_accepted", time_accepted)
1580
- pulumi.set(__self__, "time_finished", time_finished)
1581
- pulumi.set(__self__, "time_started", time_started)
1582
-
1583
- @_builtins.property
1584
- @pulumi.getter(name="compartmentId")
1585
- def compartment_id(self) -> _builtins.str:
1586
- """
1587
- The ID of the compartment in which to list resources.
1588
- """
1589
- return pulumi.get(self, "compartment_id")
1590
-
1591
- @_builtins.property
1592
- @pulumi.getter(name="definedTags")
1593
- def defined_tags(self) -> Mapping[str, _builtins.str]:
1594
- """
1595
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1596
- """
1597
- return pulumi.get(self, "defined_tags")
1598
-
1599
- @_builtins.property
1600
- @pulumi.getter
1601
- def description(self) -> _builtins.str:
1602
- """
1603
- Detect anomaly job description.
1604
- """
1605
- return pulumi.get(self, "description")
1606
-
1607
- @_builtins.property
1608
- @pulumi.getter(name="displayName")
1609
- def display_name(self) -> _builtins.str:
1610
- """
1611
- A filter to return only resources that match the entire display name given.
1612
- """
1613
- return pulumi.get(self, "display_name")
1614
-
1615
- @_builtins.property
1616
- @pulumi.getter(name="freeformTags")
1617
- def freeform_tags(self) -> Mapping[str, _builtins.str]:
1618
- """
1619
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1620
- """
1621
- return pulumi.get(self, "freeform_tags")
1622
-
1623
- @_builtins.property
1624
- @pulumi.getter
1625
- def id(self) -> _builtins.str:
1626
- """
1627
- Id of the job.
1628
- """
1629
- return pulumi.get(self, "id")
1630
-
1631
- @_builtins.property
1632
- @pulumi.getter(name="inputDetails")
1633
- def input_details(self) -> Sequence['outputs.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailResult']:
1634
- """
1635
- Input details for detect anomaly job.
1636
- """
1637
- return pulumi.get(self, "input_details")
1638
-
1639
- @_builtins.property
1640
- @pulumi.getter(name="lifecycleStateDetails")
1641
- def lifecycle_state_details(self) -> _builtins.str:
1642
- """
1643
- The current state details of the batch document job.
1644
- """
1645
- return pulumi.get(self, "lifecycle_state_details")
1646
-
1647
- @_builtins.property
1648
- @pulumi.getter(name="modelId")
1649
- def model_id(self) -> _builtins.str:
1650
- """
1651
- The ID of the trained model for which to list the resources.
1652
- """
1653
- return pulumi.get(self, "model_id")
1654
-
1655
- @_builtins.property
1656
- @pulumi.getter(name="outputDetails")
1657
- def output_details(self) -> Sequence['outputs.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemOutputDetailResult']:
1658
- """
1659
- Output details for detect anomaly job.
1660
- """
1661
- return pulumi.get(self, "output_details")
1662
-
1663
- @_builtins.property
1664
- @pulumi.getter(name="projectId")
1665
- def project_id(self) -> _builtins.str:
1666
- """
1667
- The ID of the project for which to list the objects.
1668
- """
1669
- return pulumi.get(self, "project_id")
1670
-
1671
- @_builtins.property
1672
- @pulumi.getter
1673
- def sensitivity(self) -> _builtins.float:
1674
- """
1675
- The value that customer can adjust to control the sensitivity of anomaly detection
1676
- """
1677
- return pulumi.get(self, "sensitivity")
1678
-
1679
- @_builtins.property
1680
- @pulumi.getter
1681
- def state(self) -> _builtins.str:
1682
- """
1683
- <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
1684
- """
1685
- return pulumi.get(self, "state")
1686
-
1687
- @_builtins.property
1688
- @pulumi.getter(name="systemTags")
1689
- def system_tags(self) -> Mapping[str, _builtins.str]:
1690
- """
1691
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1692
- """
1693
- return pulumi.get(self, "system_tags")
1694
-
1695
- @_builtins.property
1696
- @pulumi.getter(name="timeAccepted")
1697
- def time_accepted(self) -> _builtins.str:
1698
- """
1699
- Job accepted time
1700
- """
1701
- return pulumi.get(self, "time_accepted")
1702
-
1703
- @_builtins.property
1704
- @pulumi.getter(name="timeFinished")
1705
- def time_finished(self) -> _builtins.str:
1706
- """
1707
- Job finished time
1708
- """
1709
- return pulumi.get(self, "time_finished")
1710
-
1711
- @_builtins.property
1712
- @pulumi.getter(name="timeStarted")
1713
- def time_started(self) -> _builtins.str:
1714
- """
1715
- Job started time
1716
- """
1717
- return pulumi.get(self, "time_started")
1718
-
1719
-
1720
- @pulumi.output_type
1721
- class GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailResult(dict):
1722
- def __init__(__self__, *,
1723
- content: _builtins.str,
1724
- content_type: _builtins.str,
1725
- datas: Sequence['outputs.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailDataResult'],
1726
- input_type: _builtins.str,
1727
- message: _builtins.str,
1728
- object_locations: Sequence['outputs.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailObjectLocationResult'],
1729
- signal_names: Sequence[_builtins.str]):
1730
- """
1731
- :param _builtins.str input_type: The type of input location Allowed values are:
1732
- * `INLINE`: Inline input data.
1733
- * `OBJECT_LIST`: Object store output location.
1734
- :param _builtins.str message: Inline input details.
1735
- :param Sequence['GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailObjectLocationArgs'] object_locations: List of ObjectLocations.
1736
- """
1737
- pulumi.set(__self__, "content", content)
1738
- pulumi.set(__self__, "content_type", content_type)
1739
- pulumi.set(__self__, "datas", datas)
1740
- pulumi.set(__self__, "input_type", input_type)
1741
- pulumi.set(__self__, "message", message)
1742
- pulumi.set(__self__, "object_locations", object_locations)
1743
- pulumi.set(__self__, "signal_names", signal_names)
1744
-
1745
- @_builtins.property
1746
- @pulumi.getter
1747
- def content(self) -> _builtins.str:
1748
- return pulumi.get(self, "content")
1749
-
1750
- @_builtins.property
1751
- @pulumi.getter(name="contentType")
1752
- def content_type(self) -> _builtins.str:
1753
- return pulumi.get(self, "content_type")
1754
-
1755
- @_builtins.property
1756
- @pulumi.getter
1757
- def datas(self) -> Sequence['outputs.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailDataResult']:
1758
- return pulumi.get(self, "datas")
1759
-
1760
- @_builtins.property
1761
- @pulumi.getter(name="inputType")
1762
- def input_type(self) -> _builtins.str:
1763
- """
1764
- The type of input location Allowed values are:
1765
- * `INLINE`: Inline input data.
1766
- * `OBJECT_LIST`: Object store output location.
1767
- """
1768
- return pulumi.get(self, "input_type")
1769
-
1770
- @_builtins.property
1771
- @pulumi.getter
1772
- def message(self) -> _builtins.str:
1773
- """
1774
- Inline input details.
1775
- """
1776
- return pulumi.get(self, "message")
1777
-
1778
- @_builtins.property
1779
- @pulumi.getter(name="objectLocations")
1780
- def object_locations(self) -> Sequence['outputs.GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailObjectLocationResult']:
1781
- """
1782
- List of ObjectLocations.
1783
- """
1784
- return pulumi.get(self, "object_locations")
1785
-
1786
- @_builtins.property
1787
- @pulumi.getter(name="signalNames")
1788
- def signal_names(self) -> Sequence[_builtins.str]:
1789
- return pulumi.get(self, "signal_names")
1790
-
1791
-
1792
- @pulumi.output_type
1793
- class GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailDataResult(dict):
1794
- def __init__(__self__, *,
1795
- timestamp: _builtins.str,
1796
- values: Sequence[_builtins.float]):
1797
- pulumi.set(__self__, "timestamp", timestamp)
1798
- pulumi.set(__self__, "values", values)
1799
-
1800
- @_builtins.property
1801
- @pulumi.getter
1802
- def timestamp(self) -> _builtins.str:
1803
- return pulumi.get(self, "timestamp")
1804
-
1805
- @_builtins.property
1806
- @pulumi.getter
1807
- def values(self) -> Sequence[_builtins.float]:
1808
- return pulumi.get(self, "values")
1809
-
1810
-
1811
- @pulumi.output_type
1812
- class GetDetectAnomalyJobsDetectAnomalyJobCollectionItemInputDetailObjectLocationResult(dict):
1813
- def __init__(__self__, *,
1814
- bucket: _builtins.str,
1815
- namespace: _builtins.str,
1816
- object: _builtins.str):
1817
- """
1818
- :param _builtins.str bucket: Object Storage bucket name.
1819
- :param _builtins.str namespace: Object Storage namespace.
1820
- :param _builtins.str object: Object Storage object name.
1821
- """
1822
- pulumi.set(__self__, "bucket", bucket)
1823
- pulumi.set(__self__, "namespace", namespace)
1824
- pulumi.set(__self__, "object", object)
1825
-
1826
- @_builtins.property
1827
- @pulumi.getter
1828
- def bucket(self) -> _builtins.str:
1829
- """
1830
- Object Storage bucket name.
1831
- """
1832
- return pulumi.get(self, "bucket")
1833
-
1834
- @_builtins.property
1835
- @pulumi.getter
1836
- def namespace(self) -> _builtins.str:
1837
- """
1838
- Object Storage namespace.
1839
- """
1840
- return pulumi.get(self, "namespace")
1841
-
1842
- @_builtins.property
1843
- @pulumi.getter
1844
- def object(self) -> _builtins.str:
1845
- """
1846
- Object Storage object name.
1847
- """
1848
- return pulumi.get(self, "object")
1849
-
1850
-
1851
- @pulumi.output_type
1852
- class GetDetectAnomalyJobsDetectAnomalyJobCollectionItemOutputDetailResult(dict):
1853
- def __init__(__self__, *,
1854
- bucket: _builtins.str,
1855
- namespace: _builtins.str,
1856
- output_type: _builtins.str,
1857
- prefix: _builtins.str):
1858
- """
1859
- :param _builtins.str bucket: Object Storage bucket name.
1860
- :param _builtins.str namespace: Object Storage namespace.
1861
- :param _builtins.str output_type: The type of output location Allowed values are:
1862
- * `OBJECT_STORAGE`: Object store output location.
1863
- :param _builtins.str prefix: Object Storage folder name.
1864
- """
1865
- pulumi.set(__self__, "bucket", bucket)
1866
- pulumi.set(__self__, "namespace", namespace)
1867
- pulumi.set(__self__, "output_type", output_type)
1868
- pulumi.set(__self__, "prefix", prefix)
1869
-
1870
- @_builtins.property
1871
- @pulumi.getter
1872
- def bucket(self) -> _builtins.str:
1873
- """
1874
- Object Storage bucket name.
1875
- """
1876
- return pulumi.get(self, "bucket")
1877
-
1878
- @_builtins.property
1879
- @pulumi.getter
1880
- def namespace(self) -> _builtins.str:
1881
- """
1882
- Object Storage namespace.
1883
- """
1884
- return pulumi.get(self, "namespace")
1885
-
1886
- @_builtins.property
1887
- @pulumi.getter(name="outputType")
1888
- def output_type(self) -> _builtins.str:
1889
- """
1890
- The type of output location Allowed values are:
1891
- * `OBJECT_STORAGE`: Object store output location.
1892
- """
1893
- return pulumi.get(self, "output_type")
1894
-
1895
- @_builtins.property
1896
- @pulumi.getter
1897
- def prefix(self) -> _builtins.str:
1898
- """
1899
- Object Storage folder name.
1900
- """
1901
- return pulumi.get(self, "prefix")
1902
-
1903
-
1904
- @pulumi.output_type
1905
- class GetDetectAnomalyJobsFilterResult(dict):
1906
- def __init__(__self__, *,
1907
- name: _builtins.str,
1908
- values: Sequence[_builtins.str],
1909
- regex: Optional[_builtins.bool] = None):
1910
- pulumi.set(__self__, "name", name)
1911
- pulumi.set(__self__, "values", values)
1912
- if regex is not None:
1913
- pulumi.set(__self__, "regex", regex)
1914
-
1915
- @_builtins.property
1916
- @pulumi.getter
1917
- def name(self) -> _builtins.str:
1918
- return pulumi.get(self, "name")
1919
-
1920
- @_builtins.property
1921
- @pulumi.getter
1922
- def values(self) -> Sequence[_builtins.str]:
1923
- return pulumi.get(self, "values")
1924
-
1925
- @_builtins.property
1926
- @pulumi.getter
1927
- def regex(self) -> Optional[_builtins.bool]:
1928
- return pulumi.get(self, "regex")
1929
-
1930
-
1931
- @pulumi.output_type
1932
- class GetDetectionDataAssetDataSourceDetailResult(dict):
1933
- def __init__(__self__, *,
1934
- atp_password_secret_id: _builtins.str,
1935
- atp_user_name: _builtins.str,
1936
- bucket: _builtins.str,
1937
- cwallet_file_secret_id: _builtins.str,
1938
- data_source_type: _builtins.str,
1939
- database_name: _builtins.str,
1940
- ewallet_file_secret_id: _builtins.str,
1941
- key_store_file_secret_id: _builtins.str,
1942
- measurement_name: _builtins.str,
1943
- namespace: _builtins.str,
1944
- object: _builtins.str,
1945
- ojdbc_file_secret_id: _builtins.str,
1946
- password_secret_id: _builtins.str,
1947
- table_name: _builtins.str,
1948
- tnsnames_file_secret_id: _builtins.str,
1949
- truststore_file_secret_id: _builtins.str,
1950
- url: _builtins.str,
1951
- user_name: _builtins.str,
1952
- version_specific_details: Sequence['outputs.GetDetectionDataAssetDataSourceDetailVersionSpecificDetailResult'],
1953
- wallet_password_secret_id: _builtins.str):
1954
- """
1955
- :param _builtins.str atp_password_secret_id: atp db password Secret Id
1956
- :param _builtins.str atp_user_name: atp db user name
1957
- :param _builtins.str bucket: Bucket Name for influx connection
1958
- :param _builtins.str cwallet_file_secret_id: OCID of the secret containing the containers certificates of ATP wallet
1959
- :param _builtins.str data_source_type: Data source type where actually data asset is being stored
1960
- :param _builtins.str database_name: DB Name for influx connection
1961
- :param _builtins.str ewallet_file_secret_id: OCID of the secret containing the PDB'S certificates of ATP wallet
1962
- :param _builtins.str key_store_file_secret_id: OCID of the secret containing Keystore.jks file of the ATP wallet
1963
- :param _builtins.str measurement_name: Measurement name for influx
1964
- :param _builtins.str namespace: Object storage namespace
1965
- :param _builtins.str object: File name
1966
- :param _builtins.str ojdbc_file_secret_id: OCID of the secret that contains jdbc properties file of ATP wallet
1967
- :param _builtins.str password_secret_id: Password Secret Id for the influx connection
1968
- :param _builtins.str table_name: atp database table name
1969
- :param _builtins.str tnsnames_file_secret_id: OCID of the secret that contains the tnsnames file of ATP wallet
1970
- :param _builtins.str truststore_file_secret_id: OCID of the secret containing truststore.jks file of the ATP wallet
1971
- :param _builtins.str url: public IP address and port to influx DB
1972
- :param _builtins.str user_name: Username for connection to Influx
1973
- :param Sequence['GetDetectionDataAssetDataSourceDetailVersionSpecificDetailArgs'] version_specific_details: Possible data sources
1974
- :param _builtins.str wallet_password_secret_id: wallet password Secret ID in String format
1975
- """
1976
- pulumi.set(__self__, "atp_password_secret_id", atp_password_secret_id)
1977
- pulumi.set(__self__, "atp_user_name", atp_user_name)
1978
- pulumi.set(__self__, "bucket", bucket)
1979
- pulumi.set(__self__, "cwallet_file_secret_id", cwallet_file_secret_id)
1980
- pulumi.set(__self__, "data_source_type", data_source_type)
1981
- pulumi.set(__self__, "database_name", database_name)
1982
- pulumi.set(__self__, "ewallet_file_secret_id", ewallet_file_secret_id)
1983
- pulumi.set(__self__, "key_store_file_secret_id", key_store_file_secret_id)
1984
- pulumi.set(__self__, "measurement_name", measurement_name)
1985
- pulumi.set(__self__, "namespace", namespace)
1986
- pulumi.set(__self__, "object", object)
1987
- pulumi.set(__self__, "ojdbc_file_secret_id", ojdbc_file_secret_id)
1988
- pulumi.set(__self__, "password_secret_id", password_secret_id)
1989
- pulumi.set(__self__, "table_name", table_name)
1990
- pulumi.set(__self__, "tnsnames_file_secret_id", tnsnames_file_secret_id)
1991
- pulumi.set(__self__, "truststore_file_secret_id", truststore_file_secret_id)
1992
- pulumi.set(__self__, "url", url)
1993
- pulumi.set(__self__, "user_name", user_name)
1994
- pulumi.set(__self__, "version_specific_details", version_specific_details)
1995
- pulumi.set(__self__, "wallet_password_secret_id", wallet_password_secret_id)
1996
-
1997
- @_builtins.property
1998
- @pulumi.getter(name="atpPasswordSecretId")
1999
- def atp_password_secret_id(self) -> _builtins.str:
2000
- """
2001
- atp db password Secret Id
2002
- """
2003
- return pulumi.get(self, "atp_password_secret_id")
2004
-
2005
- @_builtins.property
2006
- @pulumi.getter(name="atpUserName")
2007
- def atp_user_name(self) -> _builtins.str:
2008
- """
2009
- atp db user name
2010
- """
2011
- return pulumi.get(self, "atp_user_name")
2012
-
2013
- @_builtins.property
2014
- @pulumi.getter
2015
- def bucket(self) -> _builtins.str:
2016
- """
2017
- Bucket Name for influx connection
2018
- """
2019
- return pulumi.get(self, "bucket")
2020
-
2021
- @_builtins.property
2022
- @pulumi.getter(name="cwalletFileSecretId")
2023
- def cwallet_file_secret_id(self) -> _builtins.str:
2024
- """
2025
- OCID of the secret containing the containers certificates of ATP wallet
2026
- """
2027
- return pulumi.get(self, "cwallet_file_secret_id")
2028
-
2029
- @_builtins.property
2030
- @pulumi.getter(name="dataSourceType")
2031
- def data_source_type(self) -> _builtins.str:
2032
- """
2033
- Data source type where actually data asset is being stored
2034
- """
2035
- return pulumi.get(self, "data_source_type")
2036
-
2037
- @_builtins.property
2038
- @pulumi.getter(name="databaseName")
2039
- def database_name(self) -> _builtins.str:
2040
- """
2041
- DB Name for influx connection
2042
- """
2043
- return pulumi.get(self, "database_name")
2044
-
2045
- @_builtins.property
2046
- @pulumi.getter(name="ewalletFileSecretId")
2047
- def ewallet_file_secret_id(self) -> _builtins.str:
2048
- """
2049
- OCID of the secret containing the PDB'S certificates of ATP wallet
2050
- """
2051
- return pulumi.get(self, "ewallet_file_secret_id")
2052
-
2053
- @_builtins.property
2054
- @pulumi.getter(name="keyStoreFileSecretId")
2055
- def key_store_file_secret_id(self) -> _builtins.str:
2056
- """
2057
- OCID of the secret containing Keystore.jks file of the ATP wallet
2058
- """
2059
- return pulumi.get(self, "key_store_file_secret_id")
2060
-
2061
- @_builtins.property
2062
- @pulumi.getter(name="measurementName")
2063
- def measurement_name(self) -> _builtins.str:
2064
- """
2065
- Measurement name for influx
2066
- """
2067
- return pulumi.get(self, "measurement_name")
2068
-
2069
- @_builtins.property
2070
- @pulumi.getter
2071
- def namespace(self) -> _builtins.str:
2072
- """
2073
- Object storage namespace
2074
- """
2075
- return pulumi.get(self, "namespace")
2076
-
2077
- @_builtins.property
2078
- @pulumi.getter
2079
- def object(self) -> _builtins.str:
2080
- """
2081
- File name
2082
- """
2083
- return pulumi.get(self, "object")
2084
-
2085
- @_builtins.property
2086
- @pulumi.getter(name="ojdbcFileSecretId")
2087
- def ojdbc_file_secret_id(self) -> _builtins.str:
2088
- """
2089
- OCID of the secret that contains jdbc properties file of ATP wallet
2090
- """
2091
- return pulumi.get(self, "ojdbc_file_secret_id")
2092
-
2093
- @_builtins.property
2094
- @pulumi.getter(name="passwordSecretId")
2095
- def password_secret_id(self) -> _builtins.str:
2096
- """
2097
- Password Secret Id for the influx connection
2098
- """
2099
- return pulumi.get(self, "password_secret_id")
2100
-
2101
- @_builtins.property
2102
- @pulumi.getter(name="tableName")
2103
- def table_name(self) -> _builtins.str:
2104
- """
2105
- atp database table name
2106
- """
2107
- return pulumi.get(self, "table_name")
2108
-
2109
- @_builtins.property
2110
- @pulumi.getter(name="tnsnamesFileSecretId")
2111
- def tnsnames_file_secret_id(self) -> _builtins.str:
2112
- """
2113
- OCID of the secret that contains the tnsnames file of ATP wallet
2114
- """
2115
- return pulumi.get(self, "tnsnames_file_secret_id")
2116
-
2117
- @_builtins.property
2118
- @pulumi.getter(name="truststoreFileSecretId")
2119
- def truststore_file_secret_id(self) -> _builtins.str:
2120
- """
2121
- OCID of the secret containing truststore.jks file of the ATP wallet
2122
- """
2123
- return pulumi.get(self, "truststore_file_secret_id")
2124
-
2125
- @_builtins.property
2126
- @pulumi.getter
2127
- def url(self) -> _builtins.str:
2128
- """
2129
- public IP address and port to influx DB
2130
- """
2131
- return pulumi.get(self, "url")
2132
-
2133
- @_builtins.property
2134
- @pulumi.getter(name="userName")
2135
- def user_name(self) -> _builtins.str:
2136
- """
2137
- Username for connection to Influx
2138
- """
2139
- return pulumi.get(self, "user_name")
2140
-
2141
- @_builtins.property
2142
- @pulumi.getter(name="versionSpecificDetails")
2143
- def version_specific_details(self) -> Sequence['outputs.GetDetectionDataAssetDataSourceDetailVersionSpecificDetailResult']:
2144
- """
2145
- Possible data sources
2146
- """
2147
- return pulumi.get(self, "version_specific_details")
2148
-
2149
- @_builtins.property
2150
- @pulumi.getter(name="walletPasswordSecretId")
2151
- def wallet_password_secret_id(self) -> _builtins.str:
2152
- """
2153
- wallet password Secret ID in String format
2154
- """
2155
- return pulumi.get(self, "wallet_password_secret_id")
2156
-
2157
-
2158
- @pulumi.output_type
2159
- class GetDetectionDataAssetDataSourceDetailVersionSpecificDetailResult(dict):
2160
- def __init__(__self__, *,
2161
- bucket: _builtins.str,
2162
- database_name: _builtins.str,
2163
- influx_version: _builtins.str,
2164
- organization_name: _builtins.str,
2165
- retention_policy_name: _builtins.str):
2166
- """
2167
- :param _builtins.str bucket: Bucket Name for influx connection
2168
- :param _builtins.str database_name: DB Name for influx connection
2169
- :param _builtins.str influx_version: Data source type where actually data asset is being stored
2170
- :param _builtins.str organization_name: Org name for the influx db
2171
- :param _builtins.str retention_policy_name: retention policy is how long the bucket would last
2172
- """
2173
- pulumi.set(__self__, "bucket", bucket)
2174
- pulumi.set(__self__, "database_name", database_name)
2175
- pulumi.set(__self__, "influx_version", influx_version)
2176
- pulumi.set(__self__, "organization_name", organization_name)
2177
- pulumi.set(__self__, "retention_policy_name", retention_policy_name)
2178
-
2179
- @_builtins.property
2180
- @pulumi.getter
2181
- def bucket(self) -> _builtins.str:
2182
- """
2183
- Bucket Name for influx connection
2184
- """
2185
- return pulumi.get(self, "bucket")
2186
-
2187
- @_builtins.property
2188
- @pulumi.getter(name="databaseName")
2189
- def database_name(self) -> _builtins.str:
2190
- """
2191
- DB Name for influx connection
2192
- """
2193
- return pulumi.get(self, "database_name")
2194
-
2195
- @_builtins.property
2196
- @pulumi.getter(name="influxVersion")
2197
- def influx_version(self) -> _builtins.str:
2198
- """
2199
- Data source type where actually data asset is being stored
2200
- """
2201
- return pulumi.get(self, "influx_version")
2202
-
2203
- @_builtins.property
2204
- @pulumi.getter(name="organizationName")
2205
- def organization_name(self) -> _builtins.str:
2206
- """
2207
- Org name for the influx db
2208
- """
2209
- return pulumi.get(self, "organization_name")
2210
-
2211
- @_builtins.property
2212
- @pulumi.getter(name="retentionPolicyName")
2213
- def retention_policy_name(self) -> _builtins.str:
2214
- """
2215
- retention policy is how long the bucket would last
2216
- """
2217
- return pulumi.get(self, "retention_policy_name")
2218
-
2219
-
2220
- @pulumi.output_type
2221
- class GetDetectionDataAssetsDataAssetCollectionResult(dict):
2222
- def __init__(__self__, *,
2223
- items: Sequence['outputs.GetDetectionDataAssetsDataAssetCollectionItemResult']):
2224
- pulumi.set(__self__, "items", items)
2225
-
2226
- @_builtins.property
2227
- @pulumi.getter
2228
- def items(self) -> Sequence['outputs.GetDetectionDataAssetsDataAssetCollectionItemResult']:
2229
- return pulumi.get(self, "items")
2230
-
2231
-
2232
- @pulumi.output_type
2233
- class GetDetectionDataAssetsDataAssetCollectionItemResult(dict):
2234
- def __init__(__self__, *,
2235
- compartment_id: _builtins.str,
2236
- data_source_details: Sequence['outputs.GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailResult'],
2237
- defined_tags: Mapping[str, _builtins.str],
2238
- description: _builtins.str,
2239
- display_name: _builtins.str,
2240
- freeform_tags: Mapping[str, _builtins.str],
2241
- id: _builtins.str,
2242
- private_endpoint_id: _builtins.str,
2243
- project_id: _builtins.str,
2244
- state: _builtins.str,
2245
- system_tags: Mapping[str, _builtins.str],
2246
- time_created: _builtins.str,
2247
- time_updated: _builtins.str):
2248
- """
2249
- :param _builtins.str compartment_id: The ID of the compartment in which to list resources.
2250
- :param Sequence['GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailArgs'] data_source_details: Possible data sources
2251
- :param Mapping[str, _builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
2252
- :param _builtins.str description: A short description of the data asset.
2253
- :param _builtins.str display_name: A filter to return only resources that match the entire display name given.
2254
- :param Mapping[str, _builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
2255
- :param _builtins.str id: The Unique Oracle ID (OCID) that is immutable on creation.
2256
- :param _builtins.str private_endpoint_id: OCID of Private Endpoint.
2257
- :param _builtins.str project_id: The ID of the project for which to list the objects.
2258
- :param _builtins.str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
2259
- :param Mapping[str, _builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
2260
- :param _builtins.str time_created: The time the the DataAsset was created. An RFC3339 formatted datetime string
2261
- :param _builtins.str time_updated: The time the the DataAsset was updated. An RFC3339 formatted datetime string
2262
- """
2263
- pulumi.set(__self__, "compartment_id", compartment_id)
2264
- pulumi.set(__self__, "data_source_details", data_source_details)
2265
- pulumi.set(__self__, "defined_tags", defined_tags)
2266
- pulumi.set(__self__, "description", description)
2267
- pulumi.set(__self__, "display_name", display_name)
2268
- pulumi.set(__self__, "freeform_tags", freeform_tags)
2269
- pulumi.set(__self__, "id", id)
2270
- pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
2271
- pulumi.set(__self__, "project_id", project_id)
2272
- pulumi.set(__self__, "state", state)
2273
- pulumi.set(__self__, "system_tags", system_tags)
2274
- pulumi.set(__self__, "time_created", time_created)
2275
- pulumi.set(__self__, "time_updated", time_updated)
2276
-
2277
- @_builtins.property
2278
- @pulumi.getter(name="compartmentId")
2279
- def compartment_id(self) -> _builtins.str:
2280
- """
2281
- The ID of the compartment in which to list resources.
2282
- """
2283
- return pulumi.get(self, "compartment_id")
2284
-
2285
- @_builtins.property
2286
- @pulumi.getter(name="dataSourceDetails")
2287
- def data_source_details(self) -> Sequence['outputs.GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailResult']:
2288
- """
2289
- Possible data sources
2290
- """
2291
- return pulumi.get(self, "data_source_details")
2292
-
2293
- @_builtins.property
2294
- @pulumi.getter(name="definedTags")
2295
- def defined_tags(self) -> Mapping[str, _builtins.str]:
2296
- """
2297
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
2298
- """
2299
- return pulumi.get(self, "defined_tags")
2300
-
2301
- @_builtins.property
2302
- @pulumi.getter
2303
- def description(self) -> _builtins.str:
2304
- """
2305
- A short description of the data asset.
2306
- """
2307
- return pulumi.get(self, "description")
2308
-
2309
- @_builtins.property
2310
- @pulumi.getter(name="displayName")
2311
- def display_name(self) -> _builtins.str:
2312
- """
2313
- A filter to return only resources that match the entire display name given.
2314
- """
2315
- return pulumi.get(self, "display_name")
2316
-
2317
- @_builtins.property
2318
- @pulumi.getter(name="freeformTags")
2319
- def freeform_tags(self) -> Mapping[str, _builtins.str]:
2320
- """
2321
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
2322
- """
2323
- return pulumi.get(self, "freeform_tags")
2324
-
2325
- @_builtins.property
2326
- @pulumi.getter
2327
- def id(self) -> _builtins.str:
2328
- """
2329
- The Unique Oracle ID (OCID) that is immutable on creation.
2330
- """
2331
- return pulumi.get(self, "id")
2332
-
2333
- @_builtins.property
2334
- @pulumi.getter(name="privateEndpointId")
2335
- def private_endpoint_id(self) -> _builtins.str:
2336
- """
2337
- OCID of Private Endpoint.
2338
- """
2339
- return pulumi.get(self, "private_endpoint_id")
2340
-
2341
- @_builtins.property
2342
- @pulumi.getter(name="projectId")
2343
- def project_id(self) -> _builtins.str:
2344
- """
2345
- The ID of the project for which to list the objects.
2346
- """
2347
- return pulumi.get(self, "project_id")
2348
-
2349
- @_builtins.property
2350
- @pulumi.getter
2351
- def state(self) -> _builtins.str:
2352
- """
2353
- <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
2354
- """
2355
- return pulumi.get(self, "state")
2356
-
2357
- @_builtins.property
2358
- @pulumi.getter(name="systemTags")
2359
- def system_tags(self) -> Mapping[str, _builtins.str]:
2360
- """
2361
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
2362
- """
2363
- return pulumi.get(self, "system_tags")
2364
-
2365
- @_builtins.property
2366
- @pulumi.getter(name="timeCreated")
2367
- def time_created(self) -> _builtins.str:
2368
- """
2369
- The time the the DataAsset was created. An RFC3339 formatted datetime string
2370
- """
2371
- return pulumi.get(self, "time_created")
2372
-
2373
- @_builtins.property
2374
- @pulumi.getter(name="timeUpdated")
2375
- def time_updated(self) -> _builtins.str:
2376
- """
2377
- The time the the DataAsset was updated. An RFC3339 formatted datetime string
2378
- """
2379
- return pulumi.get(self, "time_updated")
2380
-
2381
-
2382
- @pulumi.output_type
2383
- class GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailResult(dict):
2384
- def __init__(__self__, *,
2385
- atp_password_secret_id: _builtins.str,
2386
- atp_user_name: _builtins.str,
2387
- bucket: _builtins.str,
2388
- cwallet_file_secret_id: _builtins.str,
2389
- data_source_type: _builtins.str,
2390
- database_name: _builtins.str,
2391
- ewallet_file_secret_id: _builtins.str,
2392
- key_store_file_secret_id: _builtins.str,
2393
- measurement_name: _builtins.str,
2394
- namespace: _builtins.str,
2395
- object: _builtins.str,
2396
- ojdbc_file_secret_id: _builtins.str,
2397
- password_secret_id: _builtins.str,
2398
- table_name: _builtins.str,
2399
- tnsnames_file_secret_id: _builtins.str,
2400
- truststore_file_secret_id: _builtins.str,
2401
- url: _builtins.str,
2402
- user_name: _builtins.str,
2403
- version_specific_details: Sequence['outputs.GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailVersionSpecificDetailResult'],
2404
- wallet_password_secret_id: _builtins.str):
2405
- """
2406
- :param _builtins.str atp_password_secret_id: atp db password Secret Id
2407
- :param _builtins.str atp_user_name: atp db user name
2408
- :param _builtins.str bucket: Bucket Name for influx connection
2409
- :param _builtins.str cwallet_file_secret_id: OCID of the secret containing the containers certificates of ATP wallet
2410
- :param _builtins.str data_source_type: Data source type where actually data asset is being stored
2411
- :param _builtins.str database_name: DB Name for influx connection
2412
- :param _builtins.str ewallet_file_secret_id: OCID of the secret containing the PDB'S certificates of ATP wallet
2413
- :param _builtins.str key_store_file_secret_id: OCID of the secret containing Keystore.jks file of the ATP wallet
2414
- :param _builtins.str measurement_name: Measurement name for influx
2415
- :param _builtins.str namespace: Object storage namespace
2416
- :param _builtins.str object: File name
2417
- :param _builtins.str ojdbc_file_secret_id: OCID of the secret that contains jdbc properties file of ATP wallet
2418
- :param _builtins.str password_secret_id: Password Secret Id for the influx connection
2419
- :param _builtins.str table_name: atp database table name
2420
- :param _builtins.str tnsnames_file_secret_id: OCID of the secret that contains the tnsnames file of ATP wallet
2421
- :param _builtins.str truststore_file_secret_id: OCID of the secret containing truststore.jks file of the ATP wallet
2422
- :param _builtins.str url: public IP address and port to influx DB
2423
- :param _builtins.str user_name: Username for connection to Influx
2424
- :param Sequence['GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailVersionSpecificDetailArgs'] version_specific_details: Possible data sources
2425
- :param _builtins.str wallet_password_secret_id: wallet password Secret ID in String format
2426
- """
2427
- pulumi.set(__self__, "atp_password_secret_id", atp_password_secret_id)
2428
- pulumi.set(__self__, "atp_user_name", atp_user_name)
2429
- pulumi.set(__self__, "bucket", bucket)
2430
- pulumi.set(__self__, "cwallet_file_secret_id", cwallet_file_secret_id)
2431
- pulumi.set(__self__, "data_source_type", data_source_type)
2432
- pulumi.set(__self__, "database_name", database_name)
2433
- pulumi.set(__self__, "ewallet_file_secret_id", ewallet_file_secret_id)
2434
- pulumi.set(__self__, "key_store_file_secret_id", key_store_file_secret_id)
2435
- pulumi.set(__self__, "measurement_name", measurement_name)
2436
- pulumi.set(__self__, "namespace", namespace)
2437
- pulumi.set(__self__, "object", object)
2438
- pulumi.set(__self__, "ojdbc_file_secret_id", ojdbc_file_secret_id)
2439
- pulumi.set(__self__, "password_secret_id", password_secret_id)
2440
- pulumi.set(__self__, "table_name", table_name)
2441
- pulumi.set(__self__, "tnsnames_file_secret_id", tnsnames_file_secret_id)
2442
- pulumi.set(__self__, "truststore_file_secret_id", truststore_file_secret_id)
2443
- pulumi.set(__self__, "url", url)
2444
- pulumi.set(__self__, "user_name", user_name)
2445
- pulumi.set(__self__, "version_specific_details", version_specific_details)
2446
- pulumi.set(__self__, "wallet_password_secret_id", wallet_password_secret_id)
2447
-
2448
- @_builtins.property
2449
- @pulumi.getter(name="atpPasswordSecretId")
2450
- def atp_password_secret_id(self) -> _builtins.str:
2451
- """
2452
- atp db password Secret Id
2453
- """
2454
- return pulumi.get(self, "atp_password_secret_id")
2455
-
2456
- @_builtins.property
2457
- @pulumi.getter(name="atpUserName")
2458
- def atp_user_name(self) -> _builtins.str:
2459
- """
2460
- atp db user name
2461
- """
2462
- return pulumi.get(self, "atp_user_name")
2463
-
2464
- @_builtins.property
2465
- @pulumi.getter
2466
- def bucket(self) -> _builtins.str:
2467
- """
2468
- Bucket Name for influx connection
2469
- """
2470
- return pulumi.get(self, "bucket")
2471
-
2472
- @_builtins.property
2473
- @pulumi.getter(name="cwalletFileSecretId")
2474
- def cwallet_file_secret_id(self) -> _builtins.str:
2475
- """
2476
- OCID of the secret containing the containers certificates of ATP wallet
2477
- """
2478
- return pulumi.get(self, "cwallet_file_secret_id")
2479
-
2480
- @_builtins.property
2481
- @pulumi.getter(name="dataSourceType")
2482
- def data_source_type(self) -> _builtins.str:
2483
- """
2484
- Data source type where actually data asset is being stored
2485
- """
2486
- return pulumi.get(self, "data_source_type")
2487
-
2488
- @_builtins.property
2489
- @pulumi.getter(name="databaseName")
2490
- def database_name(self) -> _builtins.str:
2491
- """
2492
- DB Name for influx connection
2493
- """
2494
- return pulumi.get(self, "database_name")
2495
-
2496
- @_builtins.property
2497
- @pulumi.getter(name="ewalletFileSecretId")
2498
- def ewallet_file_secret_id(self) -> _builtins.str:
2499
- """
2500
- OCID of the secret containing the PDB'S certificates of ATP wallet
2501
- """
2502
- return pulumi.get(self, "ewallet_file_secret_id")
2503
-
2504
- @_builtins.property
2505
- @pulumi.getter(name="keyStoreFileSecretId")
2506
- def key_store_file_secret_id(self) -> _builtins.str:
2507
- """
2508
- OCID of the secret containing Keystore.jks file of the ATP wallet
2509
- """
2510
- return pulumi.get(self, "key_store_file_secret_id")
2511
-
2512
- @_builtins.property
2513
- @pulumi.getter(name="measurementName")
2514
- def measurement_name(self) -> _builtins.str:
2515
- """
2516
- Measurement name for influx
2517
- """
2518
- return pulumi.get(self, "measurement_name")
2519
-
2520
- @_builtins.property
2521
- @pulumi.getter
2522
- def namespace(self) -> _builtins.str:
2523
- """
2524
- Object storage namespace
2525
- """
2526
- return pulumi.get(self, "namespace")
2527
-
2528
- @_builtins.property
2529
- @pulumi.getter
2530
- def object(self) -> _builtins.str:
2531
- """
2532
- File name
2533
- """
2534
- return pulumi.get(self, "object")
2535
-
2536
- @_builtins.property
2537
- @pulumi.getter(name="ojdbcFileSecretId")
2538
- def ojdbc_file_secret_id(self) -> _builtins.str:
2539
- """
2540
- OCID of the secret that contains jdbc properties file of ATP wallet
2541
- """
2542
- return pulumi.get(self, "ojdbc_file_secret_id")
2543
-
2544
- @_builtins.property
2545
- @pulumi.getter(name="passwordSecretId")
2546
- def password_secret_id(self) -> _builtins.str:
2547
- """
2548
- Password Secret Id for the influx connection
2549
- """
2550
- return pulumi.get(self, "password_secret_id")
2551
-
2552
- @_builtins.property
2553
- @pulumi.getter(name="tableName")
2554
- def table_name(self) -> _builtins.str:
2555
- """
2556
- atp database table name
2557
- """
2558
- return pulumi.get(self, "table_name")
2559
-
2560
- @_builtins.property
2561
- @pulumi.getter(name="tnsnamesFileSecretId")
2562
- def tnsnames_file_secret_id(self) -> _builtins.str:
2563
- """
2564
- OCID of the secret that contains the tnsnames file of ATP wallet
2565
- """
2566
- return pulumi.get(self, "tnsnames_file_secret_id")
2567
-
2568
- @_builtins.property
2569
- @pulumi.getter(name="truststoreFileSecretId")
2570
- def truststore_file_secret_id(self) -> _builtins.str:
2571
- """
2572
- OCID of the secret containing truststore.jks file of the ATP wallet
2573
- """
2574
- return pulumi.get(self, "truststore_file_secret_id")
2575
-
2576
- @_builtins.property
2577
- @pulumi.getter
2578
- def url(self) -> _builtins.str:
2579
- """
2580
- public IP address and port to influx DB
2581
- """
2582
- return pulumi.get(self, "url")
2583
-
2584
- @_builtins.property
2585
- @pulumi.getter(name="userName")
2586
- def user_name(self) -> _builtins.str:
2587
- """
2588
- Username for connection to Influx
2589
- """
2590
- return pulumi.get(self, "user_name")
2591
-
2592
- @_builtins.property
2593
- @pulumi.getter(name="versionSpecificDetails")
2594
- def version_specific_details(self) -> Sequence['outputs.GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailVersionSpecificDetailResult']:
2595
- """
2596
- Possible data sources
2597
- """
2598
- return pulumi.get(self, "version_specific_details")
2599
-
2600
- @_builtins.property
2601
- @pulumi.getter(name="walletPasswordSecretId")
2602
- def wallet_password_secret_id(self) -> _builtins.str:
2603
- """
2604
- wallet password Secret ID in String format
2605
- """
2606
- return pulumi.get(self, "wallet_password_secret_id")
2607
-
2608
-
2609
- @pulumi.output_type
2610
- class GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailVersionSpecificDetailResult(dict):
2611
- def __init__(__self__, *,
2612
- bucket: _builtins.str,
2613
- database_name: _builtins.str,
2614
- influx_version: _builtins.str,
2615
- organization_name: _builtins.str,
2616
- retention_policy_name: _builtins.str):
2617
- """
2618
- :param _builtins.str bucket: Bucket Name for influx connection
2619
- :param _builtins.str database_name: DB Name for influx connection
2620
- :param _builtins.str influx_version: Data source type where actually data asset is being stored
2621
- :param _builtins.str organization_name: Org name for the influx db
2622
- :param _builtins.str retention_policy_name: retention policy is how long the bucket would last
2623
- """
2624
- pulumi.set(__self__, "bucket", bucket)
2625
- pulumi.set(__self__, "database_name", database_name)
2626
- pulumi.set(__self__, "influx_version", influx_version)
2627
- pulumi.set(__self__, "organization_name", organization_name)
2628
- pulumi.set(__self__, "retention_policy_name", retention_policy_name)
2629
-
2630
- @_builtins.property
2631
- @pulumi.getter
2632
- def bucket(self) -> _builtins.str:
2633
- """
2634
- Bucket Name for influx connection
2635
- """
2636
- return pulumi.get(self, "bucket")
2637
-
2638
- @_builtins.property
2639
- @pulumi.getter(name="databaseName")
2640
- def database_name(self) -> _builtins.str:
2641
- """
2642
- DB Name for influx connection
2643
- """
2644
- return pulumi.get(self, "database_name")
2645
-
2646
- @_builtins.property
2647
- @pulumi.getter(name="influxVersion")
2648
- def influx_version(self) -> _builtins.str:
2649
- """
2650
- Data source type where actually data asset is being stored
2651
- """
2652
- return pulumi.get(self, "influx_version")
2653
-
2654
- @_builtins.property
2655
- @pulumi.getter(name="organizationName")
2656
- def organization_name(self) -> _builtins.str:
2657
- """
2658
- Org name for the influx db
2659
- """
2660
- return pulumi.get(self, "organization_name")
2661
-
2662
- @_builtins.property
2663
- @pulumi.getter(name="retentionPolicyName")
2664
- def retention_policy_name(self) -> _builtins.str:
2665
- """
2666
- retention policy is how long the bucket would last
2667
- """
2668
- return pulumi.get(self, "retention_policy_name")
2669
-
2670
-
2671
- @pulumi.output_type
2672
- class GetDetectionDataAssetsFilterResult(dict):
2673
- def __init__(__self__, *,
2674
- name: _builtins.str,
2675
- values: Sequence[_builtins.str],
2676
- regex: Optional[_builtins.bool] = None):
2677
- pulumi.set(__self__, "name", name)
2678
- pulumi.set(__self__, "values", values)
2679
- if regex is not None:
2680
- pulumi.set(__self__, "regex", regex)
2681
-
2682
- @_builtins.property
2683
- @pulumi.getter
2684
- def name(self) -> _builtins.str:
2685
- return pulumi.get(self, "name")
2686
-
2687
- @_builtins.property
2688
- @pulumi.getter
2689
- def values(self) -> Sequence[_builtins.str]:
2690
- return pulumi.get(self, "values")
2691
-
2692
- @_builtins.property
2693
- @pulumi.getter
2694
- def regex(self) -> Optional[_builtins.bool]:
2695
- return pulumi.get(self, "regex")
2696
-
2697
-
2698
- @pulumi.output_type
2699
- class GetDetectionModelModelTrainingDetailResult(dict):
2700
- def __init__(__self__, *,
2701
- algorithm_hint: _builtins.str,
2702
- data_asset_ids: Sequence[_builtins.str],
2703
- target_fap: _builtins.float,
2704
- training_fraction: _builtins.float,
2705
- window_size: _builtins.int):
2706
- """
2707
- :param _builtins.str algorithm_hint: User can choose specific algorithm for training.
2708
- :param Sequence[_builtins.str] data_asset_ids: The list of OCIDs of the data assets to train the model. The dataAssets have to be in the same project where the ai model would reside.
2709
- :param _builtins.float target_fap: A target model accuracy metric user provides as their requirement
2710
- :param _builtins.float training_fraction: Fraction of total data that is used for training the model. The remaining is used for validation of the model.
2711
- :param _builtins.int window_size: Window size defined during training or deduced by the algorithm.
2712
- """
2713
- pulumi.set(__self__, "algorithm_hint", algorithm_hint)
2714
- pulumi.set(__self__, "data_asset_ids", data_asset_ids)
2715
- pulumi.set(__self__, "target_fap", target_fap)
2716
- pulumi.set(__self__, "training_fraction", training_fraction)
2717
- pulumi.set(__self__, "window_size", window_size)
2718
-
2719
- @_builtins.property
2720
- @pulumi.getter(name="algorithmHint")
2721
- def algorithm_hint(self) -> _builtins.str:
2722
- """
2723
- User can choose specific algorithm for training.
2724
- """
2725
- return pulumi.get(self, "algorithm_hint")
2726
-
2727
- @_builtins.property
2728
- @pulumi.getter(name="dataAssetIds")
2729
- def data_asset_ids(self) -> Sequence[_builtins.str]:
2730
- """
2731
- The list of OCIDs of the data assets to train the model. The dataAssets have to be in the same project where the ai model would reside.
2732
- """
2733
- return pulumi.get(self, "data_asset_ids")
2734
-
2735
- @_builtins.property
2736
- @pulumi.getter(name="targetFap")
2737
- def target_fap(self) -> _builtins.float:
2738
- """
2739
- A target model accuracy metric user provides as their requirement
2740
- """
2741
- return pulumi.get(self, "target_fap")
2742
-
2743
- @_builtins.property
2744
- @pulumi.getter(name="trainingFraction")
2745
- def training_fraction(self) -> _builtins.float:
2746
- """
2747
- Fraction of total data that is used for training the model. The remaining is used for validation of the model.
2748
- """
2749
- return pulumi.get(self, "training_fraction")
2750
-
2751
- @_builtins.property
2752
- @pulumi.getter(name="windowSize")
2753
- def window_size(self) -> _builtins.int:
2754
- """
2755
- Window size defined during training or deduced by the algorithm.
2756
- """
2757
- return pulumi.get(self, "window_size")
2758
-
2759
-
2760
- @pulumi.output_type
2761
- class GetDetectionModelModelTrainingResultResult(dict):
2762
- def __init__(__self__, *,
2763
- fap: _builtins.float,
2764
- is_training_goal_achieved: _builtins.bool,
2765
- mae: _builtins.float,
2766
- max_inference_sync_rows: _builtins.int,
2767
- multivariate_fap: _builtins.float,
2768
- rmse: _builtins.float,
2769
- row_reduction_details: Sequence['outputs.GetDetectionModelModelTrainingResultRowReductionDetailResult'],
2770
- signal_details: Sequence['outputs.GetDetectionModelModelTrainingResultSignalDetailResult'],
2771
- warning: _builtins.str,
2772
- window_size: _builtins.int):
2773
- """
2774
- :param _builtins.float fap: Accuracy metric for a signal.
2775
- :param _builtins.bool is_training_goal_achieved: A boolean value to indicate if train goal/targetFap is achieved for trained model
2776
- :param _builtins.float multivariate_fap: The model accuracy metric on timestamp level.
2777
- :param Sequence['GetDetectionModelModelTrainingResultRowReductionDetailArgs'] row_reduction_details: Information regarding how/what row reduction methods will be applied. If this property is not present or is null, then it means row reduction is not applied.
2778
- :param Sequence['GetDetectionModelModelTrainingResultSignalDetailArgs'] signal_details: The list of signal details.
2779
- :param _builtins.str warning: A warning message to explain the reason when targetFap cannot be achieved for trained model
2780
- :param _builtins.int window_size: Window size defined during training or deduced by the algorithm.
2781
- """
2782
- pulumi.set(__self__, "fap", fap)
2783
- pulumi.set(__self__, "is_training_goal_achieved", is_training_goal_achieved)
2784
- pulumi.set(__self__, "mae", mae)
2785
- pulumi.set(__self__, "max_inference_sync_rows", max_inference_sync_rows)
2786
- pulumi.set(__self__, "multivariate_fap", multivariate_fap)
2787
- pulumi.set(__self__, "rmse", rmse)
2788
- pulumi.set(__self__, "row_reduction_details", row_reduction_details)
2789
- pulumi.set(__self__, "signal_details", signal_details)
2790
- pulumi.set(__self__, "warning", warning)
2791
- pulumi.set(__self__, "window_size", window_size)
2792
-
2793
- @_builtins.property
2794
- @pulumi.getter
2795
- def fap(self) -> _builtins.float:
2796
- """
2797
- Accuracy metric for a signal.
2798
- """
2799
- return pulumi.get(self, "fap")
2800
-
2801
- @_builtins.property
2802
- @pulumi.getter(name="isTrainingGoalAchieved")
2803
- def is_training_goal_achieved(self) -> _builtins.bool:
2804
- """
2805
- A boolean value to indicate if train goal/targetFap is achieved for trained model
2806
- """
2807
- return pulumi.get(self, "is_training_goal_achieved")
2808
-
2809
- @_builtins.property
2810
- @pulumi.getter
2811
- def mae(self) -> _builtins.float:
2812
- return pulumi.get(self, "mae")
2813
-
2814
- @_builtins.property
2815
- @pulumi.getter(name="maxInferenceSyncRows")
2816
- def max_inference_sync_rows(self) -> _builtins.int:
2817
- return pulumi.get(self, "max_inference_sync_rows")
2818
-
2819
- @_builtins.property
2820
- @pulumi.getter(name="multivariateFap")
2821
- def multivariate_fap(self) -> _builtins.float:
2822
- """
2823
- The model accuracy metric on timestamp level.
2824
- """
2825
- return pulumi.get(self, "multivariate_fap")
2826
-
2827
- @_builtins.property
2828
- @pulumi.getter
2829
- def rmse(self) -> _builtins.float:
2830
- return pulumi.get(self, "rmse")
2831
-
2832
- @_builtins.property
2833
- @pulumi.getter(name="rowReductionDetails")
2834
- def row_reduction_details(self) -> Sequence['outputs.GetDetectionModelModelTrainingResultRowReductionDetailResult']:
2835
- """
2836
- Information regarding how/what row reduction methods will be applied. If this property is not present or is null, then it means row reduction is not applied.
2837
- """
2838
- return pulumi.get(self, "row_reduction_details")
2839
-
2840
- @_builtins.property
2841
- @pulumi.getter(name="signalDetails")
2842
- def signal_details(self) -> Sequence['outputs.GetDetectionModelModelTrainingResultSignalDetailResult']:
2843
- """
2844
- The list of signal details.
2845
- """
2846
- return pulumi.get(self, "signal_details")
2847
-
2848
- @_builtins.property
2849
- @pulumi.getter
2850
- def warning(self) -> _builtins.str:
2851
- """
2852
- A warning message to explain the reason when targetFap cannot be achieved for trained model
2853
- """
2854
- return pulumi.get(self, "warning")
2855
-
2856
- @_builtins.property
2857
- @pulumi.getter(name="windowSize")
2858
- def window_size(self) -> _builtins.int:
2859
- """
2860
- Window size defined during training or deduced by the algorithm.
2861
- """
2862
- return pulumi.get(self, "window_size")
2863
-
2864
-
2865
- @pulumi.output_type
2866
- class GetDetectionModelModelTrainingResultRowReductionDetailResult(dict):
2867
- def __init__(__self__, *,
2868
- is_reduction_enabled: _builtins.bool,
2869
- reduction_method: _builtins.str,
2870
- reduction_percentage: _builtins.float):
2871
- """
2872
- :param _builtins.bool is_reduction_enabled: A boolean value to indicate if row reduction is applied
2873
- :param _builtins.str reduction_method: Method for row reduction:
2874
- * DELETE_ROW - delete rows with equal intervals
2875
- * AVERAGE_ROW - average multiple rows to one row
2876
- :param _builtins.float reduction_percentage: A percentage to reduce data size down to on top of original data
2877
- """
2878
- pulumi.set(__self__, "is_reduction_enabled", is_reduction_enabled)
2879
- pulumi.set(__self__, "reduction_method", reduction_method)
2880
- pulumi.set(__self__, "reduction_percentage", reduction_percentage)
2881
-
2882
- @_builtins.property
2883
- @pulumi.getter(name="isReductionEnabled")
2884
- def is_reduction_enabled(self) -> _builtins.bool:
2885
- """
2886
- A boolean value to indicate if row reduction is applied
2887
- """
2888
- return pulumi.get(self, "is_reduction_enabled")
2889
-
2890
- @_builtins.property
2891
- @pulumi.getter(name="reductionMethod")
2892
- def reduction_method(self) -> _builtins.str:
2893
- """
2894
- Method for row reduction:
2895
- * DELETE_ROW - delete rows with equal intervals
2896
- * AVERAGE_ROW - average multiple rows to one row
2897
- """
2898
- return pulumi.get(self, "reduction_method")
2899
-
2900
- @_builtins.property
2901
- @pulumi.getter(name="reductionPercentage")
2902
- def reduction_percentage(self) -> _builtins.float:
2903
- """
2904
- A percentage to reduce data size down to on top of original data
2905
- """
2906
- return pulumi.get(self, "reduction_percentage")
2907
-
2908
-
2909
- @pulumi.output_type
2910
- class GetDetectionModelModelTrainingResultSignalDetailResult(dict):
2911
- def __init__(__self__, *,
2912
- details: _builtins.str,
2913
- fap: _builtins.float,
2914
- is_quantized: _builtins.bool,
2915
- max: _builtins.float,
2916
- min: _builtins.float,
2917
- mvi_ratio: _builtins.float,
2918
- signal_name: _builtins.str,
2919
- status: _builtins.str,
2920
- std: _builtins.float):
2921
- """
2922
- :param _builtins.str details: detailed information for a signal.
2923
- :param _builtins.float fap: Accuracy metric for a signal.
2924
- :param _builtins.bool is_quantized: A boolean value to indicate if a signal is quantized or not.
2925
- :param _builtins.float max: Max value within a signal.
2926
- :param _builtins.float min: Min value within a signal.
2927
- :param _builtins.float mvi_ratio: The ratio of missing values in a signal filled/imputed by the IDP algorithm.
2928
- :param _builtins.str signal_name: The name of a signal.
2929
- :param _builtins.str status: Status of the signal:
2930
- * ACCEPTED - the signal is used for training the model
2931
- * DROPPED - the signal does not meet requirement, and is dropped before training the model.
2932
- * OTHER - placeholder for other status
2933
- :param _builtins.float std: Standard deviation of values within a signal.
2934
- """
2935
- pulumi.set(__self__, "details", details)
2936
- pulumi.set(__self__, "fap", fap)
2937
- pulumi.set(__self__, "is_quantized", is_quantized)
2938
- pulumi.set(__self__, "max", max)
2939
- pulumi.set(__self__, "min", min)
2940
- pulumi.set(__self__, "mvi_ratio", mvi_ratio)
2941
- pulumi.set(__self__, "signal_name", signal_name)
2942
- pulumi.set(__self__, "status", status)
2943
- pulumi.set(__self__, "std", std)
2944
-
2945
- @_builtins.property
2946
- @pulumi.getter
2947
- def details(self) -> _builtins.str:
2948
- """
2949
- detailed information for a signal.
2950
- """
2951
- return pulumi.get(self, "details")
2952
-
2953
- @_builtins.property
2954
- @pulumi.getter
2955
- def fap(self) -> _builtins.float:
2956
- """
2957
- Accuracy metric for a signal.
2958
- """
2959
- return pulumi.get(self, "fap")
2960
-
2961
- @_builtins.property
2962
- @pulumi.getter(name="isQuantized")
2963
- def is_quantized(self) -> _builtins.bool:
2964
- """
2965
- A boolean value to indicate if a signal is quantized or not.
2966
- """
2967
- return pulumi.get(self, "is_quantized")
2968
-
2969
- @_builtins.property
2970
- @pulumi.getter
2971
- def max(self) -> _builtins.float:
2972
- """
2973
- Max value within a signal.
2974
- """
2975
- return pulumi.get(self, "max")
2976
-
2977
- @_builtins.property
2978
- @pulumi.getter
2979
- def min(self) -> _builtins.float:
2980
- """
2981
- Min value within a signal.
2982
- """
2983
- return pulumi.get(self, "min")
2984
-
2985
- @_builtins.property
2986
- @pulumi.getter(name="mviRatio")
2987
- def mvi_ratio(self) -> _builtins.float:
2988
- """
2989
- The ratio of missing values in a signal filled/imputed by the IDP algorithm.
2990
- """
2991
- return pulumi.get(self, "mvi_ratio")
2992
-
2993
- @_builtins.property
2994
- @pulumi.getter(name="signalName")
2995
- def signal_name(self) -> _builtins.str:
2996
- """
2997
- The name of a signal.
2998
- """
2999
- return pulumi.get(self, "signal_name")
3000
-
3001
- @_builtins.property
3002
- @pulumi.getter
3003
- def status(self) -> _builtins.str:
3004
- """
3005
- Status of the signal:
3006
- * ACCEPTED - the signal is used for training the model
3007
- * DROPPED - the signal does not meet requirement, and is dropped before training the model.
3008
- * OTHER - placeholder for other status
3009
- """
3010
- return pulumi.get(self, "status")
3011
-
3012
- @_builtins.property
3013
- @pulumi.getter
3014
- def std(self) -> _builtins.float:
3015
- """
3016
- Standard deviation of values within a signal.
3017
- """
3018
- return pulumi.get(self, "std")
3019
-
3020
-
3021
- @pulumi.output_type
3022
- class GetDetectionModelsFilterResult(dict):
3023
- def __init__(__self__, *,
3024
- name: _builtins.str,
3025
- values: Sequence[_builtins.str],
3026
- regex: Optional[_builtins.bool] = None):
3027
- pulumi.set(__self__, "name", name)
3028
- pulumi.set(__self__, "values", values)
3029
- if regex is not None:
3030
- pulumi.set(__self__, "regex", regex)
3031
-
3032
- @_builtins.property
3033
- @pulumi.getter
3034
- def name(self) -> _builtins.str:
3035
- return pulumi.get(self, "name")
3036
-
3037
- @_builtins.property
3038
- @pulumi.getter
3039
- def values(self) -> Sequence[_builtins.str]:
3040
- return pulumi.get(self, "values")
3041
-
3042
- @_builtins.property
3043
- @pulumi.getter
3044
- def regex(self) -> Optional[_builtins.bool]:
3045
- return pulumi.get(self, "regex")
3046
-
3047
-
3048
- @pulumi.output_type
3049
- class GetDetectionModelsModelCollectionResult(dict):
3050
- def __init__(__self__, *,
3051
- items: Sequence['outputs.GetDetectionModelsModelCollectionItemResult']):
3052
- pulumi.set(__self__, "items", items)
3053
-
3054
- @_builtins.property
3055
- @pulumi.getter
3056
- def items(self) -> Sequence['outputs.GetDetectionModelsModelCollectionItemResult']:
3057
- return pulumi.get(self, "items")
3058
-
3059
-
3060
- @pulumi.output_type
3061
- class GetDetectionModelsModelCollectionItemResult(dict):
3062
- def __init__(__self__, *,
3063
- compartment_id: _builtins.str,
3064
- defined_tags: Mapping[str, _builtins.str],
3065
- description: _builtins.str,
3066
- display_name: _builtins.str,
3067
- freeform_tags: Mapping[str, _builtins.str],
3068
- id: _builtins.str,
3069
- lifecycle_details: _builtins.str,
3070
- model_training_details: Sequence['outputs.GetDetectionModelsModelCollectionItemModelTrainingDetailResult'],
3071
- model_training_results: Sequence['outputs.GetDetectionModelsModelCollectionItemModelTrainingResultResult'],
3072
- project_id: _builtins.str,
3073
- state: _builtins.str,
3074
- system_tags: Mapping[str, _builtins.str],
3075
- time_created: _builtins.str,
3076
- time_updated: _builtins.str):
3077
- """
3078
- :param _builtins.str compartment_id: The ID of the compartment in which to list resources.
3079
- :param Mapping[str, _builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
3080
- :param _builtins.str description: A short description of the Model.
3081
- :param _builtins.str display_name: A filter to return only resources that match the entire display name given.
3082
- :param Mapping[str, _builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
3083
- :param _builtins.str id: The OCID of the model that is immutable on creation.
3084
- :param _builtins.str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
3085
- :param Sequence['GetDetectionModelsModelCollectionItemModelTrainingDetailArgs'] model_training_details: Specifies the details of the MSET model during the create call.
3086
- :param Sequence['GetDetectionModelsModelCollectionItemModelTrainingResultArgs'] model_training_results: Specifies the details for an Anomaly Detection model trained with MSET.
3087
- :param _builtins.str project_id: The ID of the project for which to list the objects.
3088
- :param _builtins.str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
3089
- :param Mapping[str, _builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
3090
- :param _builtins.str time_created: The time the the Model was created. An RFC3339 formatted datetime string.
3091
- :param _builtins.str time_updated: The time the Model was updated. An RFC3339 formatted datetime string.
3092
- """
3093
- pulumi.set(__self__, "compartment_id", compartment_id)
3094
- pulumi.set(__self__, "defined_tags", defined_tags)
3095
- pulumi.set(__self__, "description", description)
3096
- pulumi.set(__self__, "display_name", display_name)
3097
- pulumi.set(__self__, "freeform_tags", freeform_tags)
3098
- pulumi.set(__self__, "id", id)
3099
- pulumi.set(__self__, "lifecycle_details", lifecycle_details)
3100
- pulumi.set(__self__, "model_training_details", model_training_details)
3101
- pulumi.set(__self__, "model_training_results", model_training_results)
3102
- pulumi.set(__self__, "project_id", project_id)
3103
- pulumi.set(__self__, "state", state)
3104
- pulumi.set(__self__, "system_tags", system_tags)
3105
- pulumi.set(__self__, "time_created", time_created)
3106
- pulumi.set(__self__, "time_updated", time_updated)
3107
-
3108
- @_builtins.property
3109
- @pulumi.getter(name="compartmentId")
3110
- def compartment_id(self) -> _builtins.str:
3111
- """
3112
- The ID of the compartment in which to list resources.
3113
- """
3114
- return pulumi.get(self, "compartment_id")
3115
-
3116
- @_builtins.property
3117
- @pulumi.getter(name="definedTags")
3118
- def defined_tags(self) -> Mapping[str, _builtins.str]:
3119
- """
3120
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
3121
- """
3122
- return pulumi.get(self, "defined_tags")
3123
-
3124
- @_builtins.property
3125
- @pulumi.getter
3126
- def description(self) -> _builtins.str:
3127
- """
3128
- A short description of the Model.
3129
- """
3130
- return pulumi.get(self, "description")
3131
-
3132
- @_builtins.property
3133
- @pulumi.getter(name="displayName")
3134
- def display_name(self) -> _builtins.str:
3135
- """
3136
- A filter to return only resources that match the entire display name given.
3137
- """
3138
- return pulumi.get(self, "display_name")
3139
-
3140
- @_builtins.property
3141
- @pulumi.getter(name="freeformTags")
3142
- def freeform_tags(self) -> Mapping[str, _builtins.str]:
3143
- """
3144
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
3145
- """
3146
- return pulumi.get(self, "freeform_tags")
3147
-
3148
- @_builtins.property
3149
- @pulumi.getter
3150
- def id(self) -> _builtins.str:
3151
- """
3152
- The OCID of the model that is immutable on creation.
3153
- """
3154
- return pulumi.get(self, "id")
3155
-
3156
- @_builtins.property
3157
- @pulumi.getter(name="lifecycleDetails")
3158
- def lifecycle_details(self) -> _builtins.str:
3159
- """
3160
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
3161
- """
3162
- return pulumi.get(self, "lifecycle_details")
3163
-
3164
- @_builtins.property
3165
- @pulumi.getter(name="modelTrainingDetails")
3166
- def model_training_details(self) -> Sequence['outputs.GetDetectionModelsModelCollectionItemModelTrainingDetailResult']:
3167
- """
3168
- Specifies the details of the MSET model during the create call.
3169
- """
3170
- return pulumi.get(self, "model_training_details")
3171
-
3172
- @_builtins.property
3173
- @pulumi.getter(name="modelTrainingResults")
3174
- def model_training_results(self) -> Sequence['outputs.GetDetectionModelsModelCollectionItemModelTrainingResultResult']:
3175
- """
3176
- Specifies the details for an Anomaly Detection model trained with MSET.
3177
- """
3178
- return pulumi.get(self, "model_training_results")
3179
-
3180
- @_builtins.property
3181
- @pulumi.getter(name="projectId")
3182
- def project_id(self) -> _builtins.str:
3183
- """
3184
- The ID of the project for which to list the objects.
3185
- """
3186
- return pulumi.get(self, "project_id")
3187
-
3188
- @_builtins.property
3189
- @pulumi.getter
3190
- def state(self) -> _builtins.str:
3191
- """
3192
- <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
3193
- """
3194
- return pulumi.get(self, "state")
3195
-
3196
- @_builtins.property
3197
- @pulumi.getter(name="systemTags")
3198
- def system_tags(self) -> Mapping[str, _builtins.str]:
3199
- """
3200
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
3201
- """
3202
- return pulumi.get(self, "system_tags")
3203
-
3204
- @_builtins.property
3205
- @pulumi.getter(name="timeCreated")
3206
- def time_created(self) -> _builtins.str:
3207
- """
3208
- The time the the Model was created. An RFC3339 formatted datetime string.
3209
- """
3210
- return pulumi.get(self, "time_created")
3211
-
3212
- @_builtins.property
3213
- @pulumi.getter(name="timeUpdated")
3214
- def time_updated(self) -> _builtins.str:
3215
- """
3216
- The time the Model was updated. An RFC3339 formatted datetime string.
3217
- """
3218
- return pulumi.get(self, "time_updated")
3219
-
3220
-
3221
- @pulumi.output_type
3222
- class GetDetectionModelsModelCollectionItemModelTrainingDetailResult(dict):
3223
- def __init__(__self__, *,
3224
- algorithm_hint: _builtins.str,
3225
- data_asset_ids: Sequence[_builtins.str],
3226
- target_fap: _builtins.float,
3227
- training_fraction: _builtins.float,
3228
- window_size: _builtins.int):
3229
- """
3230
- :param _builtins.str algorithm_hint: User can choose specific algorithm for training.
3231
- :param Sequence[_builtins.str] data_asset_ids: The list of OCIDs of the data assets to train the model. The dataAssets have to be in the same project where the ai model would reside.
3232
- :param _builtins.float target_fap: A target model accuracy metric user provides as their requirement
3233
- :param _builtins.float training_fraction: Fraction of total data that is used for training the model. The remaining is used for validation of the model.
3234
- :param _builtins.int window_size: Window size defined during training or deduced by the algorithm.
3235
- """
3236
- pulumi.set(__self__, "algorithm_hint", algorithm_hint)
3237
- pulumi.set(__self__, "data_asset_ids", data_asset_ids)
3238
- pulumi.set(__self__, "target_fap", target_fap)
3239
- pulumi.set(__self__, "training_fraction", training_fraction)
3240
- pulumi.set(__self__, "window_size", window_size)
3241
-
3242
- @_builtins.property
3243
- @pulumi.getter(name="algorithmHint")
3244
- def algorithm_hint(self) -> _builtins.str:
3245
- """
3246
- User can choose specific algorithm for training.
3247
- """
3248
- return pulumi.get(self, "algorithm_hint")
3249
-
3250
- @_builtins.property
3251
- @pulumi.getter(name="dataAssetIds")
3252
- def data_asset_ids(self) -> Sequence[_builtins.str]:
3253
- """
3254
- The list of OCIDs of the data assets to train the model. The dataAssets have to be in the same project where the ai model would reside.
3255
- """
3256
- return pulumi.get(self, "data_asset_ids")
3257
-
3258
- @_builtins.property
3259
- @pulumi.getter(name="targetFap")
3260
- def target_fap(self) -> _builtins.float:
3261
- """
3262
- A target model accuracy metric user provides as their requirement
3263
- """
3264
- return pulumi.get(self, "target_fap")
3265
-
3266
- @_builtins.property
3267
- @pulumi.getter(name="trainingFraction")
3268
- def training_fraction(self) -> _builtins.float:
3269
- """
3270
- Fraction of total data that is used for training the model. The remaining is used for validation of the model.
3271
- """
3272
- return pulumi.get(self, "training_fraction")
3273
-
3274
- @_builtins.property
3275
- @pulumi.getter(name="windowSize")
3276
- def window_size(self) -> _builtins.int:
3277
- """
3278
- Window size defined during training or deduced by the algorithm.
3279
- """
3280
- return pulumi.get(self, "window_size")
3281
-
3282
-
3283
- @pulumi.output_type
3284
- class GetDetectionModelsModelCollectionItemModelTrainingResultResult(dict):
3285
- def __init__(__self__, *,
3286
- fap: _builtins.float,
3287
- is_training_goal_achieved: _builtins.bool,
3288
- mae: _builtins.float,
3289
- max_inference_sync_rows: _builtins.int,
3290
- multivariate_fap: _builtins.float,
3291
- rmse: _builtins.float,
3292
- row_reduction_details: Sequence['outputs.GetDetectionModelsModelCollectionItemModelTrainingResultRowReductionDetailResult'],
3293
- signal_details: Sequence['outputs.GetDetectionModelsModelCollectionItemModelTrainingResultSignalDetailResult'],
3294
- warning: _builtins.str,
3295
- window_size: _builtins.int):
3296
- """
3297
- :param _builtins.float fap: Accuracy metric for a signal.
3298
- :param _builtins.bool is_training_goal_achieved: A boolean value to indicate if train goal/targetFap is achieved for trained model
3299
- :param _builtins.float multivariate_fap: The model accuracy metric on timestamp level.
3300
- :param Sequence['GetDetectionModelsModelCollectionItemModelTrainingResultRowReductionDetailArgs'] row_reduction_details: Information regarding how/what row reduction methods will be applied. If this property is not present or is null, then it means row reduction is not applied.
3301
- :param Sequence['GetDetectionModelsModelCollectionItemModelTrainingResultSignalDetailArgs'] signal_details: The list of signal details.
3302
- :param _builtins.str warning: A warning message to explain the reason when targetFap cannot be achieved for trained model
3303
- :param _builtins.int window_size: Window size defined during training or deduced by the algorithm.
3304
- """
3305
- pulumi.set(__self__, "fap", fap)
3306
- pulumi.set(__self__, "is_training_goal_achieved", is_training_goal_achieved)
3307
- pulumi.set(__self__, "mae", mae)
3308
- pulumi.set(__self__, "max_inference_sync_rows", max_inference_sync_rows)
3309
- pulumi.set(__self__, "multivariate_fap", multivariate_fap)
3310
- pulumi.set(__self__, "rmse", rmse)
3311
- pulumi.set(__self__, "row_reduction_details", row_reduction_details)
3312
- pulumi.set(__self__, "signal_details", signal_details)
3313
- pulumi.set(__self__, "warning", warning)
3314
- pulumi.set(__self__, "window_size", window_size)
3315
-
3316
- @_builtins.property
3317
- @pulumi.getter
3318
- def fap(self) -> _builtins.float:
3319
- """
3320
- Accuracy metric for a signal.
3321
- """
3322
- return pulumi.get(self, "fap")
3323
-
3324
- @_builtins.property
3325
- @pulumi.getter(name="isTrainingGoalAchieved")
3326
- def is_training_goal_achieved(self) -> _builtins.bool:
3327
- """
3328
- A boolean value to indicate if train goal/targetFap is achieved for trained model
3329
- """
3330
- return pulumi.get(self, "is_training_goal_achieved")
3331
-
3332
- @_builtins.property
3333
- @pulumi.getter
3334
- def mae(self) -> _builtins.float:
3335
- return pulumi.get(self, "mae")
3336
-
3337
- @_builtins.property
3338
- @pulumi.getter(name="maxInferenceSyncRows")
3339
- def max_inference_sync_rows(self) -> _builtins.int:
3340
- return pulumi.get(self, "max_inference_sync_rows")
3341
-
3342
- @_builtins.property
3343
- @pulumi.getter(name="multivariateFap")
3344
- def multivariate_fap(self) -> _builtins.float:
3345
- """
3346
- The model accuracy metric on timestamp level.
3347
- """
3348
- return pulumi.get(self, "multivariate_fap")
3349
-
3350
- @_builtins.property
3351
- @pulumi.getter
3352
- def rmse(self) -> _builtins.float:
3353
- return pulumi.get(self, "rmse")
3354
-
3355
- @_builtins.property
3356
- @pulumi.getter(name="rowReductionDetails")
3357
- def row_reduction_details(self) -> Sequence['outputs.GetDetectionModelsModelCollectionItemModelTrainingResultRowReductionDetailResult']:
3358
- """
3359
- Information regarding how/what row reduction methods will be applied. If this property is not present or is null, then it means row reduction is not applied.
3360
- """
3361
- return pulumi.get(self, "row_reduction_details")
3362
-
3363
- @_builtins.property
3364
- @pulumi.getter(name="signalDetails")
3365
- def signal_details(self) -> Sequence['outputs.GetDetectionModelsModelCollectionItemModelTrainingResultSignalDetailResult']:
3366
- """
3367
- The list of signal details.
3368
- """
3369
- return pulumi.get(self, "signal_details")
3370
-
3371
- @_builtins.property
3372
- @pulumi.getter
3373
- def warning(self) -> _builtins.str:
3374
- """
3375
- A warning message to explain the reason when targetFap cannot be achieved for trained model
3376
- """
3377
- return pulumi.get(self, "warning")
3378
-
3379
- @_builtins.property
3380
- @pulumi.getter(name="windowSize")
3381
- def window_size(self) -> _builtins.int:
3382
- """
3383
- Window size defined during training or deduced by the algorithm.
3384
- """
3385
- return pulumi.get(self, "window_size")
3386
-
3387
-
3388
- @pulumi.output_type
3389
- class GetDetectionModelsModelCollectionItemModelTrainingResultRowReductionDetailResult(dict):
3390
- def __init__(__self__, *,
3391
- is_reduction_enabled: _builtins.bool,
3392
- reduction_method: _builtins.str,
3393
- reduction_percentage: _builtins.float):
3394
- """
3395
- :param _builtins.bool is_reduction_enabled: A boolean value to indicate if row reduction is applied
3396
- :param _builtins.str reduction_method: Method for row reduction:
3397
- * DELETE_ROW - delete rows with equal intervals
3398
- * AVERAGE_ROW - average multiple rows to one row
3399
- :param _builtins.float reduction_percentage: A percentage to reduce data size down to on top of original data
3400
- """
3401
- pulumi.set(__self__, "is_reduction_enabled", is_reduction_enabled)
3402
- pulumi.set(__self__, "reduction_method", reduction_method)
3403
- pulumi.set(__self__, "reduction_percentage", reduction_percentage)
3404
-
3405
- @_builtins.property
3406
- @pulumi.getter(name="isReductionEnabled")
3407
- def is_reduction_enabled(self) -> _builtins.bool:
3408
- """
3409
- A boolean value to indicate if row reduction is applied
3410
- """
3411
- return pulumi.get(self, "is_reduction_enabled")
3412
-
3413
- @_builtins.property
3414
- @pulumi.getter(name="reductionMethod")
3415
- def reduction_method(self) -> _builtins.str:
3416
- """
3417
- Method for row reduction:
3418
- * DELETE_ROW - delete rows with equal intervals
3419
- * AVERAGE_ROW - average multiple rows to one row
3420
- """
3421
- return pulumi.get(self, "reduction_method")
3422
-
3423
- @_builtins.property
3424
- @pulumi.getter(name="reductionPercentage")
3425
- def reduction_percentage(self) -> _builtins.float:
3426
- """
3427
- A percentage to reduce data size down to on top of original data
3428
- """
3429
- return pulumi.get(self, "reduction_percentage")
3430
-
3431
-
3432
- @pulumi.output_type
3433
- class GetDetectionModelsModelCollectionItemModelTrainingResultSignalDetailResult(dict):
3434
- def __init__(__self__, *,
3435
- details: _builtins.str,
3436
- fap: _builtins.float,
3437
- is_quantized: _builtins.bool,
3438
- max: _builtins.float,
3439
- min: _builtins.float,
3440
- mvi_ratio: _builtins.float,
3441
- signal_name: _builtins.str,
3442
- status: _builtins.str,
3443
- std: _builtins.float):
3444
- """
3445
- :param _builtins.str details: detailed information for a signal.
3446
- :param _builtins.float fap: Accuracy metric for a signal.
3447
- :param _builtins.bool is_quantized: A boolean value to indicate if a signal is quantized or not.
3448
- :param _builtins.float max: Max value within a signal.
3449
- :param _builtins.float min: Min value within a signal.
3450
- :param _builtins.float mvi_ratio: The ratio of missing values in a signal filled/imputed by the IDP algorithm.
3451
- :param _builtins.str signal_name: The name of a signal.
3452
- :param _builtins.str status: Status of the signal:
3453
- * ACCEPTED - the signal is used for training the model
3454
- * DROPPED - the signal does not meet requirement, and is dropped before training the model.
3455
- * OTHER - placeholder for other status
3456
- :param _builtins.float std: Standard deviation of values within a signal.
3457
- """
3458
- pulumi.set(__self__, "details", details)
3459
- pulumi.set(__self__, "fap", fap)
3460
- pulumi.set(__self__, "is_quantized", is_quantized)
3461
- pulumi.set(__self__, "max", max)
3462
- pulumi.set(__self__, "min", min)
3463
- pulumi.set(__self__, "mvi_ratio", mvi_ratio)
3464
- pulumi.set(__self__, "signal_name", signal_name)
3465
- pulumi.set(__self__, "status", status)
3466
- pulumi.set(__self__, "std", std)
3467
-
3468
- @_builtins.property
3469
- @pulumi.getter
3470
- def details(self) -> _builtins.str:
3471
- """
3472
- detailed information for a signal.
3473
- """
3474
- return pulumi.get(self, "details")
3475
-
3476
- @_builtins.property
3477
- @pulumi.getter
3478
- def fap(self) -> _builtins.float:
3479
- """
3480
- Accuracy metric for a signal.
3481
- """
3482
- return pulumi.get(self, "fap")
3483
-
3484
- @_builtins.property
3485
- @pulumi.getter(name="isQuantized")
3486
- def is_quantized(self) -> _builtins.bool:
3487
- """
3488
- A boolean value to indicate if a signal is quantized or not.
3489
- """
3490
- return pulumi.get(self, "is_quantized")
3491
-
3492
- @_builtins.property
3493
- @pulumi.getter
3494
- def max(self) -> _builtins.float:
3495
- """
3496
- Max value within a signal.
3497
- """
3498
- return pulumi.get(self, "max")
3499
-
3500
- @_builtins.property
3501
- @pulumi.getter
3502
- def min(self) -> _builtins.float:
3503
- """
3504
- Min value within a signal.
3505
- """
3506
- return pulumi.get(self, "min")
3507
-
3508
- @_builtins.property
3509
- @pulumi.getter(name="mviRatio")
3510
- def mvi_ratio(self) -> _builtins.float:
3511
- """
3512
- The ratio of missing values in a signal filled/imputed by the IDP algorithm.
3513
- """
3514
- return pulumi.get(self, "mvi_ratio")
3515
-
3516
- @_builtins.property
3517
- @pulumi.getter(name="signalName")
3518
- def signal_name(self) -> _builtins.str:
3519
- """
3520
- The name of a signal.
3521
- """
3522
- return pulumi.get(self, "signal_name")
3523
-
3524
- @_builtins.property
3525
- @pulumi.getter
3526
- def status(self) -> _builtins.str:
3527
- """
3528
- Status of the signal:
3529
- * ACCEPTED - the signal is used for training the model
3530
- * DROPPED - the signal does not meet requirement, and is dropped before training the model.
3531
- * OTHER - placeholder for other status
3532
- """
3533
- return pulumi.get(self, "status")
3534
-
3535
- @_builtins.property
3536
- @pulumi.getter
3537
- def std(self) -> _builtins.float:
3538
- """
3539
- Standard deviation of values within a signal.
3540
- """
3541
- return pulumi.get(self, "std")
3542
-
3543
-
3544
- @pulumi.output_type
3545
- class GetDetectionProjectsFilterResult(dict):
3546
- def __init__(__self__, *,
3547
- name: _builtins.str,
3548
- values: Sequence[_builtins.str],
3549
- regex: Optional[_builtins.bool] = None):
3550
- pulumi.set(__self__, "name", name)
3551
- pulumi.set(__self__, "values", values)
3552
- if regex is not None:
3553
- pulumi.set(__self__, "regex", regex)
3554
-
3555
- @_builtins.property
3556
- @pulumi.getter
3557
- def name(self) -> _builtins.str:
3558
- return pulumi.get(self, "name")
3559
-
3560
- @_builtins.property
3561
- @pulumi.getter
3562
- def values(self) -> Sequence[_builtins.str]:
3563
- return pulumi.get(self, "values")
3564
-
3565
- @_builtins.property
3566
- @pulumi.getter
3567
- def regex(self) -> Optional[_builtins.bool]:
3568
- return pulumi.get(self, "regex")
3569
-
3570
-
3571
- @pulumi.output_type
3572
- class GetDetectionProjectsProjectCollectionResult(dict):
3573
- def __init__(__self__, *,
3574
- items: Sequence['outputs.GetDetectionProjectsProjectCollectionItemResult']):
3575
- pulumi.set(__self__, "items", items)
3576
-
3577
- @_builtins.property
3578
- @pulumi.getter
3579
- def items(self) -> Sequence['outputs.GetDetectionProjectsProjectCollectionItemResult']:
3580
- return pulumi.get(self, "items")
3581
-
3582
-
3583
- @pulumi.output_type
3584
- class GetDetectionProjectsProjectCollectionItemResult(dict):
3585
- def __init__(__self__, *,
3586
- compartment_id: _builtins.str,
3587
- defined_tags: Mapping[str, _builtins.str],
3588
- description: _builtins.str,
3589
- display_name: _builtins.str,
3590
- freeform_tags: Mapping[str, _builtins.str],
3591
- id: _builtins.str,
3592
- state: _builtins.str,
3593
- system_tags: Mapping[str, _builtins.str],
3594
- time_created: _builtins.str,
3595
- time_updated: _builtins.str):
3596
- """
3597
- :param _builtins.str compartment_id: The ID of the compartment in which to list resources.
3598
- :param Mapping[str, _builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
3599
- :param _builtins.str description: A short description of the project.
3600
- :param _builtins.str display_name: A filter to return only resources that match the entire display name given.
3601
- :param Mapping[str, _builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
3602
- :param _builtins.str id: The OCID of the project that is immutable on creation.
3603
- :param _builtins.str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
3604
- :param Mapping[str, _builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
3605
- :param _builtins.str time_created: The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
3606
- :param _builtins.str time_updated: The date and time the resource was updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
3607
- """
3608
- pulumi.set(__self__, "compartment_id", compartment_id)
3609
- pulumi.set(__self__, "defined_tags", defined_tags)
3610
- pulumi.set(__self__, "description", description)
3611
- pulumi.set(__self__, "display_name", display_name)
3612
- pulumi.set(__self__, "freeform_tags", freeform_tags)
3613
- pulumi.set(__self__, "id", id)
3614
- pulumi.set(__self__, "state", state)
3615
- pulumi.set(__self__, "system_tags", system_tags)
3616
- pulumi.set(__self__, "time_created", time_created)
3617
- pulumi.set(__self__, "time_updated", time_updated)
3618
-
3619
- @_builtins.property
3620
- @pulumi.getter(name="compartmentId")
3621
- def compartment_id(self) -> _builtins.str:
3622
- """
3623
- The ID of the compartment in which to list resources.
3624
- """
3625
- return pulumi.get(self, "compartment_id")
3626
-
3627
- @_builtins.property
3628
- @pulumi.getter(name="definedTags")
3629
- def defined_tags(self) -> Mapping[str, _builtins.str]:
3630
- """
3631
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
3632
- """
3633
- return pulumi.get(self, "defined_tags")
3634
-
3635
- @_builtins.property
3636
- @pulumi.getter
3637
- def description(self) -> _builtins.str:
3638
- """
3639
- A short description of the project.
3640
- """
3641
- return pulumi.get(self, "description")
3642
-
3643
- @_builtins.property
3644
- @pulumi.getter(name="displayName")
3645
- def display_name(self) -> _builtins.str:
3646
- """
3647
- A filter to return only resources that match the entire display name given.
3648
- """
3649
- return pulumi.get(self, "display_name")
3650
-
3651
- @_builtins.property
3652
- @pulumi.getter(name="freeformTags")
3653
- def freeform_tags(self) -> Mapping[str, _builtins.str]:
3654
- """
3655
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
3656
- """
3657
- return pulumi.get(self, "freeform_tags")
3658
-
3659
- @_builtins.property
3660
- @pulumi.getter
3661
- def id(self) -> _builtins.str:
3662
- """
3663
- The OCID of the project that is immutable on creation.
3664
- """
3665
- return pulumi.get(self, "id")
3666
-
3667
- @_builtins.property
3668
- @pulumi.getter
3669
- def state(self) -> _builtins.str:
3670
- """
3671
- <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
3672
- """
3673
- return pulumi.get(self, "state")
3674
-
3675
- @_builtins.property
3676
- @pulumi.getter(name="systemTags")
3677
- def system_tags(self) -> Mapping[str, _builtins.str]:
3678
- """
3679
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
3680
- """
3681
- return pulumi.get(self, "system_tags")
3682
-
3683
- @_builtins.property
3684
- @pulumi.getter(name="timeCreated")
3685
- def time_created(self) -> _builtins.str:
3686
- """
3687
- The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
3688
- """
3689
- return pulumi.get(self, "time_created")
3690
-
3691
- @_builtins.property
3692
- @pulumi.getter(name="timeUpdated")
3693
- def time_updated(self) -> _builtins.str:
3694
- """
3695
- The date and time the resource was updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
3696
- """
3697
- return pulumi.get(self, "time_updated")
3698
-
3699
-