You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/apmconfig/lib/client.ts
+81
Original file line number
Diff line number
Diff line change
@@ -673,6 +673,87 @@ export class ConfigClient {
673
673
}
674
674
}
675
675
676
+
/**
677
+
* Tests a data processing operation on the provided input, returning the potentially modified
678
+
* input as output. Returns 200 on success, 422 when the input can not be processed.
679
+
*
680
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
681
+
* @param TestRequest
682
+
* @return TestResponse
683
+
* @throws OciError when an error occurs
684
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/apmconfig/Test.ts.html |here} to see how to use Test API.
* Application Performance Monitoring Configuration API
3
+
* Use the Application Performance Monitoring Configuration API to query and set Application Performance Monitoring
4
+
configuration. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
5
+
6
+
* OpenAPI spec version: 20210201
7
+
*
8
+
*
9
+
* NOTE: This class is auto generated by OracleSDKGenerator.
10
+
* Do not edit the class manually.
11
+
*
12
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
13
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
14
+
*/
15
+
16
+
import*asmodelfrom"../model";
17
+
importcommon= require("oci-common");
18
+
19
+
/**
20
+
* A span filter written in text, or as the [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of a
21
+
* SpanFilter resource. If both are given, the filterText is used.
22
+
*
23
+
*/
24
+
exportinterfaceFilterTextOrId{
25
+
/**
26
+
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of a Span Filter. The filterId is mandatory for the creation
27
+
* of MetricGroups. A filterId is generated when a Span Filter is created.
28
+
*
29
+
*/
30
+
"filterId"?: string;
31
+
/**
32
+
* The string that defines the Span Filter expression.
* Application Performance Monitoring Configuration API
3
+
* Use the Application Performance Monitoring Configuration API to query and set Application Performance Monitoring
4
+
configuration. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
5
+
6
+
* OpenAPI spec version: 20210201
7
+
*
8
+
*
9
+
* NOTE: This class is auto generated by OracleSDKGenerator.
10
+
* Do not edit the class manually.
11
+
*
12
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
13
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
* Application Performance Monitoring Configuration API
3
+
* Use the Application Performance Monitoring Configuration API to query and set Application Performance Monitoring
4
+
configuration. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
5
+
6
+
* OpenAPI spec version: 20210201
7
+
*
8
+
*
9
+
* NOTE: This class is auto generated by OracleSDKGenerator.
10
+
* Do not edit the class manually.
11
+
*
12
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
13
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
0 commit comments