pulumi-oci 3.4.0a1755585924__py3-none-any.whl → 3.4.0a1755922408__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (198) hide show
  1. pulumi_oci/__init__.py +168 -43
  2. pulumi_oci/aidocument/__init__.py +1 -0
  3. pulumi_oci/aidocument/_inputs.py +476 -6
  4. pulumi_oci/aidocument/get_model.py +63 -2
  5. pulumi_oci/aidocument/get_model_type.py +179 -0
  6. pulumi_oci/aidocument/get_models.py +1 -1
  7. pulumi_oci/aidocument/get_project.py +17 -2
  8. pulumi_oci/aidocument/get_projects.py +1 -1
  9. pulumi_oci/aidocument/model.py +188 -0
  10. pulumi_oci/aidocument/outputs.py +883 -8
  11. pulumi_oci/aidocument/processor_job.py +22 -4
  12. pulumi_oci/aidocument/project.py +50 -1
  13. pulumi_oci/apigateway/_inputs.py +608 -12
  14. pulumi_oci/apigateway/api.py +127 -38
  15. pulumi_oci/apigateway/certificate.py +122 -3
  16. pulumi_oci/apigateway/deployment.py +120 -3
  17. pulumi_oci/apigateway/gateway.py +124 -7
  18. pulumi_oci/apigateway/get_api.py +40 -1
  19. pulumi_oci/apigateway/get_certificate.py +41 -1
  20. pulumi_oci/apigateway/get_deployment.py +40 -1
  21. pulumi_oci/apigateway/get_gateway.py +40 -1
  22. pulumi_oci/apigateway/get_subscriber.py +40 -1
  23. pulumi_oci/apigateway/get_usage_plan.py +40 -1
  24. pulumi_oci/apigateway/outputs.py +1413 -39
  25. pulumi_oci/apigateway/subscriber.py +120 -3
  26. pulumi_oci/apigateway/usage_plan.py +127 -38
  27. pulumi_oci/apmconfig/_inputs.py +199 -15
  28. pulumi_oci/apmconfig/config.py +535 -17
  29. pulumi_oci/apmconfig/get_config.py +141 -1
  30. pulumi_oci/apmconfig/get_configs.py +2 -2
  31. pulumi_oci/apmconfig/outputs.py +509 -13
  32. pulumi_oci/apmtraces/__init__.py +5 -0
  33. pulumi_oci/apmtraces/_inputs.py +413 -0
  34. pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
  35. pulumi_oci/apmtraces/get_log.py +356 -0
  36. pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
  37. pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
  38. pulumi_oci/apmtraces/get_trace.py +4 -4
  39. pulumi_oci/apmtraces/outputs.py +971 -0
  40. pulumi_oci/apmtraces/scheduled_query.py +925 -0
  41. pulumi_oci/autoscaling/_inputs.py +177 -13
  42. pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
  43. pulumi_oci/autoscaling/outputs.py +269 -23
  44. pulumi_oci/core/_inputs.py +184 -0
  45. pulumi_oci/core/get_ipv6.py +15 -1
  46. pulumi_oci/core/ipv6.py +49 -0
  47. pulumi_oci/core/outputs.py +365 -0
  48. pulumi_oci/database/__init__.py +3 -0
  49. pulumi_oci/database/_inputs.py +139 -7
  50. pulumi_oci/database/autonomous_container_database.py +94 -0
  51. pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
  52. pulumi_oci/database/autonomous_database.py +578 -568
  53. pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
  54. pulumi_oci/database/get_autonomous_container_database.py +29 -1
  55. pulumi_oci/database/get_autonomous_database.py +65 -1
  56. pulumi_oci/database/get_autonomous_databases.py +6 -1
  57. pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
  58. pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
  59. pulumi_oci/database/outputs.py +470 -75
  60. pulumi_oci/database/pluggable_database.py +0 -14
  61. pulumi_oci/database/pluggable_database_snapshot.py +539 -0
  62. pulumi_oci/databasemanagement/__init__.py +37 -0
  63. pulumi_oci/databasemanagement/_inputs.py +9516 -3414
  64. pulumi_oci/databasemanagement/cloud_asm.py +791 -0
  65. pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
  66. pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
  67. pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
  68. pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
  69. pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
  70. pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
  71. pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
  72. pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
  73. pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
  74. pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
  75. pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
  76. pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
  77. pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
  78. pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
  79. pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
  80. pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
  81. pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
  82. pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
  83. pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
  84. pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
  85. pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
  86. pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
  87. pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
  88. pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
  89. pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
  90. pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
  91. pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
  92. pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
  93. pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
  94. pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
  95. pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
  96. pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
  97. pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
  98. pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
  99. pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
  100. pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
  101. pulumi_oci/databasemanagement/get_managed_database.py +2 -2
  102. pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
  105. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
  106. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
  107. pulumi_oci/databasemanagement/outputs.py +18049 -4222
  108. pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
  109. pulumi_oci/datasafe/get_security_assessment_findings.py +2 -2
  110. pulumi_oci/datasafe/get_security_assessments.py +2 -2
  111. pulumi_oci/datasafe/outputs.py +192 -2
  112. pulumi_oci/datascience/__init__.py +10 -0
  113. pulumi_oci/datascience/_inputs.py +6760 -2206
  114. pulumi_oci/datascience/get_job.py +15 -1
  115. pulumi_oci/datascience/get_job_run.py +44 -2
  116. pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
  117. pulumi_oci/datascience/get_model_group.py +405 -0
  118. pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
  119. pulumi_oci/datascience/get_model_group_models.py +240 -0
  120. pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
  121. pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
  122. pulumi_oci/datascience/get_model_groups.py +265 -0
  123. pulumi_oci/datascience/get_pipeline_run.py +15 -1
  124. pulumi_oci/datascience/job.py +81 -154
  125. pulumi_oci/datascience/job_run.py +250 -4
  126. pulumi_oci/datascience/model_group.py +1111 -0
  127. pulumi_oci/datascience/model_group_artifact.py +369 -0
  128. pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
  129. pulumi_oci/datascience/notebook_session.py +4 -0
  130. pulumi_oci/datascience/outputs.py +17168 -8021
  131. pulumi_oci/datascience/pipeline_run.py +87 -0
  132. pulumi_oci/goldengate/_inputs.py +3 -3
  133. pulumi_oci/goldengate/connection.py +175 -56
  134. pulumi_oci/goldengate/get_connection.py +20 -4
  135. pulumi_oci/goldengate/outputs.py +27 -8
  136. pulumi_oci/managementagent/__init__.py +4 -0
  137. pulumi_oci/managementagent/_inputs.py +129 -0
  138. pulumi_oci/managementagent/get_management_agent.py +26 -1
  139. pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
  140. pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
  141. pulumi_oci/managementagent/get_named_credential.py +268 -0
  142. pulumi_oci/managementagent/get_named_credentials.py +221 -0
  143. pulumi_oci/managementagent/management_agent.py +48 -0
  144. pulumi_oci/managementagent/management_agent_install_key.py +84 -0
  145. pulumi_oci/managementagent/named_credential.py +706 -0
  146. pulumi_oci/managementagent/outputs.py +515 -0
  147. pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
  148. pulumi_oci/oci/__init__.py +3 -0
  149. pulumi_oci/oci/_inputs.py +146 -0
  150. pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
  151. pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
  152. pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
  153. pulumi_oci/oci/outputs.py +367 -0
  154. pulumi_oci/opsi/_inputs.py +1001 -149
  155. pulumi_oci/opsi/database_insight.py +22 -3
  156. pulumi_oci/opsi/exadata_insight.py +86 -6
  157. pulumi_oci/opsi/outputs.py +1438 -178
  158. pulumi_oci/psql/configuration.py +109 -19
  159. pulumi_oci/psql/db_system.py +7 -7
  160. pulumi_oci/psql/get_configuration.py +30 -2
  161. pulumi_oci/psql/get_configurations.py +49 -5
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_default_configuration.py +30 -4
  164. pulumi_oci/psql/get_default_configurations.py +49 -5
  165. pulumi_oci/psql/outputs.py +47 -14
  166. pulumi_oci/pulumi-plugin.json +1 -1
  167. pulumi_oci/redis/__init__.py +6 -0
  168. pulumi_oci/redis/_inputs.py +217 -0
  169. pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
  170. pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
  171. pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
  172. pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
  173. pulumi_oci/redis/get_redis_cluster.py +15 -1
  174. pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
  175. pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
  176. pulumi_oci/redis/outputs.py +713 -0
  177. pulumi_oci/redis/redis_cluster.py +49 -0
  178. pulumi_oci/vault/_inputs.py +198 -0
  179. pulumi_oci/vault/get_secret.py +43 -1
  180. pulumi_oci/vault/outputs.py +434 -0
  181. pulumi_oci/vault/secret.py +103 -0
  182. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/RECORD +185 -134
  184. pulumi_oci/aianomalydetection/__init__.py +0 -25
  185. pulumi_oci/aianomalydetection/_inputs.py +0 -1742
  186. pulumi_oci/aianomalydetection/ai_private_endpoint.py +0 -643
  187. pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
  188. pulumi_oci/aianomalydetection/get_ai_private_endpoint.py +0 -281
  189. pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
  190. pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
  191. pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
  192. pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
  193. pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
  194. pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
  195. pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
  196. pulumi_oci/aianomalydetection/outputs.py +0 -3699
  197. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/top_level.txt +0 -0
