oci-apmtraces 2.111.3 → 2.112.1

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 (133) hide show
  1. package/index.d.ts +3 -0
  2. package/index.js +4 -1
  3. package/index.js.map +1 -1
  4. package/lib/client.d.ts +145 -4
  5. package/lib/client.js +570 -5
  6. package/lib/client.js.map +1 -1
  7. package/lib/model/attribute-metadata.d.ts +55 -0
  8. package/lib/model/attribute-metadata.js +54 -0
  9. package/lib/model/attribute-metadata.js.map +1 -0
  10. package/lib/model/attribute-response.d.ts +1 -1
  11. package/lib/model/attribute-update-response.d.ts +1 -1
  12. package/lib/model/attribute.d.ts +33 -0
  13. package/lib/model/attribute.js +30 -0
  14. package/lib/model/attribute.js.map +1 -0
  15. package/lib/model/auto-activate-status.d.ts +10 -1
  16. package/lib/model/auto-activate-status.js +10 -0
  17. package/lib/model/auto-activate-status.js.map +1 -1
  18. package/lib/model/auto-activate-toggle-status.d.ts +10 -1
  19. package/lib/model/auto-activate-toggle-status.js +10 -0
  20. package/lib/model/auto-activate-toggle-status.js.map +1 -1
  21. package/lib/model/bulk-activate-attribute-detail.d.ts +10 -3
  22. package/lib/model/bulk-activate-attribute-detail.js +2 -0
  23. package/lib/model/bulk-activate-attribute-detail.js.map +1 -1
  24. package/lib/model/bulk-de-activate-attribute-detail.d.ts +2 -1
  25. package/lib/model/bulk-de-activate-attribute-detail.js +1 -0
  26. package/lib/model/bulk-de-activate-attribute-detail.js.map +1 -1
  27. package/lib/model/bulk-pin-attribute-detail.d.ts +2 -1
  28. package/lib/model/bulk-pin-attribute-detail.js +1 -0
  29. package/lib/model/bulk-pin-attribute-detail.js.map +1 -1
  30. package/lib/model/bulk-unpin-attribute-detail.d.ts +2 -1
  31. package/lib/model/bulk-unpin-attribute-detail.js +1 -0
  32. package/lib/model/bulk-unpin-attribute-detail.js.map +1 -1
  33. package/lib/model/bulk-update-attribute-detail.d.ts +3 -2
  34. package/lib/model/bulk-update-attribute-detail.js +1 -0
  35. package/lib/model/bulk-update-attribute-detail.js.map +1 -1
  36. package/lib/model/bulk-update-attribute-notes-detail.d.ts +2 -1
  37. package/lib/model/bulk-update-attribute-notes-detail.js +1 -0
  38. package/lib/model/bulk-update-attribute-notes-detail.js.map +1 -1
  39. package/lib/model/create-scheduled-query-details.d.ts +88 -0
  40. package/lib/model/create-scheduled-query-details.js +58 -0
  41. package/lib/model/create-scheduled-query-details.js.map +1 -0
  42. package/lib/model/custom-metric.d.ts +67 -0
  43. package/lib/model/custom-metric.js +30 -0
  44. package/lib/model/custom-metric.js.map +1 -0
  45. package/lib/model/index.d.ts +34 -0
  46. package/lib/model/index.js +36 -2
  47. package/lib/model/index.js.map +1 -1
  48. package/lib/model/lifecycle-states.d.ts +33 -0
  49. package/lib/model/lifecycle-states.js +44 -0
  50. package/lib/model/lifecycle-states.js.map +1 -0
  51. package/lib/model/log.d.ts +97 -0
  52. package/lib/model/log.js +69 -0
  53. package/lib/model/log.js.map +1 -0
  54. package/lib/model/object-storage.d.ts +38 -0
  55. package/lib/model/object-storage.js +30 -0
  56. package/lib/model/object-storage.js.map +1 -0
  57. package/lib/model/scheduled-query-collection.d.ts +29 -0
  58. package/lib/model/scheduled-query-collection.js +62 -0
  59. package/lib/model/scheduled-query-collection.js.map +1 -0
  60. package/lib/model/scheduled-query-processing-config.d.ts +27 -0
  61. package/lib/model/scheduled-query-processing-config.js +68 -0
  62. package/lib/model/scheduled-query-processing-config.js.map +1 -0
  63. package/lib/model/scheduled-query-processing-sub-type.d.ts +32 -0
  64. package/lib/model/scheduled-query-processing-sub-type.js +43 -0
  65. package/lib/model/scheduled-query-processing-sub-type.js.map +1 -0
  66. package/lib/model/scheduled-query-processing-type.d.ts +31 -0
  67. package/lib/model/scheduled-query-processing-type.js +42 -0
  68. package/lib/model/scheduled-query-processing-type.js.map +1 -0
  69. package/lib/model/scheduled-query-retention-criteria.d.ts +30 -0
  70. package/lib/model/scheduled-query-retention-criteria.js +41 -0
  71. package/lib/model/scheduled-query-retention-criteria.js.map +1 -0
  72. package/lib/model/scheduled-query-summary.d.ts +103 -0
  73. package/lib/model/scheduled-query-summary.js +58 -0
  74. package/lib/model/scheduled-query-summary.js.map +1 -0
  75. package/lib/model/scheduled-query.d.ts +118 -0
  76. package/lib/model/scheduled-query.js +58 -0
  77. package/lib/model/scheduled-query.js.map +1 -0
  78. package/lib/model/sort-order.d.ts +24 -0
  79. package/lib/model/sort-order.js +35 -0
  80. package/lib/model/sort-order.js.map +1 -0
  81. package/lib/model/streaming.d.ts +28 -0
  82. package/lib/model/streaming.js +30 -0
  83. package/lib/model/streaming.js.map +1 -0
  84. package/lib/model/tag-metadata.d.ts +1 -1
  85. package/lib/model/update-scheduled-query-details.d.ts +88 -0
  86. package/lib/model/update-scheduled-query-details.js +58 -0
  87. package/lib/model/update-scheduled-query-details.js.map +1 -0
  88. package/lib/request/create-scheduled-query-request.d.ts +50 -0
  89. package/lib/request/create-scheduled-query-request.js +15 -0
  90. package/lib/request/create-scheduled-query-request.js.map +1 -0
  91. package/lib/request/delete-scheduled-query-request.d.ts +52 -0
  92. package/lib/request/delete-scheduled-query-request.js +15 -0
  93. package/lib/request/delete-scheduled-query-request.js.map +1 -0
  94. package/lib/request/get-log-request.d.ts +53 -0
  95. package/lib/request/get-log-request.js +15 -0
  96. package/lib/request/get-log-request.js.map +1 -0
  97. package/lib/request/get-scheduled-query-request.d.ts +43 -0
  98. package/lib/request/get-scheduled-query-request.js +15 -0
  99. package/lib/request/get-scheduled-query-request.js.map +1 -0
  100. package/lib/request/get-trace-request.d.ts +2 -2
  101. package/lib/request/index.d.ts +12 -0
  102. package/lib/request/index.js +3 -1
  103. package/lib/request/index.js.map +1 -1
  104. package/lib/request/list-scheduled-queries-request.d.ts +74 -0
  105. package/lib/request/list-scheduled-queries-request.js +27 -0
  106. package/lib/request/list-scheduled-queries-request.js.map +1 -0
  107. package/lib/request/query-request.d.ts +6 -4
  108. package/lib/request/update-scheduled-query-request.d.ts +64 -0
  109. package/lib/request/update-scheduled-query-request.js +15 -0
  110. package/lib/request/update-scheduled-query-request.js.map +1 -0
  111. package/lib/response/create-scheduled-query-response.d.ts +30 -0
  112. package/lib/response/create-scheduled-query-response.js +15 -0
  113. package/lib/response/create-scheduled-query-response.js.map +1 -0
  114. package/lib/response/delete-scheduled-query-response.d.ts +20 -0
  115. package/lib/response/delete-scheduled-query-response.js +15 -0
  116. package/lib/response/delete-scheduled-query-response.js.map +1 -0
  117. package/lib/response/get-log-response.d.ts +30 -0
  118. package/lib/response/get-log-response.js +15 -0
  119. package/lib/response/get-log-response.js.map +1 -0
  120. package/lib/response/get-scheduled-query-response.d.ts +30 -0
  121. package/lib/response/get-scheduled-query-response.js +15 -0
  122. package/lib/response/get-scheduled-query-response.js.map +1 -0
  123. package/lib/response/index.d.ts +12 -0
  124. package/lib/response/list-scheduled-queries-response.d.ts +32 -0
  125. package/lib/response/list-scheduled-queries-response.js +15 -0
  126. package/lib/response/list-scheduled-queries-response.js.map +1 -0
  127. package/lib/response/update-scheduled-query-response.d.ts +30 -0
  128. package/lib/response/update-scheduled-query-response.js +15 -0
  129. package/lib/response/update-scheduled-query-response.js.map +1 -0
  130. package/lib/scheduledquery-waiter.d.ts +30 -0
  131. package/lib/scheduledquery-waiter.js +66 -0
  132. package/lib/scheduledquery-waiter.js.map +1 -0
  133. package/package.json +3 -3
