oci-apmtraces 2.111.2 → 2.112.0

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,58 @@
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.UpdateScheduledQueryDetails = void 0;
36
+ const model = __importStar(require("../model"));
37
+ var UpdateScheduledQueryDetails;
38
+ (function (UpdateScheduledQueryDetails) {
39
+ function getJsonObj(obj) {
40
+ const jsonObj = Object.assign(Object.assign({}, obj), {
41
+ "scheduledQueryProcessingConfiguration": obj.scheduledQueryProcessingConfiguration
42
+ ? model.ScheduledQueryProcessingConfig.getJsonObj(obj.scheduledQueryProcessingConfiguration)
43
+ : undefined
44
+ });
45
+ return jsonObj;
46
+ }
47
+ UpdateScheduledQueryDetails.getJsonObj = getJsonObj;
48
+ function getDeserializedJsonObj(obj) {
49
+ const jsonObj = Object.assign(Object.assign({}, obj), {
50
+ "scheduledQueryProcessingConfiguration": obj.scheduledQueryProcessingConfiguration
51
+ ? model.ScheduledQueryProcessingConfig.getDeserializedJsonObj(obj.scheduledQueryProcessingConfiguration)
52
+ : undefined
53
+ });
54
+ return jsonObj;
55
+ }
56
+ UpdateScheduledQueryDetails.getDeserializedJsonObj = getDeserializedJsonObj;
57
+ })(UpdateScheduledQueryDetails = exports.UpdateScheduledQueryDetails || (exports.UpdateScheduledQueryDetails = {}));
58
+ //# sourceMappingURL=update-scheduled-query-details.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-scheduled-query-details.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/update-scheduled-query-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAoElC,IAAiB,2BAA2B,CA6B3C;AA7BD,WAAiB,2BAA2B;IAC1C,SAAgB,UAAU,CAAC,GAAgC;QACzD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,uCAAuC,EAAE,GAAG,CAAC,qCAAqC;gBAChF,CAAC,CAAC,KAAK,CAAC,8BAA8B,CAAC,UAAU,CAC7C,GAAG,CAAC,qCAAqC,CAC1C;gBACH,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,sCAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgC;QACrE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,uCAAuC,EAAE,GAAG,CAAC,qCAAqC;gBAChF,CAAC,CAAC,KAAK,CAAC,8BAA8B,CAAC,sBAAsB,CACzD,GAAG,CAAC,qCAAqC,CAC1C;gBACH,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,kDAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QA6B3C"}
@@ -0,0 +1,50 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20200630
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
11
+ * 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.
12
+ */
13
+ import * as model from "../model";
14
+ import common = require("oci-common");
15
+ /**
16
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/apmtraces/CreateScheduledQuery.ts.html |here} to see how to use CreateScheduledQueryRequest.
17
+ */
18
+ export interface CreateScheduledQueryRequest extends common.BaseRequest {
19
+ /**
20
+ * The APM Domain ID for the intended request.
21
+ *
22
+ */
23
+ "apmDomainId": string;
24
+ /**
25
+ * Request body containing the details about the scheduled query to be created.
26
+ *
27
+ */
28
+ "createScheduledQueryDetails": model.CreateScheduledQueryDetails;
29
+ /**
30
+ * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
31
+ * particular request, please provide the request ID.
32
+ *
33
+ */
34
+ "opcRequestId"?: string;
35
+ /**
36
+ * A token that uniquely identifies a request so it can be retried in case of a timeout or
37
+ * server error without risk of executing that same action again. Retry tokens expire after 24
38
+ * hours, but can be invalidated before then due to conflicting operations. For example, if a resource
39
+ * has been deleted and purged from the system, then a retry of the original creation request
40
+ * might be rejected.
41
+ *
42
+ */
43
+ "opcRetryToken"?: string;
44
+ /**
45
+ * Indicates that the request is a dry run, if set to \"true\". A dry run request does not create or modify the resource
46
+ * and is used only to perform validation on the submitted data.
47
+ *
48
+ */
49
+ "opcDryRun"?: string;
50
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ //# sourceMappingURL=create-scheduled-query-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-scheduled-query-request.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/request/create-scheduled-query-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,52 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20200630
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
11
+ * 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.
12
+ */
13
+ import common = require("oci-common");
14
+ /**
15
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/apmtraces/DeleteScheduledQuery.ts.html |here} to see how to use DeleteScheduledQueryRequest.
16
+ */
17
+ export interface DeleteScheduledQueryRequest extends common.BaseRequest {
18
+ /**
19
+ * The APM Domain ID for the intended request.
20
+ *
21
+ */
22
+ "apmDomainId": string;
23
+ /**
24
+ * Id of the scheduled query.
25
+ *
26
+ */
27
+ "scheduledQueryId": string;
28
+ /**
29
+ * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
30
+ * particular request, please provide the request ID.
31
+ *
32
+ */
33
+ "opcRequestId"?: string;
34
+ /**
35
+ * For optimistic concurrency control. In the PUT or DELETE call
36
+ * for a resource, set the {@code if-match} parameter to the value of the
37
+ * etag from a previous GET or POST response for that resource.
38
+ * The resource will be updated or deleted only if the etag you
39
+ * provide matches the resource's current etag value.
40
+ *
41
+ */
42
+ "ifMatch"?: string;
43
+ /**
44
+ * A token that uniquely identifies a request so it can be retried in case of a timeout or
45
+ * server error without risk of executing that same action again. Retry tokens expire after 24
46
+ * hours, but can be invalidated before then due to conflicting operations. For example, if a resource
47
+ * has been deleted and purged from the system, then a retry of the original creation request
48
+ * might be rejected.
49
+ *
50
+ */
51
+ "opcRetryToken"?: string;
52
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ //# sourceMappingURL=delete-scheduled-query-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-scheduled-query-request.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/request/delete-scheduled-query-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,53 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20200630
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
11
+ * 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.
12
+ */
13
+ import common = require("oci-common");
14
+ /**
15
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/apmtraces/GetLog.ts.html |here} to see how to use GetLogRequest.
16
+ */
17
+ export interface GetLogRequest extends common.BaseRequest {
18
+ /**
19
+ * The APM Domain ID for the intended request.
20
+ *
21
+ */
22
+ "apmDomainId": string;
23
+ /**
24
+ * Log key.
25
+ *
26
+ */
27
+ "logKey": string;
28
+ /**
29
+ * Include logs with log time equal to or greater than this value.
30
+ *
31
+ */
32
+ "timeLogStartedGreaterThanOrEqualTo": Date;
33
+ /**
34
+ * Include logs with log time less than this value.
35
+ *
36
+ */
37
+ "timeLogEndedLessThan": Date;
38
+ /**
39
+ * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
40
+ * particular request, please provide the request ID.
41
+ *
42
+ */
43
+ "opcRequestId"?: string;
44
+ /**
45
+ * A token that uniquely identifies a request so it can be retried in case of a timeout or
46
+ * server error without risk of executing that same action again. Retry tokens expire after 24
47
+ * hours, but can be invalidated before then due to conflicting operations. For example, if a resource
48
+ * has been deleted and purged from the system, then a retry of the original creation request
49
+ * might be rejected.
50
+ *
51
+ */
52
+ "opcRetryToken"?: string;
53
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ //# sourceMappingURL=get-log-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-log-request.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/request/get-log-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,43 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20200630
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
11
+ * 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.
12
+ */
13
+ import common = require("oci-common");
14
+ /**
15
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/apmtraces/GetScheduledQuery.ts.html |here} to see how to use GetScheduledQueryRequest.
16
+ */
17
+ export interface GetScheduledQueryRequest extends common.BaseRequest {
18
+ /**
19
+ * The APM Domain ID for the intended request.
20
+ *
21
+ */
22
+ "apmDomainId": string;
23
+ /**
24
+ * Id of the scheduled query.
25
+ *
26
+ */
27
+ "scheduledQueryId": string;
28
+ /**
29
+ * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
30
+ * particular request, please provide the request ID.
31
+ *
32
+ */
33
+ "opcRequestId"?: string;
34
+ /**
35
+ * A token that uniquely identifies a request so it can be retried in case of a timeout or
36
+ * server error without risk of executing that same action again. Retry tokens expire after 24
37
+ * hours, but can be invalidated before then due to conflicting operations. For example, if a resource
38
+ * has been deleted and purged from the system, then a retry of the original creation request
39
+ * might be rejected.
40
+ *
41
+ */
42
+ "opcRetryToken"?: string;
43
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ //# sourceMappingURL=get-scheduled-query-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-scheduled-query-request.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/request/get-scheduled-query-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -32,12 +32,12 @@ export interface GetTraceRequest extends common.BaseRequest {
32
32
  */
33
33
  "opcRequestId"?: string;
34
34
  /**
35
- * Include traces that have a {@code minTraceStartTime} equal to or greater than this value.
35
+ * Include traces that have a minTraceStartTime equal to or greater than this value.
36
36
  *
37
37
  */
38
38
  "timeTraceStartedGreaterThanOrEqualTo"?: Date;
39
39
  /**
40
- * Include traces that have a {@code minTraceStartTime} less than this value.
40
+ * Include traces that have a minTraceStartTime less than this value.
41
41
  *
42
42
  */
43
43
  "timeTraceStartedLessThan"?: Date;
@@ -31,8 +31,20 @@ import * as ListQuickPicksRequest from "./list-quick-picks-request";
31
31
  export import ListQuickPicksRequest = ListQuickPicksRequest.ListQuickPicksRequest;
32
32
  import * as QueryRequest from "./query-request";
33
33
  export import QueryRequest = QueryRequest.QueryRequest;
34
+ import * as CreateScheduledQueryRequest from "./create-scheduled-query-request";
35
+ export import CreateScheduledQueryRequest = CreateScheduledQueryRequest.CreateScheduledQueryRequest;
36
+ import * as DeleteScheduledQueryRequest from "./delete-scheduled-query-request";
37
+ export import DeleteScheduledQueryRequest = DeleteScheduledQueryRequest.DeleteScheduledQueryRequest;
38
+ import * as GetScheduledQueryRequest from "./get-scheduled-query-request";
39
+ export import GetScheduledQueryRequest = GetScheduledQueryRequest.GetScheduledQueryRequest;
40
+ import * as ListScheduledQueriesRequest from "./list-scheduled-queries-request";
41
+ export import ListScheduledQueriesRequest = ListScheduledQueriesRequest.ListScheduledQueriesRequest;
42
+ import * as UpdateScheduledQueryRequest from "./update-scheduled-query-request";
43
+ export import UpdateScheduledQueryRequest = UpdateScheduledQueryRequest.UpdateScheduledQueryRequest;
34
44
  import * as GetAggregatedSnapshotRequest from "./get-aggregated-snapshot-request";
35
45
  export import GetAggregatedSnapshotRequest = GetAggregatedSnapshotRequest.GetAggregatedSnapshotRequest;
46
+ import * as GetLogRequest from "./get-log-request";
47
+ export import GetLogRequest = GetLogRequest.GetLogRequest;
36
48
  import * as GetSpanRequest from "./get-span-request";
37
49
  export import GetSpanRequest = GetSpanRequest.GetSpanRequest;
38
50
  import * as GetTraceRequest from "./get-trace-request";
@@ -32,11 +32,13 @@ var __importStar = (this && this.__importStar) || function (mod) {
32
32
  return result;
33
33
  };
34
34
  Object.defineProperty(exports, "__esModule", { value: true });
35
- exports.GetTraceRequest = exports.GetSpanRequest = exports.PutToggleAutoActivateRequest = exports.GetStatusAutoActivateRequest = void 0;
35
+ exports.GetTraceRequest = exports.GetSpanRequest = exports.ListScheduledQueriesRequest = exports.PutToggleAutoActivateRequest = exports.GetStatusAutoActivateRequest = void 0;
36
36
  const GetStatusAutoActivateRequest = __importStar(require("./get-status-auto-activate-request"));
37
37
  exports.GetStatusAutoActivateRequest = GetStatusAutoActivateRequest.GetStatusAutoActivateRequest;
38
38
  const PutToggleAutoActivateRequest = __importStar(require("./put-toggle-auto-activate-request"));
39
39
  exports.PutToggleAutoActivateRequest = PutToggleAutoActivateRequest.PutToggleAutoActivateRequest;
40
+ const ListScheduledQueriesRequest = __importStar(require("./list-scheduled-queries-request"));
41
+ exports.ListScheduledQueriesRequest = ListScheduledQueriesRequest.ListScheduledQueriesRequest;
40
42
  const GetSpanRequest = __importStar(require("./get-span-request"));
41
43
  exports.GetSpanRequest = GetSpanRequest.GetSpanRequest;
42
44
  const GetTraceRequest = __importStar(require("./get-trace-request"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAcH,iGAAmF;AACrE,QAAA,4BAA4B,GAAG,4BAA4B,CAAC,4BAA4B,CAAC;AACvG,iGAAmF;AACrE,QAAA,4BAA4B,GAAG,4BAA4B,CAAC,4BAA4B,CAAC;AAOvG,mEAAqD;AACvC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,qEAAuD;AACzC,QAAA,eAAe,GAAG,eAAe,CAAC,eAAe,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;AAcH,iGAAmF;AACrE,QAAA,4BAA4B,GAAG,4BAA4B,CAAC,4BAA4B,CAAC;AACvG,iGAAmF;AACrE,QAAA,4BAA4B,GAAG,4BAA4B,CAAC,4BAA4B,CAAC;AAWvG,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AAOpG,mEAAqD;AACvC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,qEAAuD;AACzC,QAAA,eAAe,GAAG,eAAe,CAAC,eAAe,CAAC"}
@@ -0,0 +1,74 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20200630
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
11
+ * 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.
12
+ */
13
+ import * as model from "../model";
14
+ import common = require("oci-common");
15
+ /**
16
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/apmtraces/ListScheduledQueries.ts.html |here} to see how to use ListScheduledQueriesRequest.
17
+ */
18
+ export interface ListScheduledQueriesRequest extends common.BaseRequest {
19
+ /**
20
+ * The APM Domain ID for the intended request.
21
+ *
22
+ */
23
+ "apmDomainId": string;
24
+ /**
25
+ * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
26
+ * particular request, please provide the request ID.
27
+ *
28
+ */
29
+ "opcRequestId"?: string;
30
+ /**
31
+ * A token that uniquely identifies a request so it can be retried in case of a timeout or
32
+ * server error without risk of executing that same action again. Retry tokens expire after 24
33
+ * hours, but can be invalidated before then due to conflicting operations. For example, if a resource
34
+ * has been deleted and purged from the system, then a retry of the original creation request
35
+ * might be rejected.
36
+ *
37
+ */
38
+ "opcRetryToken"?: string;
39
+ /**
40
+ * The maximum number of items to return.
41
+ *
42
+ */
43
+ "limit"?: number;
44
+ /**
45
+ * The page token representing the page where to start retrieving results.
46
+ * This is usually retrieved from a previous response.
47
+ *
48
+ */
49
+ "page"?: string;
50
+ /**
51
+ * A filter to return resources that match the given display name. This will return resources that have name starting with this filter.
52
+ */
53
+ "displayName"?: string;
54
+ /**
55
+ * The sort order to use, either ascending ({@code ASC}) or descending ({@code DESC}). The displayName sort order
56
+ * is case-sensitive.
57
+ *
58
+ */
59
+ "sortOrder"?: model.SortOrder;
60
+ /**
61
+ * The field to sort by. You can provide one \"sortBy\" value.
62
+ *
63
+ */
64
+ "sortBy"?: ListScheduledQueriesRequest.SortBy;
65
+ }
66
+ export declare namespace ListScheduledQueriesRequest {
67
+ enum SortBy {
68
+ ScheduledQueryName = "SCHEDULED_QUERY_NAME",
69
+ ScheduledQueryType = "SCHEDULED_QUERY_TYPE",
70
+ ScheduledQuerySubType = "SCHEDULED_QUERY_SUB_TYPE",
71
+ ScheduledQueryNextRun = "SCHEDULED_QUERY_NEXT_RUN",
72
+ ScheduledQuerySchedule = "SCHEDULED_QUERY_SCHEDULE"
73
+ }
74
+ }
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ /**
3
+ *
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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.ListScheduledQueriesRequest = void 0;
16
+ var ListScheduledQueriesRequest;
17
+ (function (ListScheduledQueriesRequest) {
18
+ let SortBy;
19
+ (function (SortBy) {
20
+ SortBy["ScheduledQueryName"] = "SCHEDULED_QUERY_NAME";
21
+ SortBy["ScheduledQueryType"] = "SCHEDULED_QUERY_TYPE";
22
+ SortBy["ScheduledQuerySubType"] = "SCHEDULED_QUERY_SUB_TYPE";
23
+ SortBy["ScheduledQueryNextRun"] = "SCHEDULED_QUERY_NEXT_RUN";
24
+ SortBy["ScheduledQuerySchedule"] = "SCHEDULED_QUERY_SCHEDULE";
25
+ })(SortBy = ListScheduledQueriesRequest.SortBy || (ListScheduledQueriesRequest.SortBy = {}));
26
+ })(ListScheduledQueriesRequest = exports.ListScheduledQueriesRequest || (exports.ListScheduledQueriesRequest = {}));
27
+ //# sourceMappingURL=list-scheduled-queries-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-scheduled-queries-request.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/request/list-scheduled-queries-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAyDH,IAAiB,2BAA2B,CAQ3C;AARD,WAAiB,2BAA2B;IAC1C,IAAY,MAMX;IAND,WAAY,MAAM;QAChB,qDAA2C,CAAA;QAC3C,qDAA2C,CAAA;QAC3C,4DAAkD,CAAA;QAClD,4DAAkD,CAAA;QAClD,6DAAmD,CAAA;IACrD,CAAC,EANW,MAAM,GAAN,kCAAM,KAAN,kCAAM,QAMjB;AACH,CAAC,EARgB,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QAQ3C"}
@@ -22,18 +22,20 @@ export interface QueryRequest extends common.BaseRequest {
22
22
  */
23
23
  "apmDomainId": string;
24
24
  /**
25
- * Include spans that have a {@code spanStartTime} equal to or greater than this value.
25
+ * Include spans that have a {@code spanStartTime} equal to or greater than this value. Also, include logs and traces
26
+ * that have startTime greater than this value.
26
27
  *
27
28
  */
28
29
  "timeSpanStartedGreaterThanOrEqualTo": Date;
29
30
  /**
30
- * Include spans that have a {@code spanStartTime}less than this value.
31
+ * Include spans that have a {@code spanStartTime} less than this value. Also, include traces that have startTime less than this value
32
+ * and logs that have endTime less than this value.
31
33
  *
32
34
  */
33
35
  "timeSpanStartedLessThan": Date;
34
36
  /**
35
- * Request body containing the query to be run against the trace data and to filter and
36
- * retrieve trace data results.
37
+ * Request body containing the query to be run against the trace, span, services, background queries and other metric data and to filter and
38
+ * retrieve the results.
37
39
  *
38
40
  */
39
41
  "queryDetails": model.QueryDetails;
@@ -0,0 +1,64 @@
1
+ /**
2
+ *
3
+ *
4
+ * OpenAPI spec version: 20200630
5
+ *
6
+ *
7
+ * NOTE: This class is auto generated by OracleSDKGenerator.
8
+ * Do not edit the class manually.
9
+ *
10
+ * Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
11
+ * 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.
12
+ */
13
+ import * as model from "../model";
14
+ import common = require("oci-common");
15
+ /**
16
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/apmtraces/UpdateScheduledQuery.ts.html |here} to see how to use UpdateScheduledQueryRequest.
17
+ */
18
+ export interface UpdateScheduledQueryRequest extends common.BaseRequest {
19
+ /**
20
+ * The APM Domain ID for the intended request.
21
+ *
22
+ */
23
+ "apmDomainId": string;
24
+ /**
25
+ * Id of the scheduled query.
26
+ *
27
+ */
28
+ "scheduledQueryId": string;
29
+ /**
30
+ * Request body containing the details about the scheduled query to be updated.
31
+ *
32
+ */
33
+ "updateScheduledQueryDetails": model.UpdateScheduledQueryDetails;
34
+ /**
35
+ * For optimistic concurrency control. In the PUT or DELETE call
36
+ * for a resource, set the {@code if-match} parameter to the value of the
37
+ * etag from a previous GET or POST response for that resource.
38
+ * The resource will be updated or deleted only if the etag you
39
+ * provide matches the resource's current etag value.
40
+ *
41
+ */
42
+ "ifMatch"?: string;
43
+ /**
44
+ * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
45
+ * particular request, please provide the request ID.
46
+ *
47
+ */
48
+ "opcRequestId"?: string;
49
+ /**
50
+ * A token that uniquely identifies a request so it can be retried in case of a timeout or
51
+ * server error without risk of executing that same action again. Retry tokens expire after 24
52
+ * hours, but can be invalidated before then due to conflicting operations. For example, if a resource
53
+ * has been deleted and purged from the system, then a retry of the original creation request
54
+ * might be rejected.
55
+ *
56
+ */
57
+ "opcRetryToken"?: string;
58
+ /**
59
+ * Indicates that the request is a dry run, if set to \"true\". A dry run request does not create or modify the resource
60
+ * and is used only to perform validation on the submitted data.
61
+ *
62
+ */
63
+ "opcDryRun"?: string;
64
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ *
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
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ //# sourceMappingURL=update-scheduled-query-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-scheduled-query-request.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/request/update-scheduled-query-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}