@@ -16,8 +16,24 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'ScheduledQueryScheduledQueryProcessingConfiguration',
20
+ 'ScheduledQueryScheduledQueryProcessingConfigurationCustomMetric',
21
+ 'ScheduledQueryScheduledQueryProcessingConfigurationObjectStorage',
22
+ 'ScheduledQueryScheduledQueryProcessingConfigurationStreaming',
23
+ 'GetLogAttributeResult',
19
24
  'GetQueryQuickPicksFilterResult',
20
25
  'GetQueryQuickPicksQuickPickResult',
26
+ 'GetScheduledQueriesFilterResult',
27
+ 'GetScheduledQueriesScheduledQueryCollectionResult',
28
+ 'GetScheduledQueriesScheduledQueryCollectionItemResult',
29
+ 'GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationResult',
30
+ 'GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationCustomMetricResult',
31
+ 'GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationObjectStorageResult',
32
+ 'GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationStreamingResult',
33
+ 'GetScheduledQueryScheduledQueryProcessingConfigurationResult',
34
+ 'GetScheduledQueryScheduledQueryProcessingConfigurationCustomMetricResult',
35
+ 'GetScheduledQueryScheduledQueryProcessingConfigurationObjectStorageResult',
36
+ 'GetScheduledQueryScheduledQueryProcessingConfigurationStreamingResult',
21
37
  'GetTraceAggregatedSnapshotDataDetailResult',
22
38
  'GetTraceServiceSummaryResult',
23
39
  'GetTraceSnapshotDataTraceSnapshotDetailResult',
@@ -29,6 +45,318 @@ __all__ = [
29
45
  'GetTraceSpanTagResult',
30
46
  ]
31
47
 