@@ -0,0 +1,97 @@
1
+ /**
2
+ * Application Performance Monitoring Trace Explorer API
3
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
4
+
5
+ * OpenAPI spec version: 20200630
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
12
+ * 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.
13
+ */
14
+ import * as model from "../model";
15
+ /**
16
+ * Definition of a log object.
17
+ *
18
+ */
19
+ export interface Log {
20
+ /**
21
+ * Unique identifier (logId) for the logKey. Note that this field is
22
+ * defined as logKey in the API and it maps to the logId in Application Performance Monitoring.
23
+ *
24
+ */
25
+ "logKey": string;
26
+ /**
27
+ * Name of the event.
28
+ *
29
+ */
30
+ "eventName"?: string;
31
+ /**
32
+ * Time used by the time picker (RecordedTime). Either the timeCreated if present or the timeObserved.
33
+ *
34
+ */
35
+ "timestamp": Date;
36
+ /**
37
+ * Unique identifier for the trace (traceId) associated with this log.
38
+ *
39
+ */
40
+ "traceKey"?: string;
41
+ /**
42
+ * Unique identifier for the span (spanId) associated with this log.
43
+ *
44
+ */
45
+ "spanKey"?: string;
46
+ /**
47
+ * Trace flags.
48
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
49
+ */
50
+ "traceFlags"?: number;
51
+ /**
52
+ * Time that the log event occurred (CreatedTime).
53
+ *
54
+ */
55
+ "timeCreated"?: Date;
56
+ /**
57
+ * Time that the log was received by apm (ObservedTime).
58
+ *
59
+ */
60
+ "timeObserved"?: Date;
61
+ /**
62
+ * Log Severity text (SeverityText). Also known as Log level.
63
+ *
64
+ */
65
+ "severityText"?: string;
66
+ /**
67
+ * Log Severity number (SeverityNumber).
68
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
69
+ */
70
+ "severityNumber"?: number;
71
+ /**
72
+ * Log body (Body).
73
+ *
74
+ */
75
+ "body"?: string;
76
+ /**
77
+ * Full values for attributes that are too long to be stored as a log attribute (Overflow).
78
+ *
79
+ */
80
+ "overflowAttributes"?: string;
81
+ /**
82
+ * List of attributes associated with the logs.
83
+ *
84
+ */
85
+ "attributes"?: Array<model.Attribute>;
86
+ /**
87
+ * Metadata about the attributes in the logs.
88
+ *
89
+ */
90
+ "attributeMetadata"?: {
91
+ [key: string]: model.AttributeMetadata;
92
+ };
93
+ }
94
+ export declare namespace Log {
95
+ function getJsonObj(obj: Log): object;
96
+ function getDeserializedJsonObj(obj: Log): object;
97
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ /**
3
+ * Application Performance Monitoring Trace Explorer API
4
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
5
+
6
+ * OpenAPI spec version: 20200630
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OracleSDKGenerator.
10
+ * Do not edit the class manually.
11
+ *
12
+ * Copyright (c) 2020, 2025, 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
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
18
+ }) : (function(o, m, k, k2) {
19
+ if (k2 === undefined) k2 = k;
20
+ o[k2] = m[k];
21
+ }));
22
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
23
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
24
+ }) : function(o, v) {
25
+ o["default"] = v;
26
+ });
27
+ var __importStar = (this && this.__importStar) || function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ Object.defineProperty(exports, "__esModule", { value: true });
35
+ exports.Log = void 0;
36
+ const model = __importStar(require("../model"));
37
+ const common = require("oci-common");
38
+ var Log;
39
+ (function (Log) {
40
+ function getJsonObj(obj) {
41
+ const jsonObj = Object.assign(Object.assign({}, obj), {
42
+ "attributes": obj.attributes
43
+ ? obj.attributes.map(item => {
44
+ return model.Attribute.getJsonObj(item);
45
+ })
46
+ : undefined,
47
+ "attributeMetadata": obj.attributeMetadata
48
+ ? common.mapContainer(obj.attributeMetadata, model.AttributeMetadata.getJsonObj)
49
+ : undefined
50
+ });
51
+ return jsonObj;
52
+ }
53
+ Log.getJsonObj = getJsonObj;
54
+ function getDeserializedJsonObj(obj) {
55
+ const jsonObj = Object.assign(Object.assign({}, obj), {
56
+ "attributes": obj.attributes
57
+ ? obj.attributes.map(item => {
58
+ return model.Attribute.getDeserializedJsonObj(item);
59
+ })
60
+ : undefined,
61
+ "attributeMetadata": obj.attributeMetadata
62
+ ? common.mapContainer(obj.attributeMetadata, model.AttributeMetadata.getDeserializedJsonObj)
63
+ : undefined
64
+ });
65
+ return jsonObj;
66
+ }
67
+ Log.getDeserializedJsonObj = getDeserializedJsonObj;
68
+ })(Log = exports.Log || (exports.Log = {}));
69
+ //# sourceMappingURL=log.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"log.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/log.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAClC,qCAAsC;AAgFtC,IAAiB,GAAG,CAsCnB;AAtCD,WAAiB,GAAG;IAClB,SAAgB,UAAU,CAAC,GAAQ;QACjC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACxB,OAAO,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC1C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YACb,mBAAmB,EAAE,GAAG,CAAC,iBAAiB;gBACxC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC,iBAAiB,EAAE,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC;gBAChF,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAhBe,cAAU,aAgBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAQ;QAC7C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACxB,OAAO,KAAK,CAAC,SAAS,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACtD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YACb,mBAAmB,EAAE,GAAG,CAAC,iBAAiB;gBACxC,CAAC,CAAC,MAAM,CAAC,YAAY,CACjB,GAAG,CAAC,iBAAiB,EACrB,KAAK,CAAC,iBAAiB,CAAC,sBAAsB,CAC/C;gBACH,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAnBe,0BAAsB,yBAmBrC,CAAA;AACH,CAAC,EAtCgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAsCnB"}
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Application Performance Monitoring Trace Explorer API
3
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
4
+
5
+ * OpenAPI spec version: 20200630
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
12
+ * 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.
13
+ */
14
+ /**
15
+ * Definition of the object storage.
16
+ *
17
+ */
18
+ export interface ObjectStorage {
19
+ /**
20
+ * Bucket name in the object store.
21
+ *
22
+ */
23
+ "bucketName"?: string;
24
+ /**
25
+ * Namespace in the object store.
26
+ *
27
+ */
28
+ "nameSpace"?: string;
29
+ /**
30
+ * Object name prefix in the object store.
31
+ *
32
+ */
33
+ "objectNamePrefix"?: string;
34
+ }
35
+ export declare namespace ObjectStorage {
36
+ function getJsonObj(obj: ObjectStorage): object;
37
+ function getDeserializedJsonObj(obj: ObjectStorage): object;
38
+ }
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ /**
3
+ * Application Performance Monitoring Trace Explorer API
4
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
5
+
6
+ * OpenAPI spec version: 20200630
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OracleSDKGenerator.
10
+ * Do not edit the class manually.
11
+ *
12
+ * Copyright (c) 2020, 2025, 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
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.ObjectStorage = void 0;
17
+ var ObjectStorage;
18
+ (function (ObjectStorage) {
19
+ function getJsonObj(obj) {
20
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
21
+ return jsonObj;
22
+ }
23
+ ObjectStorage.getJsonObj = getJsonObj;
24
+ function getDeserializedJsonObj(obj) {
25
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
26
+ return jsonObj;
27
+ }
28
+ ObjectStorage.getDeserializedJsonObj = getDeserializedJsonObj;
29
+ })(ObjectStorage = exports.ObjectStorage || (exports.ObjectStorage = {}));
30
+ //# sourceMappingURL=object-storage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"object-storage.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/object-storage.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AA2BH,IAAiB,aAAa,CAW7B;AAXD,WAAiB,aAAa;IAC5B,SAAgB,UAAU,CAAC,GAAkB;QAC3C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,wBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkB;QACvD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAW7B"}
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Application Performance Monitoring Trace Explorer API
3
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
4
+
5
+ * OpenAPI spec version: 20200630
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
12
+ * 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.
13
+ */
14
+ import * as model from "../model";
15
+ /**
16
+ * A collection of scheduled queries in the APM Domain.
17
+ *
18
+ */
19
+ export interface ScheduledQueryCollection {
20
+ /**
21
+ * A collection of scheduled query summaries in the APM Domain.
22
+ *
23
+ */
24
+ "items": Array<model.ScheduledQuerySummary>;
25
+ }
26
+ export declare namespace ScheduledQueryCollection {
27
+ function getJsonObj(obj: ScheduledQueryCollection): object;
28
+ function getDeserializedJsonObj(obj: ScheduledQueryCollection): object;
29
+ }
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ /**
3
+ * Application Performance Monitoring Trace Explorer API
4
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
5
+
6
+ * OpenAPI spec version: 20200630
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OracleSDKGenerator.
10
+ * Do not edit the class manually.
11
+ *
12
+ * Copyright (c) 2020, 2025, 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
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
18
+ }) : (function(o, m, k, k2) {
19
+ if (k2 === undefined) k2 = k;
20
+ o[k2] = m[k];
21
+ }));
22
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
23
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
24
+ }) : function(o, v) {
25
+ o["default"] = v;
26
+ });
27
+ var __importStar = (this && this.__importStar) || function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ Object.defineProperty(exports, "__esModule", { value: true });
35
+ exports.ScheduledQueryCollection = void 0;
36
+ const model = __importStar(require("../model"));
37
+ var ScheduledQueryCollection;
38
+ (function (ScheduledQueryCollection) {
39
+ function getJsonObj(obj) {
40
+ const jsonObj = Object.assign(Object.assign({}, obj), {
41
+ "items": obj.items
42
+ ? obj.items.map(item => {
43
+ return model.ScheduledQuerySummary.getJsonObj(item);
44
+ })
45
+ : undefined
46
+ });
47
+ return jsonObj;
48
+ }
49
+ ScheduledQueryCollection.getJsonObj = getJsonObj;
50
+ function getDeserializedJsonObj(obj) {
51
+ const jsonObj = Object.assign(Object.assign({}, obj), {
52
+ "items": obj.items
53
+ ? obj.items.map(item => {
54
+ return model.ScheduledQuerySummary.getDeserializedJsonObj(item);
55
+ })
56
+ : undefined
57
+ });
58
+ return jsonObj;
59
+ }
60
+ ScheduledQueryCollection.getDeserializedJsonObj = getDeserializedJsonObj;
61
+ })(ScheduledQueryCollection = exports.ScheduledQueryCollection || (exports.ScheduledQueryCollection = {}));
62
+ //# sourceMappingURL=scheduled-query-collection.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scheduled-query-collection.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/scheduled-query-collection.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAelC,IAAiB,wBAAwB,CA6BxC;AA7BD,WAAiB,wBAAwB;IACvC,SAAgB,UAAU,CAAC,GAA6B;QACtD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACtD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,mCAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA6B;QAClE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,qBAAqB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAClE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,+CAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QA6BxC"}
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Application Performance Monitoring Trace Explorer API
3
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
4
+
5
+ * OpenAPI spec version: 20200630
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
12
+ * 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.
13
+ */
14
+ import * as model from "../model";
15
+ /**
16
+ * Definition of the scheduled query processing configuration.
17
+ *
18
+ */
19
+ export interface ScheduledQueryProcessingConfig {
20
+ "streaming"?: model.Streaming;
21
+ "objectStorage"?: model.ObjectStorage;
22
+ "customMetric"?: model.CustomMetric;
23
+ }
24
+ export declare namespace ScheduledQueryProcessingConfig {
25
+ function getJsonObj(obj: ScheduledQueryProcessingConfig): object;
26
+ function getDeserializedJsonObj(obj: ScheduledQueryProcessingConfig): object;
27
+ }
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ /**
3
+ * Application Performance Monitoring Trace Explorer API
4
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
5
+
6
+ * OpenAPI spec version: 20200630
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OracleSDKGenerator.
10
+ * Do not edit the class manually.
11
+ *
12
+ * Copyright (c) 2020, 2025, 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
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
18
+ }) : (function(o, m, k, k2) {
19
+ if (k2 === undefined) k2 = k;
20
+ o[k2] = m[k];
21
+ }));
22
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
23
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
24
+ }) : function(o, v) {
25
+ o["default"] = v;
26
+ });
27
+ var __importStar = (this && this.__importStar) || function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ Object.defineProperty(exports, "__esModule", { value: true });
35
+ exports.ScheduledQueryProcessingConfig = void 0;
36
+ const model = __importStar(require("../model"));
37
+ var ScheduledQueryProcessingConfig;
38
+ (function (ScheduledQueryProcessingConfig) {
39
+ function getJsonObj(obj) {
40
+ const jsonObj = Object.assign(Object.assign({}, obj), {
41
+ "streaming": obj.streaming ? model.Streaming.getJsonObj(obj.streaming) : undefined,
42
+ "objectStorage": obj.objectStorage
43
+ ? model.ObjectStorage.getJsonObj(obj.objectStorage)
44
+ : undefined,
45
+ "customMetric": obj.customMetric
46
+ ? model.CustomMetric.getJsonObj(obj.customMetric)
47
+ : undefined
48
+ });
49
+ return jsonObj;
50
+ }
51
+ ScheduledQueryProcessingConfig.getJsonObj = getJsonObj;
52
+ function getDeserializedJsonObj(obj) {
53
+ const jsonObj = Object.assign(Object.assign({}, obj), {
54
+ "streaming": obj.streaming
55
+ ? model.Streaming.getDeserializedJsonObj(obj.streaming)
56
+ : undefined,
57
+ "objectStorage": obj.objectStorage
58
+ ? model.ObjectStorage.getDeserializedJsonObj(obj.objectStorage)
59
+ : undefined,
60
+ "customMetric": obj.customMetric
61
+ ? model.CustomMetric.getDeserializedJsonObj(obj.customMetric)
62
+ : undefined
63
+ });
64
+ return jsonObj;
65
+ }
66
+ ScheduledQueryProcessingConfig.getDeserializedJsonObj = getDeserializedJsonObj;
67
+ })(ScheduledQueryProcessingConfig = exports.ScheduledQueryProcessingConfig || (exports.ScheduledQueryProcessingConfig = {}));
68
+ //# sourceMappingURL=scheduled-query-processing-config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scheduled-query-processing-config.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/scheduled-query-processing-config.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAalC,IAAiB,8BAA8B,CAmC9C;AAnCD,WAAiB,8BAA8B;IAC7C,SAAgB,UAAU,CAAC,GAAmC;QAC5D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,WAAW,EAAE,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS;YAClF,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,UAAU,CAAC,GAAG,CAAC,aAAa,CAAC;gBACnD,CAAC,CAAC,SAAS;YACb,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,UAAU,CAAC,GAAG,CAAC,YAAY,CAAC;gBACjD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAfe,yCAAU,aAezB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmC;QACxE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,sBAAsB,CAAC,GAAG,CAAC,SAAS,CAAC;gBACvD,CAAC,CAAC,SAAS;YACb,eAAe,EAAE,GAAG,CAAC,aAAa;gBAChC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,sBAAsB,CAAC,GAAG,CAAC,aAAa,CAAC;gBAC/D,CAAC,CAAC,SAAS;YACb,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,sBAAsB,CAAC,GAAG,CAAC,YAAY,CAAC;gBAC7D,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,qDAAsB,yBAiBrC,CAAA;AACH,CAAC,EAnCgB,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QAmC9C"}
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Application Performance Monitoring Trace Explorer API
3
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
4
+
5
+ * OpenAPI spec version: 20200630
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
12
+ * 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.
13
+ */
14
+ /**
15
+ * Sub type of the scheduled query.
16
+ *
17
+ **/
18
+ export declare enum ScheduledQueryProcessingSubType {
19
+ ObjectStorage = "OBJECT_STORAGE",
20
+ Streaming = "STREAMING",
21
+ CustomMetric = "CUSTOM_METRIC",
22
+ None = "NONE",
23
+ /**
24
+ * This value is used if a service returns a value for this enum that is not recognized by this
25
+ * version of the SDK.
26
+ */
27
+ UnknownValue = "UNKNOWN_VALUE"
28
+ }
29
+ export declare namespace ScheduledQueryProcessingSubType {
30
+ function getJsonObj(obj: ScheduledQueryProcessingSubType): ScheduledQueryProcessingSubType;
31
+ function getDeserializedJsonObj(obj: ScheduledQueryProcessingSubType): ScheduledQueryProcessingSubType;
32
+ }
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ /**
3
+ * Application Performance Monitoring Trace Explorer API
4
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
5
+
6
+ * OpenAPI spec version: 20200630
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OracleSDKGenerator.
10
+ * Do not edit the class manually.
11
+ *
12
+ * Copyright (c) 2020, 2025, 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
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.ScheduledQueryProcessingSubType = void 0;
17
+ /**
18
+ * Sub type of the scheduled query.
19
+ *
20
+ **/
21
+ var ScheduledQueryProcessingSubType;
22
+ (function (ScheduledQueryProcessingSubType) {
23
+ ScheduledQueryProcessingSubType["ObjectStorage"] = "OBJECT_STORAGE";
24
+ ScheduledQueryProcessingSubType["Streaming"] = "STREAMING";
25
+ ScheduledQueryProcessingSubType["CustomMetric"] = "CUSTOM_METRIC";
26
+ ScheduledQueryProcessingSubType["None"] = "NONE";
27
+ /**
28
+ * This value is used if a service returns a value for this enum that is not recognized by this
29
+ * version of the SDK.
30
+ */
31
+ ScheduledQueryProcessingSubType["UnknownValue"] = "UNKNOWN_VALUE";
32
+ })(ScheduledQueryProcessingSubType = exports.ScheduledQueryProcessingSubType || (exports.ScheduledQueryProcessingSubType = {}));
33
+ (function (ScheduledQueryProcessingSubType) {
34
+ function getJsonObj(obj) {
35
+ return obj;
36
+ }
37
+ ScheduledQueryProcessingSubType.getJsonObj = getJsonObj;
38
+ function getDeserializedJsonObj(obj) {
39
+ return obj;
40
+ }
41
+ ScheduledQueryProcessingSubType.getDeserializedJsonObj = getDeserializedJsonObj;
42
+ })(ScheduledQueryProcessingSubType = exports.ScheduledQueryProcessingSubType || (exports.ScheduledQueryProcessingSubType = {}));
43
+ //# sourceMappingURL=scheduled-query-processing-sub-type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scheduled-query-processing-sub-type.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/scheduled-query-processing-sub-type.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAKH;;;IAGI;AACJ,IAAY,+BAWX;AAXD,WAAY,+BAA+B;IACzC,mEAAgC,CAAA;IAChC,0DAAuB,CAAA;IACvB,iEAA8B,CAAA;IAC9B,gDAAa,CAAA;IAEb;;;OAGG;IACH,iEAA8B,CAAA;AAChC,CAAC,EAXW,+BAA+B,GAA/B,uCAA+B,KAA/B,uCAA+B,QAW1C;AAED,WAAiB,+BAA+B;IAC9C,SAAgB,UAAU,CACxB,GAAoC;QAEpC,OAAO,GAAG,CAAC;IACb,CAAC;IAJe,0CAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CACpC,GAAoC;QAEpC,OAAO,GAAG,CAAC;IACb,CAAC;IAJe,sDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,+BAA+B,GAA/B,uCAA+B,KAA/B,uCAA+B,QAW/C"}
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Application Performance Monitoring Trace Explorer API
3
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
4
+
5
+ * OpenAPI spec version: 20200630
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
12
+ * 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.
13
+ */
14
+ /**
15
+ * A processing type for the scheduled query
16
+ *
17
+ **/
18
+ export declare enum ScheduledQueryProcessingType {
19
+ Export = "EXPORT",
20
+ Query = "QUERY",
21
+ Alert = "ALERT",
22
+ /**
23
+ * This value is used if a service returns a value for this enum that is not recognized by this
24
+ * version of the SDK.
25
+ */
26
+ UnknownValue = "UNKNOWN_VALUE"
27
+ }
28
+ export declare namespace ScheduledQueryProcessingType {
29
+ function getJsonObj(obj: ScheduledQueryProcessingType): ScheduledQueryProcessingType;
30
+ function getDeserializedJsonObj(obj: ScheduledQueryProcessingType): ScheduledQueryProcessingType;
31
+ }
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ /**
3
+ * Application Performance Monitoring Trace Explorer API
4
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
5
+
6
+ * OpenAPI spec version: 20200630
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OracleSDKGenerator.
10
+ * Do not edit the class manually.
11
+ *
12
+ * Copyright (c) 2020, 2025, 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
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.ScheduledQueryProcessingType = void 0;
17
+ /**
18
+ * A processing type for the scheduled query
19
+ *
20
+ **/
21
+ var ScheduledQueryProcessingType;
22
+ (function (ScheduledQueryProcessingType) {
23
+ ScheduledQueryProcessingType["Export"] = "EXPORT";
24
+ ScheduledQueryProcessingType["Query"] = "QUERY";
25
+ ScheduledQueryProcessingType["Alert"] = "ALERT";
26
+ /**
27
+ * This value is used if a service returns a value for this enum that is not recognized by this
28
+ * version of the SDK.
29
+ */
30
+ ScheduledQueryProcessingType["UnknownValue"] = "UNKNOWN_VALUE";
31
+ })(ScheduledQueryProcessingType = exports.ScheduledQueryProcessingType || (exports.ScheduledQueryProcessingType = {}));
32
+ (function (ScheduledQueryProcessingType) {
33
+ function getJsonObj(obj) {
34
+ return obj;
35
+ }
36
+ ScheduledQueryProcessingType.getJsonObj = getJsonObj;
37
+ function getDeserializedJsonObj(obj) {
38
+ return obj;
39
+ }
40
+ ScheduledQueryProcessingType.getDeserializedJsonObj = getDeserializedJsonObj;
41
+ })(ScheduledQueryProcessingType = exports.ScheduledQueryProcessingType || (exports.ScheduledQueryProcessingType = {}));
42
+ //# sourceMappingURL=scheduled-query-processing-type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scheduled-query-processing-type.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/scheduled-query-processing-type.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAKH;;;IAGI;AACJ,IAAY,4BAUX;AAVD,WAAY,4BAA4B;IACtC,iDAAiB,CAAA;IACjB,+CAAe,CAAA;IACf,+CAAe,CAAA;IAEf;;;OAGG;IACH,8DAA8B,CAAA;AAChC,CAAC,EAVW,4BAA4B,GAA5B,oCAA4B,KAA5B,oCAA4B,QAUvC;AAED,WAAiB,4BAA4B;IAC3C,SAAgB,UAAU,CAAC,GAAiC;QAC1D,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,uCAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CACpC,GAAiC;QAEjC,OAAO,GAAG,CAAC;IACb,CAAC;IAJe,mDAAsB,yBAIrC,CAAA;AACH,CAAC,EATgB,4BAA4B,GAA5B,oCAA4B,KAA5B,oCAA4B,QAS5C"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ * Application Performance Monitoring Trace Explorer API
3
+ * Use the Application Performance Monitoring Trace Explorer API to query traces and associated spans in Trace Explorer. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
4
+
5
+ * OpenAPI spec version: 20200630
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OracleSDKGenerator.
9
+ * Do not edit the class manually.
10
+ *
11
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
12
+ * 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.
13
+ */
14
+ /**
15
+ * Retention crtieria for the scheduled query.
16
+ *
17
+ **/
18
+ export declare enum ScheduledQueryRetentionCriteria {
19
+ KeepDataUntilRetentionPeriod = "KEEP_DATA_UNTIL_RETENTION_PERIOD",
20
+ Update = "UPDATE",
21
+ /**
22
+ * This value is used if a service returns a value for this enum that is not recognized by this
23
+ * version of the SDK.
24
+ */
25
+ UnknownValue = "UNKNOWN_VALUE"
26
+ }
27
+ export declare namespace ScheduledQueryRetentionCriteria {
28
+ function getJsonObj(obj: ScheduledQueryRetentionCriteria): ScheduledQueryRetentionCriteria;
29
+ function getDeserializedJsonObj(obj: ScheduledQueryRetentionCriteria): ScheduledQueryRetentionCriteria;
30
+ }