48
+ @pulumi.output_type
49
+ class ScheduledQueryScheduledQueryProcessingConfiguration(dict):
50
+ @staticmethod
51
+ def __key_warning(key: str):
52
+ suggest = None
53
+ if key == "customMetric":
54
+ suggest = "custom_metric"
55
+ elif key == "objectStorage":
56
+ suggest = "object_storage"
57
+
58
+ if suggest:
59
+ pulumi.log.warn(f"Key '{key}' not found in ScheduledQueryScheduledQueryProcessingConfiguration. Access the value via the '{suggest}' property getter instead.")
60
+
61
+ def __getitem__(self, key: str) -> Any:
62
+ ScheduledQueryScheduledQueryProcessingConfiguration.__key_warning(key)
63
+ return super().__getitem__(key)
64
+
65
+ def get(self, key: str, default = None) -> Any:
66
+ ScheduledQueryScheduledQueryProcessingConfiguration.__key_warning(key)
67
+ return super().get(key, default)
68
+
69
+ def __init__(__self__, *,
70
+ custom_metric: Optional['outputs.ScheduledQueryScheduledQueryProcessingConfigurationCustomMetric'] = None,
71
+ object_storage: Optional['outputs.ScheduledQueryScheduledQueryProcessingConfigurationObjectStorage'] = None,
72
+ streaming: Optional['outputs.ScheduledQueryScheduledQueryProcessingConfigurationStreaming'] = None):
73
+ """
74
+ :param 'ScheduledQueryScheduledQueryProcessingConfigurationCustomMetricArgs' custom_metric: (Updatable) Definition of the Custom Metric.
75
+ :param 'ScheduledQueryScheduledQueryProcessingConfigurationObjectStorageArgs' object_storage: (Updatable) Definition of the object storage.
76
+ :param 'ScheduledQueryScheduledQueryProcessingConfigurationStreamingArgs' streaming: (Updatable) Definition of the Stream.
77
+ """
78
+ if custom_metric is not None:
79
+ pulumi.set(__self__, "custom_metric", custom_metric)
80
+ if object_storage is not None:
81
+ pulumi.set(__self__, "object_storage", object_storage)
82
+ if streaming is not None:
83
+ pulumi.set(__self__, "streaming", streaming)
84
+
85
+ @_builtins.property
86
+ @pulumi.getter(name="customMetric")
87
+ def custom_metric(self) -> Optional['outputs.ScheduledQueryScheduledQueryProcessingConfigurationCustomMetric']:
88
+ """
89
+ (Updatable) Definition of the Custom Metric.
90
+ """
91
+ return pulumi.get(self, "custom_metric")
92
+
93
+ @_builtins.property
94
+ @pulumi.getter(name="objectStorage")
95
+ def object_storage(self) -> Optional['outputs.ScheduledQueryScheduledQueryProcessingConfigurationObjectStorage']:
96
+ """
97
+ (Updatable) Definition of the object storage.
98
+ """
99
+ return pulumi.get(self, "object_storage")
100
+
101
+ @_builtins.property
102
+ @pulumi.getter
103
+ def streaming(self) -> Optional['outputs.ScheduledQueryScheduledQueryProcessingConfigurationStreaming']:
104
+ """
105
+ (Updatable) Definition of the Stream.
106
+ """
107
+ return pulumi.get(self, "streaming")
108
+
109
+
110
+ @pulumi.output_type
111
+ class ScheduledQueryScheduledQueryProcessingConfigurationCustomMetric(dict):
112
+ @staticmethod
113
+ def __key_warning(key: str):
114
+ suggest = None
115
+ if key == "isAnomalyDetectionEnabled":
116
+ suggest = "is_anomaly_detection_enabled"
117
+ elif key == "isMetricPublished":
118
+ suggest = "is_metric_published"
119
+ elif key == "resourceGroup":
120
+ suggest = "resource_group"
121
+
122
+ if suggest:
123
+ pulumi.log.warn(f"Key '{key}' not found in ScheduledQueryScheduledQueryProcessingConfigurationCustomMetric. Access the value via the '{suggest}' property getter instead.")
124
+
125
+ def __getitem__(self, key: str) -> Any:
126
+ ScheduledQueryScheduledQueryProcessingConfigurationCustomMetric.__key_warning(key)
127
+ return super().__getitem__(key)
128
+
129
+ def get(self, key: str, default = None) -> Any:
130
+ ScheduledQueryScheduledQueryProcessingConfigurationCustomMetric.__key_warning(key)
131
+ return super().get(key, default)
132
+
133
+ def __init__(__self__, *,
134
+ name: _builtins.str,
135
+ compartment: Optional[_builtins.str] = None,
136
+ description: Optional[_builtins.str] = None,
137
+ is_anomaly_detection_enabled: Optional[_builtins.bool] = None,
138
+ is_metric_published: Optional[_builtins.bool] = None,
139
+ namespace: Optional[_builtins.str] = None,
140
+ resource_group: Optional[_builtins.str] = None,
141
+ unit: Optional[_builtins.str] = None):
142
+ """
143
+ :param _builtins.str name: (Updatable) Name of the Custom Metric.
144
+ :param _builtins.str compartment: (Updatable) Compartment of the Monitoring Service. It defaults to the APM domain's compartment if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that compartment.
145
+ :param _builtins.str description: (Updatable) Description of the Custom Metric.
146
+ :param _builtins.bool is_anomaly_detection_enabled: (Updatable) Indicates whether anomaly Detection should be performed on the generated metric.
147
+ :param _builtins.bool is_metric_published: (Updatable) Used in conjunction with the dry run header. When the dry run header is set and the isPublishMetric flag is set to true, the scheduled query is not created, but validations happen to check if the right Oracle Cloud Infrastructure policies have been set to write to the specified namespace/compartment.
148
+ :param _builtins.str namespace: (Updatable) Namespace in the Custom Metric. It defaults to `oracle_apm_custom` if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that namespace.
149
+ :param _builtins.str resource_group: (Updatable) Resource Group of the Custom Metric.
150
+ :param _builtins.str unit: (Updatable) Unit in which the metric value is reported. For example 'ms'.
151
+ """
152
+ pulumi.set(__self__, "name", name)
153
+ if compartment is not None:
154
+ pulumi.set(__self__, "compartment", compartment)
155
+ if description is not None:
156
+ pulumi.set(__self__, "description", description)
157
+ if is_anomaly_detection_enabled is not None:
158
+ pulumi.set(__self__, "is_anomaly_detection_enabled", is_anomaly_detection_enabled)
159
+ if is_metric_published is not None:
160
+ pulumi.set(__self__, "is_metric_published", is_metric_published)
161
+ if namespace is not None:
162
+ pulumi.set(__self__, "namespace", namespace)
163
+ if resource_group is not None:
164
+ pulumi.set(__self__, "resource_group", resource_group)
165
+ if unit is not None:
166
+ pulumi.set(__self__, "unit", unit)
167
+
168
+ @_builtins.property
169
+ @pulumi.getter
170
+ def name(self) -> _builtins.str:
171
+ """
172
+ (Updatable) Name of the Custom Metric.
173
+ """
174
+ return pulumi.get(self, "name")
175
+
176
+ @_builtins.property
177
+ @pulumi.getter
178
+ def compartment(self) -> Optional[_builtins.str]:
179
+ """
180
+ (Updatable) Compartment of the Monitoring Service. It defaults to the APM domain's compartment if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that compartment.
181
+ """
182
+ return pulumi.get(self, "compartment")
183
+
184
+ @_builtins.property
185
+ @pulumi.getter
186
+ def description(self) -> Optional[_builtins.str]:
187
+ """
188
+ (Updatable) Description of the Custom Metric.
189
+ """
190
+ return pulumi.get(self, "description")
191
+
192
+ @_builtins.property
193
+ @pulumi.getter(name="isAnomalyDetectionEnabled")
194
+ def is_anomaly_detection_enabled(self) -> Optional[_builtins.bool]:
195
+ """
196
+ (Updatable) Indicates whether anomaly Detection should be performed on the generated metric.
197
+ """
198
+ return pulumi.get(self, "is_anomaly_detection_enabled")
199
+
200
+ @_builtins.property
201
+ @pulumi.getter(name="isMetricPublished")
202
+ def is_metric_published(self) -> Optional[_builtins.bool]:
203
+ """
204
+ (Updatable) Used in conjunction with the dry run header. When the dry run header is set and the isPublishMetric flag is set to true, the scheduled query is not created, but validations happen to check if the right Oracle Cloud Infrastructure policies have been set to write to the specified namespace/compartment.
205
+ """
206
+ return pulumi.get(self, "is_metric_published")
207
+
208
+ @_builtins.property
209
+ @pulumi.getter
210
+ def namespace(self) -> Optional[_builtins.str]:
211
+ """
212
+ (Updatable) Namespace in the Custom Metric. It defaults to `oracle_apm_custom` if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that namespace.
213
+ """
214
+ return pulumi.get(self, "namespace")
215
+
216
+ @_builtins.property
217
+ @pulumi.getter(name="resourceGroup")
218
+ def resource_group(self) -> Optional[_builtins.str]:
219
+ """
220
+ (Updatable) Resource Group of the Custom Metric.
221
+ """
222
+ return pulumi.get(self, "resource_group")
223
+
224
+ @_builtins.property
225
+ @pulumi.getter
226
+ def unit(self) -> Optional[_builtins.str]:
227
+ """
228
+ (Updatable) Unit in which the metric value is reported. For example 'ms'.
229
+ """
230
+ return pulumi.get(self, "unit")
231
+
232
+
233
+ @pulumi.output_type
234
+ class ScheduledQueryScheduledQueryProcessingConfigurationObjectStorage(dict):
235
+ @staticmethod
236
+ def __key_warning(key: str):
237
+ suggest = None
238
+ if key == "nameSpace":
239
+ suggest = "name_space"
240
+ elif key == "objectNamePrefix":
241
+ suggest = "object_name_prefix"
242
+
243
+ if suggest:
244
+ pulumi.log.warn(f"Key '{key}' not found in ScheduledQueryScheduledQueryProcessingConfigurationObjectStorage. Access the value via the '{suggest}' property getter instead.")
245
+
246
+ def __getitem__(self, key: str) -> Any:
247
+ ScheduledQueryScheduledQueryProcessingConfigurationObjectStorage.__key_warning(key)
248
+ return super().__getitem__(key)
249
+
250
+ def get(self, key: str, default = None) -> Any:
251
+ ScheduledQueryScheduledQueryProcessingConfigurationObjectStorage.__key_warning(key)
252
+ return super().get(key, default)
253
+
254
+ def __init__(__self__, *,
255
+ bucket: Optional[_builtins.str] = None,
256
+ name_space: Optional[_builtins.str] = None,
257
+ object_name_prefix: Optional[_builtins.str] = None):
258
+ """
259
+ :param _builtins.str bucket: (Updatable) Bucket name in the object store.
260
+ :param _builtins.str name_space: (Updatable) Namespace in the object store.
261
+ :param _builtins.str object_name_prefix: (Updatable) Object name prefix in the object store.
262
+ """
263
+ if bucket is not None:
264
+ pulumi.set(__self__, "bucket", bucket)
265
+ if name_space is not None:
266
+ pulumi.set(__self__, "name_space", name_space)
267
+ if object_name_prefix is not None:
268
+ pulumi.set(__self__, "object_name_prefix", object_name_prefix)
269
+
270
+ @_builtins.property
271
+ @pulumi.getter
272
+ def bucket(self) -> Optional[_builtins.str]:
273
+ """
274
+ (Updatable) Bucket name in the object store.
275
+ """
276
+ return pulumi.get(self, "bucket")
277
+
278
+ @_builtins.property
279
+ @pulumi.getter(name="nameSpace")
280
+ def name_space(self) -> Optional[_builtins.str]:
281
+ """
282
+ (Updatable) Namespace in the object store.
283
+ """
284
+ return pulumi.get(self, "name_space")
285
+
286
+ @_builtins.property
287
+ @pulumi.getter(name="objectNamePrefix")
288
+ def object_name_prefix(self) -> Optional[_builtins.str]:
289
+ """
290
+ (Updatable) Object name prefix in the object store.
291
+ """
292
+ return pulumi.get(self, "object_name_prefix")
293
+
294
+
295
+ @pulumi.output_type
296
+ class ScheduledQueryScheduledQueryProcessingConfigurationStreaming(dict):
297
+ @staticmethod
298
+ def __key_warning(key: str):
299
+ suggest = None
300
+ if key == "streamId":
301
+ suggest = "stream_id"
302
+
303
+ if suggest:
304
+ pulumi.log.warn(f"Key '{key}' not found in ScheduledQueryScheduledQueryProcessingConfigurationStreaming. Access the value via the '{suggest}' property getter instead.")
305
+
306
+ def __getitem__(self, key: str) -> Any:
307
+ ScheduledQueryScheduledQueryProcessingConfigurationStreaming.__key_warning(key)
308
+ return super().__getitem__(key)
309
+
310
+ def get(self, key: str, default = None) -> Any:
311
+ ScheduledQueryScheduledQueryProcessingConfigurationStreaming.__key_warning(key)
312
+ return super().get(key, default)
313
+
314
+ def __init__(__self__, *,
315
+ stream_id: Optional[_builtins.str] = None):
316
+ """
317
+ :param _builtins.str stream_id: (Updatable) Stream Id.
318
+ """
319
+ if stream_id is not None:
320
+ pulumi.set(__self__, "stream_id", stream_id)
321
+
322
+ @_builtins.property
323
+ @pulumi.getter(name="streamId")
324
+ def stream_id(self) -> Optional[_builtins.str]:
325
+ """
326
+ (Updatable) Stream Id.
327
+ """
328
+ return pulumi.get(self, "stream_id")
329
+
330
+
331
+ @pulumi.output_type
332
+ class GetLogAttributeResult(dict):
333
+ def __init__(__self__, *,
334
+ attribute_name: _builtins.str,
335
+ attribute_value: _builtins.str):
336
+ """
337
+ :param _builtins.str attribute_name: Key that specifies the attribute name.
338
+ :param _builtins.str attribute_value: Value associated with the attribute key.
339
+ """
340
+ pulumi.set(__self__, "attribute_name", attribute_name)
341
+ pulumi.set(__self__, "attribute_value", attribute_value)
342
+
343
+ @_builtins.property
344
+ @pulumi.getter(name="attributeName")
345
+ def attribute_name(self) -> _builtins.str:
346
+ """
347
+ Key that specifies the attribute name.
348
+ """
349
+ return pulumi.get(self, "attribute_name")
350
+
351
+ @_builtins.property
352
+ @pulumi.getter(name="attributeValue")
353
+ def attribute_value(self) -> _builtins.str:
354
+ """
355
+ Value associated with the attribute key.
356
+ """
357
+ return pulumi.get(self, "attribute_value")
358
+
359
+
32
360
  @pulumi.output_type
33
361
  class GetQueryQuickPicksFilterResult(dict):
34
362
  def __init__(__self__, *,
@@ -85,6 +413,649 @@ class GetQueryQuickPicksQuickPickResult(dict):
85
413
  return pulumi.get(self, "quick_pick_query")
86
414
 
87
415
 
416
+ @pulumi.output_type
417
+ class GetScheduledQueriesFilterResult(dict):
418
+ def __init__(__self__, *,
419
+ name: _builtins.str,
420
+ values: Sequence[_builtins.str],
421
+ regex: Optional[_builtins.bool] = None):
422
+ """
423
+ :param _builtins.str name: Name of the Custom Metric.
424
+ """
425
+ pulumi.set(__self__, "name", name)
426
+ pulumi.set(__self__, "values", values)
427
+ if regex is not None:
428
+ pulumi.set(__self__, "regex", regex)
429
+
430
+ @_builtins.property
431
+ @pulumi.getter
432
+ def name(self) -> _builtins.str:
433
+ """
434
+ Name of the Custom Metric.
435
+ """
436
+ return pulumi.get(self, "name")
437
+
438
+ @_builtins.property
439
+ @pulumi.getter
440
+ def values(self) -> Sequence[_builtins.str]:
441
+ return pulumi.get(self, "values")
442
+
443
+ @_builtins.property
444
+ @pulumi.getter
445
+ def regex(self) -> Optional[_builtins.bool]:
446
+ return pulumi.get(self, "regex")
447
+
448
+
449
+ @pulumi.output_type
450
+ class GetScheduledQueriesScheduledQueryCollectionResult(dict):
451
+ def __init__(__self__, *,
452
+ items: Sequence['outputs.GetScheduledQueriesScheduledQueryCollectionItemResult']):
453
+ pulumi.set(__self__, "items", items)
454
+
455
+ @_builtins.property
456
+ @pulumi.getter
457
+ def items(self) -> Sequence['outputs.GetScheduledQueriesScheduledQueryCollectionItemResult']:
458
+ return pulumi.get(self, "items")
459
+
460
+
461
+ @pulumi.output_type
462
+ class GetScheduledQueriesScheduledQueryCollectionItemResult(dict):
463
+ def __init__(__self__, *,
464
+ apm_domain_id: _builtins.str,
465
+ defined_tags: Mapping[str, _builtins.str],
466
+ freeform_tags: Mapping[str, _builtins.str],
467
+ id: _builtins.str,
468
+ opc_dry_run: _builtins.str,
469
+ scheduled_query_description: _builtins.str,
470
+ scheduled_query_instances: _builtins.str,
471
+ scheduled_query_maximum_runtime_in_seconds: _builtins.str,
472
+ scheduled_query_name: _builtins.str,
473
+ scheduled_query_next_run_in_ms: _builtins.str,
474
+ scheduled_query_processing_configurations: Sequence['outputs.GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationResult'],
475
+ scheduled_query_processing_sub_type: _builtins.str,
476
+ scheduled_query_processing_type: _builtins.str,
477
+ scheduled_query_retention_criteria: _builtins.str,
478
+ scheduled_query_retention_period_in_ms: _builtins.str,
479
+ scheduled_query_schedule: _builtins.str,
480
+ scheduled_query_text: _builtins.str,
481
+ state: _builtins.str,
482
+ system_tags: Mapping[str, _builtins.str]):
483
+ """
484
+ :param _builtins.str apm_domain_id: The APM Domain ID for the intended request.
485
+ :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"}`
486
+ :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"}`
487
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the scheduled query . An OCID is generated when the scheduled query is created.
488
+ :param _builtins.str scheduled_query_description: Description for the scheduled query.
489
+ :param _builtins.str scheduled_query_instances: Scheduled query instances.
490
+ :param _builtins.str scheduled_query_maximum_runtime_in_seconds: Maximum runtime for the scheduled query in seconds.
491
+ :param _builtins.str scheduled_query_name: Name of the scheduled query.
492
+ :param _builtins.str scheduled_query_next_run_in_ms: Next run for the scheduled query.
493
+ :param Sequence['GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationArgs'] scheduled_query_processing_configurations: Definition of the scheduled query processing configuration.
494
+ :param _builtins.str scheduled_query_processing_sub_type: Processing sub type of the scheduled query.
495
+ :param _builtins.str scheduled_query_processing_type: Processing type of the scheduled query.
496
+ :param _builtins.str scheduled_query_retention_criteria: Retention criteria for the scheduled query.
497
+ :param _builtins.str scheduled_query_retention_period_in_ms: Retention period for the scheduled query in milliseconds.
498
+ :param _builtins.str scheduled_query_schedule: Schedule for the scheduled query.
499
+ :param _builtins.str scheduled_query_text: Scheduled query to be run.
500
+ :param _builtins.str state: The current lifecycle state of the Scheduled Query.
501
+ :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"}`
502
+ """
503
+ pulumi.set(__self__, "apm_domain_id", apm_domain_id)
504
+ pulumi.set(__self__, "defined_tags", defined_tags)
505
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
506
+ pulumi.set(__self__, "id", id)
507
+ pulumi.set(__self__, "opc_dry_run", opc_dry_run)
508
+ pulumi.set(__self__, "scheduled_query_description", scheduled_query_description)
509
+ pulumi.set(__self__, "scheduled_query_instances", scheduled_query_instances)
510
+ pulumi.set(__self__, "scheduled_query_maximum_runtime_in_seconds", scheduled_query_maximum_runtime_in_seconds)
511
+ pulumi.set(__self__, "scheduled_query_name", scheduled_query_name)
512
+ pulumi.set(__self__, "scheduled_query_next_run_in_ms", scheduled_query_next_run_in_ms)
513
+ pulumi.set(__self__, "scheduled_query_processing_configurations", scheduled_query_processing_configurations)
514
+ pulumi.set(__self__, "scheduled_query_processing_sub_type", scheduled_query_processing_sub_type)
515
+ pulumi.set(__self__, "scheduled_query_processing_type", scheduled_query_processing_type)
516
+ pulumi.set(__self__, "scheduled_query_retention_criteria", scheduled_query_retention_criteria)
517
+ pulumi.set(__self__, "scheduled_query_retention_period_in_ms", scheduled_query_retention_period_in_ms)
518
+ pulumi.set(__self__, "scheduled_query_schedule", scheduled_query_schedule)
519
+ pulumi.set(__self__, "scheduled_query_text", scheduled_query_text)
520
+ pulumi.set(__self__, "state", state)
521
+ pulumi.set(__self__, "system_tags", system_tags)
522
+
523
+ @_builtins.property
524
+ @pulumi.getter(name="apmDomainId")
525
+ def apm_domain_id(self) -> _builtins.str:
526
+ """
527
+ The APM Domain ID for the intended request.
528
+ """
529
+ return pulumi.get(self, "apm_domain_id")
530
+
531
+ @_builtins.property
532
+ @pulumi.getter(name="definedTags")
533
+ def defined_tags(self) -> Mapping[str, _builtins.str]:
534
+ """
535
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
536
+ """
537
+ return pulumi.get(self, "defined_tags")
538
+
539
+ @_builtins.property
540
+ @pulumi.getter(name="freeformTags")
541
+ def freeform_tags(self) -> Mapping[str, _builtins.str]:
542
+ """
543
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
544
+ """
545
+ return pulumi.get(self, "freeform_tags")
546
+
547
+ @_builtins.property
548
+ @pulumi.getter
549
+ def id(self) -> _builtins.str:
550
+ """
551
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the scheduled query . An OCID is generated when the scheduled query is created.
552
+ """
553
+ return pulumi.get(self, "id")
554
+
555
+ @_builtins.property
556
+ @pulumi.getter(name="opcDryRun")
557
+ def opc_dry_run(self) -> _builtins.str:
558
+ return pulumi.get(self, "opc_dry_run")
559
+
560
+ @_builtins.property
561
+ @pulumi.getter(name="scheduledQueryDescription")
562
+ def scheduled_query_description(self) -> _builtins.str:
563
+ """
564
+ Description for the scheduled query.
565
+ """
566
+ return pulumi.get(self, "scheduled_query_description")
567
+
568
+ @_builtins.property
569
+ @pulumi.getter(name="scheduledQueryInstances")
570
+ def scheduled_query_instances(self) -> _builtins.str:
571
+ """
572
+ Scheduled query instances.
573
+ """
574
+ return pulumi.get(self, "scheduled_query_instances")
575
+
576
+ @_builtins.property
577
+ @pulumi.getter(name="scheduledQueryMaximumRuntimeInSeconds")
578
+ def scheduled_query_maximum_runtime_in_seconds(self) -> _builtins.str:
579
+ """
580
+ Maximum runtime for the scheduled query in seconds.
581
+ """
582
+ return pulumi.get(self, "scheduled_query_maximum_runtime_in_seconds")
583
+
584
+ @_builtins.property
585
+ @pulumi.getter(name="scheduledQueryName")
586
+ def scheduled_query_name(self) -> _builtins.str:
587
+ """
588
+ Name of the scheduled query.
589
+ """
590
+ return pulumi.get(self, "scheduled_query_name")
591
+
592
+ @_builtins.property
593
+ @pulumi.getter(name="scheduledQueryNextRunInMs")
594
+ def scheduled_query_next_run_in_ms(self) -> _builtins.str:
595
+ """
596
+ Next run for the scheduled query.
597
+ """
598
+ return pulumi.get(self, "scheduled_query_next_run_in_ms")
599
+
600
+ @_builtins.property
601
+ @pulumi.getter(name="scheduledQueryProcessingConfigurations")
602
+ def scheduled_query_processing_configurations(self) -> Sequence['outputs.GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationResult']:
603
+ """
604
+ Definition of the scheduled query processing configuration.
605
+ """
606
+ return pulumi.get(self, "scheduled_query_processing_configurations")
607
+
608
+ @_builtins.property
609
+ @pulumi.getter(name="scheduledQueryProcessingSubType")
610
+ def scheduled_query_processing_sub_type(self) -> _builtins.str:
611
+ """
612
+ Processing sub type of the scheduled query.
613
+ """
614
+ return pulumi.get(self, "scheduled_query_processing_sub_type")
615
+
616
+ @_builtins.property
617
+ @pulumi.getter(name="scheduledQueryProcessingType")
618
+ def scheduled_query_processing_type(self) -> _builtins.str:
619
+ """
620
+ Processing type of the scheduled query.
621
+ """
622
+ return pulumi.get(self, "scheduled_query_processing_type")
623
+
624
+ @_builtins.property
625
+ @pulumi.getter(name="scheduledQueryRetentionCriteria")
626
+ def scheduled_query_retention_criteria(self) -> _builtins.str:
627
+ """
628
+ Retention criteria for the scheduled query.
629
+ """
630
+ return pulumi.get(self, "scheduled_query_retention_criteria")
631
+
632
+ @_builtins.property
633
+ @pulumi.getter(name="scheduledQueryRetentionPeriodInMs")
634
+ def scheduled_query_retention_period_in_ms(self) -> _builtins.str:
635
+ """
636
+ Retention period for the scheduled query in milliseconds.
637
+ """
638
+ return pulumi.get(self, "scheduled_query_retention_period_in_ms")
639
+
640
+ @_builtins.property
641
+ @pulumi.getter(name="scheduledQuerySchedule")
642
+ def scheduled_query_schedule(self) -> _builtins.str:
643
+ """
644
+ Schedule for the scheduled query.
645
+ """
646
+ return pulumi.get(self, "scheduled_query_schedule")
647
+
648
+ @_builtins.property
649
+ @pulumi.getter(name="scheduledQueryText")
650
+ def scheduled_query_text(self) -> _builtins.str:
651
+ """
652
+ Scheduled query to be run.
653
+ """
654
+ return pulumi.get(self, "scheduled_query_text")
655
+
656
+ @_builtins.property
657
+ @pulumi.getter
658
+ def state(self) -> _builtins.str:
659
+ """
660
+ The current lifecycle state of the Scheduled Query.
661
+ """
662
+ return pulumi.get(self, "state")
663
+
664
+ @_builtins.property
665
+ @pulumi.getter(name="systemTags")
666
+ def system_tags(self) -> Mapping[str, _builtins.str]:
667
+ """
668
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
669
+ """
670
+ return pulumi.get(self, "system_tags")
671
+
672
+
673
+ @pulumi.output_type
674
+ class GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationResult(dict):
675
+ def __init__(__self__, *,
676
+ custom_metrics: Sequence['outputs.GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationCustomMetricResult'],
677
+ object_storages: Sequence['outputs.GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationObjectStorageResult'],
678
+ streamings: Sequence['outputs.GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationStreamingResult']):
679
+ """
680
+ :param Sequence['GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationCustomMetricArgs'] custom_metrics: Definition of the Custom Metric.
681
+ :param Sequence['GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationObjectStorageArgs'] object_storages: Definition of the object storage.
682
+ :param Sequence['GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationStreamingArgs'] streamings: Definition of the Stream.
683
+ """
684
+ pulumi.set(__self__, "custom_metrics", custom_metrics)
685
+ pulumi.set(__self__, "object_storages", object_storages)
686
+ pulumi.set(__self__, "streamings", streamings)
687
+
688
+ @_builtins.property
689
+ @pulumi.getter(name="customMetrics")
690
+ def custom_metrics(self) -> Sequence['outputs.GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationCustomMetricResult']:
691
+ """
692
+ Definition of the Custom Metric.
693
+ """
694
+ return pulumi.get(self, "custom_metrics")
695
+
696
+ @_builtins.property
697
+ @pulumi.getter(name="objectStorages")
698
+ def object_storages(self) -> Sequence['outputs.GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationObjectStorageResult']:
699
+ """
700
+ Definition of the object storage.
701
+ """
702
+ return pulumi.get(self, "object_storages")
703
+
704
+ @_builtins.property
705
+ @pulumi.getter
706
+ def streamings(self) -> Sequence['outputs.GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationStreamingResult']:
707
+ """
708
+ Definition of the Stream.
709
+ """
710
+ return pulumi.get(self, "streamings")
711
+
712
+
713
+ @pulumi.output_type
714
+ class GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationCustomMetricResult(dict):
715
+ def __init__(__self__, *,
716
+ compartment: _builtins.str,
717
+ description: _builtins.str,
718
+ is_anomaly_detection_enabled: _builtins.bool,
719
+ is_metric_published: _builtins.bool,
720
+ name: _builtins.str,
721
+ namespace: _builtins.str,
722
+ resource_group: _builtins.str,
723
+ unit: _builtins.str):
724
+ """
725
+ :param _builtins.str compartment: Compartment of the Monitoring Service. It defaults to the APM domain's compartment if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that compartment.
726
+ :param _builtins.str description: Description of the Custom Metric.
727
+ :param _builtins.bool is_anomaly_detection_enabled: Indicates whether anomaly Detection should be performed on the generated metric.
728
+ :param _builtins.bool is_metric_published: Used in conjunction with the dry run header. When the dry run header is set and the isPublishMetric flag is set to true, the scheduled query is not created, but validations happen to check if the right Oracle Cloud Infrastructure policies have been set to write to the specified namespace/compartment.
729
+ :param _builtins.str name: Name of the Custom Metric.
730
+ :param _builtins.str namespace: Namespace in the Custom Metric. It defaults to `oracle_apm_custom` if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that namespace.
731
+ :param _builtins.str resource_group: Resource Group of the Custom Metric.
732
+ :param _builtins.str unit: Unit in which the metric value is reported. For example 'ms'.
733
+ """
734
+ pulumi.set(__self__, "compartment", compartment)
735
+ pulumi.set(__self__, "description", description)
736
+ pulumi.set(__self__, "is_anomaly_detection_enabled", is_anomaly_detection_enabled)
737
+ pulumi.set(__self__, "is_metric_published", is_metric_published)
738
+ pulumi.set(__self__, "name", name)
739
+ pulumi.set(__self__, "namespace", namespace)
740
+ pulumi.set(__self__, "resource_group", resource_group)
741
+ pulumi.set(__self__, "unit", unit)
742
+
743
+ @_builtins.property
744
+ @pulumi.getter
745
+ def compartment(self) -> _builtins.str:
746
+ """
747
+ Compartment of the Monitoring Service. It defaults to the APM domain's compartment if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that compartment.
748
+ """
749
+ return pulumi.get(self, "compartment")
750
+
751
+ @_builtins.property
752
+ @pulumi.getter
753
+ def description(self) -> _builtins.str:
754
+ """
755
+ Description of the Custom Metric.
756
+ """
757
+ return pulumi.get(self, "description")
758
+
759
+ @_builtins.property
760
+ @pulumi.getter(name="isAnomalyDetectionEnabled")
761
+ def is_anomaly_detection_enabled(self) -> _builtins.bool:
762
+ """
763
+ Indicates whether anomaly Detection should be performed on the generated metric.
764
+ """
765
+ return pulumi.get(self, "is_anomaly_detection_enabled")
766
+
767
+ @_builtins.property
768
+ @pulumi.getter(name="isMetricPublished")
769
+ def is_metric_published(self) -> _builtins.bool:
770
+ """
771
+ Used in conjunction with the dry run header. When the dry run header is set and the isPublishMetric flag is set to true, the scheduled query is not created, but validations happen to check if the right Oracle Cloud Infrastructure policies have been set to write to the specified namespace/compartment.
772
+ """
773
+ return pulumi.get(self, "is_metric_published")
774
+
775
+ @_builtins.property
776
+ @pulumi.getter
777
+ def name(self) -> _builtins.str:
778
+ """
779
+ Name of the Custom Metric.
780
+ """
781
+ return pulumi.get(self, "name")
782
+
783
+ @_builtins.property
784
+ @pulumi.getter
785
+ def namespace(self) -> _builtins.str:
786
+ """
787
+ Namespace in the Custom Metric. It defaults to `oracle_apm_custom` if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that namespace.
788
+ """
789
+ return pulumi.get(self, "namespace")
790
+
791
+ @_builtins.property
792
+ @pulumi.getter(name="resourceGroup")
793
+ def resource_group(self) -> _builtins.str:
794
+ """
795
+ Resource Group of the Custom Metric.
796
+ """
797
+ return pulumi.get(self, "resource_group")
798
+
799
+ @_builtins.property
800
+ @pulumi.getter
801
+ def unit(self) -> _builtins.str:
802
+ """
803
+ Unit in which the metric value is reported. For example 'ms'.
804
+ """
805
+ return pulumi.get(self, "unit")
806
+
807
+
808
+ @pulumi.output_type
809
+ class GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationObjectStorageResult(dict):
810
+ def __init__(__self__, *,
811
+ bucket: _builtins.str,
812
+ name_space: _builtins.str,
813
+ object_name_prefix: _builtins.str):
814
+ """
815
+ :param _builtins.str bucket: Bucket name in the object store.
816
+ :param _builtins.str name_space: Namespace in the object store.
817
+ :param _builtins.str object_name_prefix: Object name prefix in the object store.
818
+ """
819
+ pulumi.set(__self__, "bucket", bucket)
820
+ pulumi.set(__self__, "name_space", name_space)
821
+ pulumi.set(__self__, "object_name_prefix", object_name_prefix)
822
+
823
+ @_builtins.property
824
+ @pulumi.getter
825
+ def bucket(self) -> _builtins.str:
826
+ """
827
+ Bucket name in the object store.
828
+ """
829
+ return pulumi.get(self, "bucket")
830
+
831
+ @_builtins.property
832
+ @pulumi.getter(name="nameSpace")
833
+ def name_space(self) -> _builtins.str:
834
+ """
835
+ Namespace in the object store.
836
+ """
837
+ return pulumi.get(self, "name_space")
838
+
839
+ @_builtins.property
840
+ @pulumi.getter(name="objectNamePrefix")
841
+ def object_name_prefix(self) -> _builtins.str:
842
+ """
843
+ Object name prefix in the object store.
844
+ """
845
+ return pulumi.get(self, "object_name_prefix")
846
+
847
+
848
+ @pulumi.output_type
849
+ class GetScheduledQueriesScheduledQueryCollectionItemScheduledQueryProcessingConfigurationStreamingResult(dict):
850
+ def __init__(__self__, *,
851
+ stream_id: _builtins.str):
852
+ """
853
+ :param _builtins.str stream_id: Stream Id.
854
+ """
855
+ pulumi.set(__self__, "stream_id", stream_id)
856
+
857
+ @_builtins.property
858
+ @pulumi.getter(name="streamId")
859
+ def stream_id(self) -> _builtins.str:
860
+ """
861
+ Stream Id.
862
+ """
863
+ return pulumi.get(self, "stream_id")
864
+
865
+
866
+ @pulumi.output_type
867
+ class GetScheduledQueryScheduledQueryProcessingConfigurationResult(dict):
868
+ def __init__(__self__, *,
869
+ custom_metrics: Sequence['outputs.GetScheduledQueryScheduledQueryProcessingConfigurationCustomMetricResult'],
870
+ object_storages: Sequence['outputs.GetScheduledQueryScheduledQueryProcessingConfigurationObjectStorageResult'],
871
+ streamings: Sequence['outputs.GetScheduledQueryScheduledQueryProcessingConfigurationStreamingResult']):
872
+ """
873
+ :param Sequence['GetScheduledQueryScheduledQueryProcessingConfigurationCustomMetricArgs'] custom_metrics: Definition of the Custom Metric.
874
+ :param Sequence['GetScheduledQueryScheduledQueryProcessingConfigurationObjectStorageArgs'] object_storages: Definition of the object storage.
875
+ :param Sequence['GetScheduledQueryScheduledQueryProcessingConfigurationStreamingArgs'] streamings: Definition of the Stream.
876
+ """
877
+ pulumi.set(__self__, "custom_metrics", custom_metrics)
878
+ pulumi.set(__self__, "object_storages", object_storages)
879
+ pulumi.set(__self__, "streamings", streamings)
880
+
881
+ @_builtins.property
882
+ @pulumi.getter(name="customMetrics")
883
+ def custom_metrics(self) -> Sequence['outputs.GetScheduledQueryScheduledQueryProcessingConfigurationCustomMetricResult']:
884
+ """
885
+ Definition of the Custom Metric.
886
+ """
887
+ return pulumi.get(self, "custom_metrics")
888
+
889
+ @_builtins.property
890
+ @pulumi.getter(name="objectStorages")
891
+ def object_storages(self) -> Sequence['outputs.GetScheduledQueryScheduledQueryProcessingConfigurationObjectStorageResult']:
892
+ """
893
+ Definition of the object storage.
894
+ """
895
+ return pulumi.get(self, "object_storages")
896
+
897
+ @_builtins.property
898
+ @pulumi.getter
899
+ def streamings(self) -> Sequence['outputs.GetScheduledQueryScheduledQueryProcessingConfigurationStreamingResult']:
900
+ """
901
+ Definition of the Stream.
902
+ """
903
+ return pulumi.get(self, "streamings")
904
+
905
+
906
+ @pulumi.output_type
907
+ class GetScheduledQueryScheduledQueryProcessingConfigurationCustomMetricResult(dict):
908
+ def __init__(__self__, *,
909
+ compartment: _builtins.str,
910
+ description: _builtins.str,
911
+ is_anomaly_detection_enabled: _builtins.bool,
912
+ is_metric_published: _builtins.bool,
913
+ name: _builtins.str,
914
+ namespace: _builtins.str,
915
+ resource_group: _builtins.str,
916
+ unit: _builtins.str):
917
+ """
918
+ :param _builtins.str compartment: Compartment of the Monitoring Service. It defaults to the APM domain's compartment if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that compartment.
919
+ :param _builtins.str description: Description of the Custom Metric.
920
+ :param _builtins.bool is_anomaly_detection_enabled: Indicates whether anomaly Detection should be performed on the generated metric.
921
+ :param _builtins.bool is_metric_published: Used in conjunction with the dry run header. When the dry run header is set and the isPublishMetric flag is set to true, the scheduled query is not created, but validations happen to check if the right Oracle Cloud Infrastructure policies have been set to write to the specified namespace/compartment.
922
+ :param _builtins.str name: Name of the Custom Metric.
923
+ :param _builtins.str namespace: Namespace in the Custom Metric. It defaults to `oracle_apm_custom` if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that namespace.
924
+ :param _builtins.str resource_group: Resource Group of the Custom Metric.
925
+ :param _builtins.str unit: Unit in which the metric value is reported. For example 'ms'.
926
+ """
927
+ pulumi.set(__self__, "compartment", compartment)
928
+ pulumi.set(__self__, "description", description)
929
+ pulumi.set(__self__, "is_anomaly_detection_enabled", is_anomaly_detection_enabled)
930
+ pulumi.set(__self__, "is_metric_published", is_metric_published)
931
+ pulumi.set(__self__, "name", name)
932
+ pulumi.set(__self__, "namespace", namespace)
933
+ pulumi.set(__self__, "resource_group", resource_group)
934
+ pulumi.set(__self__, "unit", unit)
935
+
936
+ @_builtins.property
937
+ @pulumi.getter
938
+ def compartment(self) -> _builtins.str:
939
+ """
940
+ Compartment of the Monitoring Service. It defaults to the APM domain's compartment if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that compartment.
941
+ """
942
+ return pulumi.get(self, "compartment")
943
+
944
+ @_builtins.property
945
+ @pulumi.getter
946
+ def description(self) -> _builtins.str:
947
+ """
948
+ Description of the Custom Metric.
949
+ """
950
+ return pulumi.get(self, "description")
951
+
952
+ @_builtins.property
953
+ @pulumi.getter(name="isAnomalyDetectionEnabled")
954
+ def is_anomaly_detection_enabled(self) -> _builtins.bool:
955
+ """
956
+ Indicates whether anomaly Detection should be performed on the generated metric.
957
+ """
958
+ return pulumi.get(self, "is_anomaly_detection_enabled")
959
+
960
+ @_builtins.property
961
+ @pulumi.getter(name="isMetricPublished")
962
+ def is_metric_published(self) -> _builtins.bool:
963
+ """
964
+ Used in conjunction with the dry run header. When the dry run header is set and the isPublishMetric flag is set to true, the scheduled query is not created, but validations happen to check if the right Oracle Cloud Infrastructure policies have been set to write to the specified namespace/compartment.
965
+ """
966
+ return pulumi.get(self, "is_metric_published")
967
+
968
+ @_builtins.property
969
+ @pulumi.getter
970
+ def name(self) -> _builtins.str:
971
+ """
972
+ Name of the Custom Metric.
973
+ """
974
+ return pulumi.get(self, "name")
975
+
976
+ @_builtins.property
977
+ @pulumi.getter
978
+ def namespace(self) -> _builtins.str:
979
+ """
980
+ Namespace in the Custom Metric. It defaults to `oracle_apm_custom` if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that namespace.
981
+ """
982
+ return pulumi.get(self, "namespace")
983
+
984
+ @_builtins.property
985
+ @pulumi.getter(name="resourceGroup")
986
+ def resource_group(self) -> _builtins.str:
987
+ """
988
+ Resource Group of the Custom Metric.
989
+ """
990
+ return pulumi.get(self, "resource_group")
991
+
992
+ @_builtins.property
993
+ @pulumi.getter
994
+ def unit(self) -> _builtins.str:
995
+ """
996
+ Unit in which the metric value is reported. For example 'ms'.
997
+ """
998
+ return pulumi.get(self, "unit")
999
+
1000
+
1001
+ @pulumi.output_type
1002
+ class GetScheduledQueryScheduledQueryProcessingConfigurationObjectStorageResult(dict):
1003
+ def __init__(__self__, *,
1004
+ bucket: _builtins.str,
1005
+ name_space: _builtins.str,
1006
+ object_name_prefix: _builtins.str):
1007
+ """
1008
+ :param _builtins.str bucket: Bucket name in the object store.
1009
+ :param _builtins.str name_space: Namespace in the object store.
1010
+ :param _builtins.str object_name_prefix: Object name prefix in the object store.
1011
+ """
1012
+ pulumi.set(__self__, "bucket", bucket)
1013
+ pulumi.set(__self__, "name_space", name_space)
1014
+ pulumi.set(__self__, "object_name_prefix", object_name_prefix)
1015
+
1016
+ @_builtins.property
1017
+ @pulumi.getter
1018
+ def bucket(self) -> _builtins.str:
1019
+ """
1020
+ Bucket name in the object store.
1021
+ """
1022
+ return pulumi.get(self, "bucket")
1023
+
1024
+ @_builtins.property
1025
+ @pulumi.getter(name="nameSpace")
1026
+ def name_space(self) -> _builtins.str:
1027
+ """
1028
+ Namespace in the object store.
1029
+ """
1030
+ return pulumi.get(self, "name_space")
1031
+
1032
+ @_builtins.property
1033
+ @pulumi.getter(name="objectNamePrefix")
1034
+ def object_name_prefix(self) -> _builtins.str:
1035
+ """
1036
+ Object name prefix in the object store.
1037
+ """
1038
+ return pulumi.get(self, "object_name_prefix")
1039
+
1040
+
1041
+ @pulumi.output_type
1042
+ class GetScheduledQueryScheduledQueryProcessingConfigurationStreamingResult(dict):
1043
+ def __init__(__self__, *,
1044
+ stream_id: _builtins.str):
1045
+ """
1046
+ :param _builtins.str stream_id: Stream Id.
1047
+ """
1048
+ pulumi.set(__self__, "stream_id", stream_id)
1049
+
1050
+ @_builtins.property
1051
+ @pulumi.getter(name="streamId")
1052
+ def stream_id(self) -> _builtins.str:
1053
+ """
1054
+ Stream Id.
1055
+ """
1056
+ return pulumi.get(self, "stream_id")
1057
+
1058
+
88
1059
  @pulumi.output_type
89
1060
  class GetTraceAggregatedSnapshotDataDetailResult(dict):
90
1061
  def __init__(__self__, *,