oci-apmtraces 2.111.3 → 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
@@ -31,7 +31,8 @@ export interface BulkUnpinAttributeDetail {
31
31
  export declare namespace BulkUnpinAttributeDetail {
32
32
  enum AttributeNameSpace {
33
33
  Traces = "TRACES",
34
- Synthetic = "SYNTHETIC"
34
+ Synthetic = "SYNTHETIC",
35
+ Logs = "LOGS"
35
36
  }
36
37
  function getJsonObj(obj: BulkUnpinAttributeDetail): object;
37
38
  function getDeserializedJsonObj(obj: BulkUnpinAttributeDetail): object;
@@ -20,6 +20,7 @@ var BulkUnpinAttributeDetail;
20
20
  (function (AttributeNameSpace) {
21
21
  AttributeNameSpace["Traces"] = "TRACES";
22
22
  AttributeNameSpace["Synthetic"] = "SYNTHETIC";
23
+ AttributeNameSpace["Logs"] = "LOGS";
23
24
  })(AttributeNameSpace = BulkUnpinAttributeDetail.AttributeNameSpace || (BulkUnpinAttributeDetail.AttributeNameSpace = {}));
24
25
  function getJsonObj(obj) {
25
26
  const jsonObj = Object.assign(Object.assign({}, obj), {});
@@ -1 +1 @@
1
- {"version":3,"file":"bulk-unpin-attribute-detail.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/bulk-unpin-attribute-detail.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAuBH,IAAiB,wBAAwB,CAgBxC;AAhBD,WAAiB,wBAAwB;IACvC,IAAY,kBAGX;IAHD,WAAY,kBAAkB;QAC5B,uCAAiB,CAAA;QACjB,6CAAuB,CAAA;IACzB,CAAC,EAHW,kBAAkB,GAAlB,2CAAkB,KAAlB,2CAAkB,QAG7B;IAED,SAAgB,UAAU,CAAC,GAA6B;QACtD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,mCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA6B;QAClE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,+CAAsB,yBAIrC,CAAA;AACH,CAAC,EAhBgB,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAgBxC"}
1
+ {"version":3,"file":"bulk-unpin-attribute-detail.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/bulk-unpin-attribute-detail.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAuBH,IAAiB,wBAAwB,CAiBxC;AAjBD,WAAiB,wBAAwB;IACvC,IAAY,kBAIX;IAJD,WAAY,kBAAkB;QAC5B,uCAAiB,CAAA;QACjB,6CAAuB,CAAA;QACvB,mCAAa,CAAA;IACf,CAAC,EAJW,kBAAkB,GAAlB,2CAAkB,KAAlB,2CAAkB,QAI7B;IAED,SAAgB,UAAU,CAAC,GAA6B;QACtD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,mCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA6B;QAClE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,+CAAsB,yBAIrC,CAAA;AACH,CAAC,EAjBgB,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAiBxC"}
@@ -22,7 +22,7 @@ export interface BulkUpdateAttributeDetail {
22
22
  */
23
23
  "attributeName": string;
24
24
  /**
25
- * Unit of the attribute to be updated.
25
+ * Unit of the attribute to be updated. If unit is not specified, it defaults to NONE.
26
26
  *
27
27
  */
28
28
  "unit"?: BulkUpdateAttributeDetail.Unit;
@@ -44,7 +44,8 @@ export declare namespace BulkUpdateAttributeDetail {
44
44
  }
45
45
  enum AttributeNameSpace {
46
46
  Traces = "TRACES",
47
- Synthetic = "SYNTHETIC"
47
+ Synthetic = "SYNTHETIC",
48
+ Logs = "LOGS"
48
49
  }
49
50
  function getJsonObj(obj: BulkUpdateAttributeDetail): object;
50
51
  function getDeserializedJsonObj(obj: BulkUpdateAttributeDetail): object;
@@ -30,6 +30,7 @@ var BulkUpdateAttributeDetail;
30
30
  (function (AttributeNameSpace) {
31
31
  AttributeNameSpace["Traces"] = "TRACES";
32
32
  AttributeNameSpace["Synthetic"] = "SYNTHETIC";
33
+ AttributeNameSpace["Logs"] = "LOGS";
33
34
  })(AttributeNameSpace = BulkUpdateAttributeDetail.AttributeNameSpace || (BulkUpdateAttributeDetail.AttributeNameSpace = {}));
34
35
  function getJsonObj(obj) {
35
36
  const jsonObj = Object.assign(Object.assign({}, obj), {});
@@ -1 +1 @@
1
- {"version":3,"file":"bulk-update-attribute-detail.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/bulk-update-attribute-detail.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AA2BH,IAAiB,yBAAyB,CA0BzC;AA1BD,WAAiB,yBAAyB;IACxC,IAAY,IAQX;IARD,WAAY,IAAI;QACd,qBAAa,CAAA;QACb,qCAA6B,CAAA;QAC7B,uBAAe,CAAA;QACf,uBAAe,CAAA;QACf,kCAA0B,CAAA;QAC1B,oCAA4B,CAAA;QAC5B,iCAAyB,CAAA;IAC3B,CAAC,EARW,IAAI,GAAJ,8BAAI,KAAJ,8BAAI,QAQf;IAED,IAAY,kBAGX;IAHD,WAAY,kBAAkB;QAC5B,uCAAiB,CAAA;QACjB,6CAAuB,CAAA;IACzB,CAAC,EAHW,kBAAkB,GAAlB,4CAAkB,KAAlB,4CAAkB,QAG7B;IAED,SAAgB,UAAU,CAAC,GAA8B;QACvD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA8B;QACnE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gDAAsB,yBAIrC,CAAA;AACH,CAAC,EA1BgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QA0BzC"}
1
+ {"version":3,"file":"bulk-update-attribute-detail.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/bulk-update-attribute-detail.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AA2BH,IAAiB,yBAAyB,CA2BzC;AA3BD,WAAiB,yBAAyB;IACxC,IAAY,IAQX;IARD,WAAY,IAAI;QACd,qBAAa,CAAA;QACb,qCAA6B,CAAA;QAC7B,uBAAe,CAAA;QACf,uBAAe,CAAA;QACf,kCAA0B,CAAA;QAC1B,oCAA4B,CAAA;QAC5B,iCAAyB,CAAA;IAC3B,CAAC,EARW,IAAI,GAAJ,8BAAI,KAAJ,8BAAI,QAQf;IAED,IAAY,kBAIX;IAJD,WAAY,kBAAkB;QAC5B,uCAAiB,CAAA;QACjB,6CAAuB,CAAA;QACvB,mCAAa,CAAA;IACf,CAAC,EAJW,kBAAkB,GAAlB,4CAAkB,KAAlB,4CAAkB,QAI7B;IAED,SAAgB,UAAU,CAAC,GAA8B;QACvD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA8B;QACnE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gDAAsB,yBAIrC,CAAA;AACH,CAAC,EA3BgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QA2BzC"}
@@ -36,7 +36,8 @@ export interface BulkUpdateAttributeNotesDetail {
36
36
  export declare namespace BulkUpdateAttributeNotesDetail {
37
37
  enum AttributeNameSpace {
38
38
  Traces = "TRACES",
39
- Synthetic = "SYNTHETIC"
39
+ Synthetic = "SYNTHETIC",
40
+ Logs = "LOGS"
40
41
  }
41
42
  function getJsonObj(obj: BulkUpdateAttributeNotesDetail): object;
42
43
  function getDeserializedJsonObj(obj: BulkUpdateAttributeNotesDetail): object;
@@ -20,6 +20,7 @@ var BulkUpdateAttributeNotesDetail;
20
20
  (function (AttributeNameSpace) {
21
21
  AttributeNameSpace["Traces"] = "TRACES";
22
22
  AttributeNameSpace["Synthetic"] = "SYNTHETIC";
23
+ AttributeNameSpace["Logs"] = "LOGS";
23
24
  })(AttributeNameSpace = BulkUpdateAttributeNotesDetail.AttributeNameSpace || (BulkUpdateAttributeNotesDetail.AttributeNameSpace = {}));
24
25
  function getJsonObj(obj) {
25
26
  const jsonObj = Object.assign(Object.assign({}, obj), {});
@@ -1 +1 @@
1
- {"version":3,"file":"bulk-update-attribute-notes-detail.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/bulk-update-attribute-notes-detail.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AA4BH,IAAiB,8BAA8B,CAgB9C;AAhBD,WAAiB,8BAA8B;IAC7C,IAAY,kBAGX;IAHD,WAAY,kBAAkB;QAC5B,uCAAiB,CAAA;QACjB,6CAAuB,CAAA;IACzB,CAAC,EAHW,kBAAkB,GAAlB,iDAAkB,KAAlB,iDAAkB,QAG7B;IAED,SAAgB,UAAU,CAAC,GAAmC;QAC5D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,yCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmC;QACxE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,qDAAsB,yBAIrC,CAAA;AACH,CAAC,EAhBgB,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QAgB9C"}
1
+ {"version":3,"file":"bulk-update-attribute-notes-detail.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/bulk-update-attribute-notes-detail.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AA4BH,IAAiB,8BAA8B,CAiB9C;AAjBD,WAAiB,8BAA8B;IAC7C,IAAY,kBAIX;IAJD,WAAY,kBAAkB;QAC5B,uCAAiB,CAAA;QACjB,6CAAuB,CAAA;QACvB,mCAAa,CAAA;IACf,CAAC,EAJW,kBAAkB,GAAlB,iDAAkB,KAAlB,iDAAkB,QAI7B;IAED,SAAgB,UAAU,CAAC,GAAmC;QAC5D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,yCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmC;QACxE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,qDAAsB,yBAIrC,CAAA;AACH,CAAC,EAjBgB,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QAiB9C"}
@@ -0,0 +1,88 @@
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
+ * Object that contains the details about the scheduled query to be created.
17
+ *
18
+ */
19
+ export interface CreateScheduledQueryDetails {
20
+ /**
21
+ * Name of the scheduled query.
22
+ *
23
+ */
24
+ "scheduledQueryName"?: string;
25
+ /**
26
+ * Type of the scheduled query.
27
+ *
28
+ */
29
+ "scheduledQueryProcessingType"?: model.ScheduledQueryProcessingType;
30
+ /**
31
+ * Scheduled query to be run.
32
+ *
33
+ */
34
+ "scheduledQueryText"?: string;
35
+ /**
36
+ * Schedule for the scheduled query.
37
+ *
38
+ */
39
+ "scheduledQuerySchedule"?: string;
40
+ /**
41
+ * Description for the scheduled query.
42
+ *
43
+ */
44
+ "scheduledQueryDescription"?: string;
45
+ /**
46
+ * Maximum runtime for the scheduled query in seconds.
47
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
48
+ */
49
+ "scheduledQueryMaximumRuntimeInSeconds"?: number;
50
+ /**
51
+ * Retention period for the scheduled query in milliseconds.
52
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
53
+ */
54
+ "scheduledQueryRetentionPeriodInMs"?: number;
55
+ /**
56
+ * Processing sub type of the scheduled query.
57
+ *
58
+ */
59
+ "scheduledQueryProcessingSubType"?: model.ScheduledQueryProcessingSubType;
60
+ "scheduledQueryProcessingConfiguration"?: model.ScheduledQueryProcessingConfig;
61
+ /**
62
+ * Retention criteria for the scheduled query.
63
+ *
64
+ */
65
+ "scheduledQueryRetentionCriteria"?: model.ScheduledQueryRetentionCriteria;
66
+ /**
67
+ * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
68
+ * Example: {@code {\"bar-key\": \"value\"}}
69
+ *
70
+ */
71
+ "freeformTags"?: {
72
+ [key: string]: string;
73
+ };
74
+ /**
75
+ * Defined tags for this resource. Each key is predefined and scoped to a namespace.
76
+ * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
77
+ *
78
+ */
79
+ "definedTags"?: {
80
+ [key: string]: {
81
+ [key: string]: any;
82
+ };
83
+ };
84
+ }
85
+ export declare namespace CreateScheduledQueryDetails {
86
+ function getJsonObj(obj: CreateScheduledQueryDetails): object;
87
+ function getDeserializedJsonObj(obj: CreateScheduledQueryDetails): object;
88
+ }
@@ -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.CreateScheduledQueryDetails = void 0;
36
+ const model = __importStar(require("../model"));
37
+ var CreateScheduledQueryDetails;
38
+ (function (CreateScheduledQueryDetails) {
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
+ CreateScheduledQueryDetails.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
+ CreateScheduledQueryDetails.getDeserializedJsonObj = getDeserializedJsonObj;
57
+ })(CreateScheduledQueryDetails = exports.CreateScheduledQueryDetails || (exports.CreateScheduledQueryDetails = {}));
58
+ //# sourceMappingURL=create-scheduled-query-details.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-scheduled-query-details.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/create-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,67 @@
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 Custom Metric.
16
+ *
17
+ */
18
+ export interface CustomMetric {
19
+ /**
20
+ * Namespace in the Custom Metric. It defaults to {@code oracle_apm_custom} if not specified.
21
+ * If specified, the necessary OCI policies should be set to allow APM to write to that namespace.
22
+ *
23
+ */
24
+ "namespace"?: string;
25
+ /**
26
+ * Name of the Custom Metric.
27
+ *
28
+ */
29
+ "name": string;
30
+ /**
31
+ * Description of the Custom Metric.
32
+ *
33
+ */
34
+ "description"?: string;
35
+ /**
36
+ * Resource Group of the Custom Metric.
37
+ *
38
+ */
39
+ "resourceGroup"?: string;
40
+ /**
41
+ * Indicates whether anomaly Detection should be performed on the generated metric.
42
+ *
43
+ */
44
+ "isAnomalyDetectionEnabled"?: boolean;
45
+ /**
46
+ * Compartment of the Monitoring Service. It defaults to the APM domain's compartment if not specified.
47
+ * If specified, the necessary OCI policies should be set to allow APM to write to that compartment.
48
+ *
49
+ */
50
+ "compartment"?: string;
51
+ /**
52
+ * Unit in which the metric value is reported. For example 'ms'.
53
+ *
54
+ */
55
+ "unit"?: string;
56
+ /**
57
+ * Used in conjunction with the dry run header. When the dry run header is set and the isPublishMetric flag is set to true, the
58
+ * scheduled query is not created, but validations happen to check if the right OCI policies have been set to write to the specified
59
+ * namespace/compartment.
60
+ *
61
+ */
62
+ "isMetricPublished"?: boolean;
63
+ }
64
+ export declare namespace CustomMetric {
65
+ function getJsonObj(obj: CustomMetric): object;
66
+ function getDeserializedJsonObj(obj: CustomMetric): object;
67
+ }
@@ -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.CustomMetric = void 0;
17
+ var CustomMetric;
18
+ (function (CustomMetric) {
19
+ function getJsonObj(obj) {
20
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
21
+ return jsonObj;
22
+ }
23
+ CustomMetric.getJsonObj = getJsonObj;
24
+ function getDeserializedJsonObj(obj) {
25
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
26
+ return jsonObj;
27
+ }
28
+ CustomMetric.getDeserializedJsonObj = getDeserializedJsonObj;
29
+ })(CustomMetric = exports.CustomMetric || (exports.CustomMetric = {}));
30
+ //# sourceMappingURL=custom-metric.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"custom-metric.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/custom-metric.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAwDH,IAAiB,YAAY,CAW5B;AAXD,WAAiB,YAAY;IAC3B,SAAgB,UAAU,CAAC,GAAiB;QAC1C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,uBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAiB;QACtD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,mCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAW5B"}
@@ -15,6 +15,10 @@ import * as AggregatedSnapshot from "./aggregated-snapshot";
15
15
  export import AggregatedSnapshot = AggregatedSnapshot.AggregatedSnapshot;
16
16
  import * as AggregatedStackTrace from "./aggregated-stack-trace";
17
17
  export import AggregatedStackTrace = AggregatedStackTrace.AggregatedStackTrace;
18
+ import * as Attribute from "./attribute";
19
+ export import Attribute = Attribute.Attribute;
20
+ import * as AttributeMetadata from "./attribute-metadata";
21
+ export import AttributeMetadata = AttributeMetadata.AttributeMetadata;
18
22
  import * as AttributePinResponse from "./attribute-pin-response";
19
23
  export import AttributePinResponse = AttributePinResponse.AttributePinResponse;
20
24
  import * as AttributeResponse from "./attribute-response";
@@ -77,6 +81,16 @@ import * as BulkUpdateNotesMetadata from "./bulk-update-notes-metadata";
77
81
  export import BulkUpdateNotesMetadata = BulkUpdateNotesMetadata.BulkUpdateNotesMetadata;
78
82
  import * as BulkUpdateNotesStatus from "./bulk-update-notes-status";
79
83
  export import BulkUpdateNotesStatus = BulkUpdateNotesStatus.BulkUpdateNotesStatus;
84
+ import * as CreateScheduledQueryDetails from "./create-scheduled-query-details";
85
+ export import CreateScheduledQueryDetails = CreateScheduledQueryDetails.CreateScheduledQueryDetails;
86
+ import * as CustomMetric from "./custom-metric";
87
+ export import CustomMetric = CustomMetric.CustomMetric;
88
+ import * as LifecycleStates from "./lifecycle-states";
89
+ export import LifecycleStates = LifecycleStates.LifecycleStates;
90
+ import * as Log from "./log";
91
+ export import Log = Log.Log;
92
+ import * as ObjectStorage from "./object-storage";
93
+ export import ObjectStorage = ObjectStorage.ObjectStorage;
80
94
  import * as QueryDetails from "./query-details";
81
95
  export import QueryDetails = QueryDetails.QueryDetails;
82
96
  import * as QueryResultMetadataSummary from "./query-result-metadata-summary";
@@ -99,8 +113,24 @@ import * as QueryResultsTopologyNodeInfo from "./query-results-topology-node-inf
99
113
  export import QueryResultsTopologyNodeInfo = QueryResultsTopologyNodeInfo.QueryResultsTopologyNodeInfo;
100
114
  import * as QuickPickSummary from "./quick-pick-summary";
101
115
  export import QuickPickSummary = QuickPickSummary.QuickPickSummary;
116
+ import * as ScheduledQuery from "./scheduled-query";
117
+ export import ScheduledQuery = ScheduledQuery.ScheduledQuery;
118
+ import * as ScheduledQueryCollection from "./scheduled-query-collection";
119
+ export import ScheduledQueryCollection = ScheduledQueryCollection.ScheduledQueryCollection;
120
+ import * as ScheduledQueryProcessingConfig from "./scheduled-query-processing-config";
121
+ export import ScheduledQueryProcessingConfig = ScheduledQueryProcessingConfig.ScheduledQueryProcessingConfig;
122
+ import * as ScheduledQueryProcessingSubType from "./scheduled-query-processing-sub-type";
123
+ export import ScheduledQueryProcessingSubType = ScheduledQueryProcessingSubType.ScheduledQueryProcessingSubType;
124
+ import * as ScheduledQueryProcessingType from "./scheduled-query-processing-type";
125
+ export import ScheduledQueryProcessingType = ScheduledQueryProcessingType.ScheduledQueryProcessingType;
126
+ import * as ScheduledQueryRetentionCriteria from "./scheduled-query-retention-criteria";
127
+ export import ScheduledQueryRetentionCriteria = ScheduledQueryRetentionCriteria.ScheduledQueryRetentionCriteria;
128
+ import * as ScheduledQuerySummary from "./scheduled-query-summary";
129
+ export import ScheduledQuerySummary = ScheduledQuerySummary.ScheduledQuerySummary;
102
130
  import * as SnapshotDetail from "./snapshot-detail";
103
131
  export import SnapshotDetail = SnapshotDetail.SnapshotDetail;
132
+ import * as SortOrder from "./sort-order";
133
+ export import SortOrder = SortOrder.SortOrder;
104
134
  import * as Span from "./span";
105
135
  export import Span = Span.Span;
106
136
  import * as SpanLog from "./span-log";
@@ -111,6 +141,8 @@ import * as SpanSnapshot from "./span-snapshot";
111
141
  export import SpanSnapshot = SpanSnapshot.SpanSnapshot;
112
142
  import * as StackTraceElement from "./stack-trace-element";
113
143
  export import StackTraceElement = StackTraceElement.StackTraceElement;
144
+ import * as Streaming from "./streaming";
145
+ export import Streaming = Streaming.Streaming;
114
146
  import * as Tag from "./tag";
115
147
  export import Tag = Tag.Tag;
116
148
  import * as TagMetadata from "./tag-metadata";
@@ -125,3 +157,5 @@ import * as TraceSnapshot from "./trace-snapshot";
125
157
  export import TraceSnapshot = TraceSnapshot.TraceSnapshot;
126
158
  import * as TraceSpanSummary from "./trace-span-summary";
127
159
  export import TraceSpanSummary = TraceSpanSummary.TraceSpanSummary;
160
+ import * as UpdateScheduledQueryDetails from "./update-scheduled-query-details";
161
+ export import UpdateScheduledQueryDetails = UpdateScheduledQueryDetails.UpdateScheduledQueryDetails;
@@ -32,12 +32,16 @@ var __importStar = (this && this.__importStar) || function (mod) {
32
32
  return result;
33
33
  };
34
34
  Object.defineProperty(exports, "__esModule", { value: true });
35
- exports.StackTraceElement = exports.SpanSnapshot = exports.SpanLogCollection = exports.SpanLog = exports.Span = exports.SnapshotDetail = exports.QuickPickSummary = exports.QueryResultsTopologyNodeInfo = exports.QueryResultsTopologyInfo = exports.QueryResultsOrderedBySummary = exports.QueryResultsGroupedBySummary = exports.QueryResultWarning = exports.QueryResultRowTypeSummary = exports.QueryResultRow = exports.QueryResultResponse = exports.QueryResultMetadataSummary = exports.QueryDetails = exports.BulkUpdateNotesStatus = exports.BulkUpdateNotesMetadata = exports.BulkUpdateAttributeStatus = exports.BulkUpdateAttributeNotesDetails = exports.BulkUpdateAttributeNotesDetail = exports.BulkUpdateAttributeMetadata = exports.BulkUpdateAttributeDetails = exports.BulkUpdateAttributeDetail = exports.BulkUnpinStatus = exports.BulkUnpinMetadata = exports.BulkUnpinAttributeDetails = exports.BulkUnpinAttributeDetail = exports.BulkPinStatus = exports.BulkPinMetadata = exports.BulkPinAttributeDetails = exports.BulkPinAttributeDetail = exports.BulkDeActivationStatus = exports.BulkDeActivationMetadata = exports.BulkDeActivateAttributeDetails = exports.BulkDeActivateAttributeDetail = exports.BulkActivationStatus = exports.BulkActivationMetadata = exports.BulkActivateAttributeDetails = exports.BulkActivateAttributeDetail = exports.AutoActivateToggleStatus = exports.AutoActivateStatus = exports.AttributeUpdateResponse = exports.AttributeUpdateNotesResponse = exports.AttributeUnpinResponse = exports.AttributeResponse = exports.AttributePinResponse = exports.AggregatedStackTrace = exports.AggregatedSnapshot = void 0;
36
- exports.TraceSpanSummary = exports.TraceSnapshot = exports.TraceServiceSummary = exports.Trace = exports.ThreadSnapshot = exports.TagMetadata = exports.Tag = void 0;
35
+ exports.QueryResultsTopologyNodeInfo = exports.QueryResultsTopologyInfo = exports.QueryResultsOrderedBySummary = exports.QueryResultsGroupedBySummary = exports.QueryResultWarning = exports.QueryResultRowTypeSummary = exports.QueryResultRow = exports.QueryResultResponse = exports.QueryResultMetadataSummary = exports.QueryDetails = exports.ObjectStorage = exports.Log = exports.LifecycleStates = exports.CustomMetric = exports.CreateScheduledQueryDetails = exports.BulkUpdateNotesStatus = exports.BulkUpdateNotesMetadata = exports.BulkUpdateAttributeStatus = exports.BulkUpdateAttributeNotesDetails = exports.BulkUpdateAttributeNotesDetail = exports.BulkUpdateAttributeMetadata = exports.BulkUpdateAttributeDetails = exports.BulkUpdateAttributeDetail = exports.BulkUnpinStatus = exports.BulkUnpinMetadata = exports.BulkUnpinAttributeDetails = exports.BulkUnpinAttributeDetail = exports.BulkPinStatus = exports.BulkPinMetadata = exports.BulkPinAttributeDetails = exports.BulkPinAttributeDetail = exports.BulkDeActivationStatus = exports.BulkDeActivationMetadata = exports.BulkDeActivateAttributeDetails = exports.BulkDeActivateAttributeDetail = exports.BulkActivationStatus = exports.BulkActivationMetadata = exports.BulkActivateAttributeDetails = exports.BulkActivateAttributeDetail = exports.AutoActivateToggleStatus = exports.AutoActivateStatus = exports.AttributeUpdateResponse = exports.AttributeUpdateNotesResponse = exports.AttributeUnpinResponse = exports.AttributeResponse = exports.AttributePinResponse = exports.AttributeMetadata = exports.Attribute = exports.AggregatedStackTrace = exports.AggregatedSnapshot = void 0;
36
+ exports.UpdateScheduledQueryDetails = exports.TraceSpanSummary = exports.TraceSnapshot = exports.TraceServiceSummary = exports.Trace = exports.ThreadSnapshot = exports.TagMetadata = exports.Tag = exports.Streaming = exports.StackTraceElement = exports.SpanSnapshot = exports.SpanLogCollection = exports.SpanLog = exports.Span = exports.SortOrder = exports.SnapshotDetail = exports.ScheduledQuerySummary = exports.ScheduledQueryRetentionCriteria = exports.ScheduledQueryProcessingType = exports.ScheduledQueryProcessingSubType = exports.ScheduledQueryProcessingConfig = exports.ScheduledQueryCollection = exports.ScheduledQuery = exports.QuickPickSummary = void 0;
37
37
  const AggregatedSnapshot = __importStar(require("./aggregated-snapshot"));
38
38
  exports.AggregatedSnapshot = AggregatedSnapshot.AggregatedSnapshot;
39
39
  const AggregatedStackTrace = __importStar(require("./aggregated-stack-trace"));
40
40
  exports.AggregatedStackTrace = AggregatedStackTrace.AggregatedStackTrace;
41
+ const Attribute = __importStar(require("./attribute"));
42
+ exports.Attribute = Attribute.Attribute;
43
+ const AttributeMetadata = __importStar(require("./attribute-metadata"));
44
+ exports.AttributeMetadata = AttributeMetadata.AttributeMetadata;
41
45
  const AttributePinResponse = __importStar(require("./attribute-pin-response"));
42
46
  exports.AttributePinResponse = AttributePinResponse.AttributePinResponse;
43
47
  const AttributeResponse = __importStar(require("./attribute-response"));
@@ -100,6 +104,16 @@ const BulkUpdateNotesMetadata = __importStar(require("./bulk-update-notes-metada
100
104
  exports.BulkUpdateNotesMetadata = BulkUpdateNotesMetadata.BulkUpdateNotesMetadata;
101
105
  const BulkUpdateNotesStatus = __importStar(require("./bulk-update-notes-status"));
102
106
  exports.BulkUpdateNotesStatus = BulkUpdateNotesStatus.BulkUpdateNotesStatus;
107
+ const CreateScheduledQueryDetails = __importStar(require("./create-scheduled-query-details"));
108
+ exports.CreateScheduledQueryDetails = CreateScheduledQueryDetails.CreateScheduledQueryDetails;
109
+ const CustomMetric = __importStar(require("./custom-metric"));
110
+ exports.CustomMetric = CustomMetric.CustomMetric;
111
+ const LifecycleStates = __importStar(require("./lifecycle-states"));
112
+ exports.LifecycleStates = LifecycleStates.LifecycleStates;
113
+ const Log = __importStar(require("./log"));
114
+ exports.Log = Log.Log;
115
+ const ObjectStorage = __importStar(require("./object-storage"));
116
+ exports.ObjectStorage = ObjectStorage.ObjectStorage;
103
117
  const QueryDetails = __importStar(require("./query-details"));
104
118
  exports.QueryDetails = QueryDetails.QueryDetails;
105
119
  const QueryResultMetadataSummary = __importStar(require("./query-result-metadata-summary"));
@@ -122,8 +136,24 @@ const QueryResultsTopologyNodeInfo = __importStar(require("./query-results-topol
122
136
  exports.QueryResultsTopologyNodeInfo = QueryResultsTopologyNodeInfo.QueryResultsTopologyNodeInfo;
123
137
  const QuickPickSummary = __importStar(require("./quick-pick-summary"));
124
138
  exports.QuickPickSummary = QuickPickSummary.QuickPickSummary;
139
+ const ScheduledQuery = __importStar(require("./scheduled-query"));
140
+ exports.ScheduledQuery = ScheduledQuery.ScheduledQuery;
141
+ const ScheduledQueryCollection = __importStar(require("./scheduled-query-collection"));
142
+ exports.ScheduledQueryCollection = ScheduledQueryCollection.ScheduledQueryCollection;
143
+ const ScheduledQueryProcessingConfig = __importStar(require("./scheduled-query-processing-config"));
144
+ exports.ScheduledQueryProcessingConfig = ScheduledQueryProcessingConfig.ScheduledQueryProcessingConfig;
145
+ const ScheduledQueryProcessingSubType = __importStar(require("./scheduled-query-processing-sub-type"));
146
+ exports.ScheduledQueryProcessingSubType = ScheduledQueryProcessingSubType.ScheduledQueryProcessingSubType;
147
+ const ScheduledQueryProcessingType = __importStar(require("./scheduled-query-processing-type"));
148
+ exports.ScheduledQueryProcessingType = ScheduledQueryProcessingType.ScheduledQueryProcessingType;
149
+ const ScheduledQueryRetentionCriteria = __importStar(require("./scheduled-query-retention-criteria"));
150
+ exports.ScheduledQueryRetentionCriteria = ScheduledQueryRetentionCriteria.ScheduledQueryRetentionCriteria;
151
+ const ScheduledQuerySummary = __importStar(require("./scheduled-query-summary"));
152
+ exports.ScheduledQuerySummary = ScheduledQuerySummary.ScheduledQuerySummary;
125
153
  const SnapshotDetail = __importStar(require("./snapshot-detail"));
126
154
  exports.SnapshotDetail = SnapshotDetail.SnapshotDetail;
155
+ const SortOrder = __importStar(require("./sort-order"));
156
+ exports.SortOrder = SortOrder.SortOrder;
127
157
  const Span = __importStar(require("./span"));
128
158
  exports.Span = Span.Span;
129
159
  const SpanLog = __importStar(require("./span-log"));
@@ -134,6 +164,8 @@ const SpanSnapshot = __importStar(require("./span-snapshot"));
134
164
  exports.SpanSnapshot = SpanSnapshot.SpanSnapshot;
135
165
  const StackTraceElement = __importStar(require("./stack-trace-element"));
136
166
  exports.StackTraceElement = StackTraceElement.StackTraceElement;
167
+ const Streaming = __importStar(require("./streaming"));
168
+ exports.Streaming = Streaming.Streaming;
137
169
  const Tag = __importStar(require("./tag"));
138
170
  exports.Tag = Tag.Tag;
139
171
  const TagMetadata = __importStar(require("./tag-metadata"));
@@ -148,4 +180,6 @@ const TraceSnapshot = __importStar(require("./trace-snapshot"));
148
180
  exports.TraceSnapshot = TraceSnapshot.TraceSnapshot;
149
181
  const TraceSpanSummary = __importStar(require("./trace-span-summary"));
150
182
  exports.TraceSpanSummary = TraceSpanSummary.TraceSpanSummary;
183
+ const UpdateScheduledQueryDetails = __importStar(require("./update-scheduled-query-details"));
184
+ exports.UpdateScheduledQueryDetails = UpdateScheduledQueryDetails.UpdateScheduledQueryDetails;
151
185
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,33 @@
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
+ * Possible lifecycle states for Scheduled Query.
16
+ **/
17
+ export declare enum LifecycleStates {
18
+ Creating = "CREATING",
19
+ Updating = "UPDATING",
20
+ Active = "ACTIVE",
21
+ Deleting = "DELETING",
22
+ Deleted = "DELETED",
23
+ Failed = "FAILED",
24
+ /**
25
+ * This value is used if a service returns a value for this enum that is not recognized by this
26
+ * version of the SDK.
27
+ */
28
+ UnknownValue = "UNKNOWN_VALUE"
29
+ }
30
+ export declare namespace LifecycleStates {
31
+ function getJsonObj(obj: LifecycleStates): LifecycleStates;
32
+ function getDeserializedJsonObj(obj: LifecycleStates): LifecycleStates;
33
+ }
@@ -0,0 +1,44 @@
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.LifecycleStates = void 0;
17
+ /**
18
+ * Possible lifecycle states for Scheduled Query.
19
+ **/
20
+ var LifecycleStates;
21
+ (function (LifecycleStates) {
22
+ LifecycleStates["Creating"] = "CREATING";
23
+ LifecycleStates["Updating"] = "UPDATING";
24
+ LifecycleStates["Active"] = "ACTIVE";
25
+ LifecycleStates["Deleting"] = "DELETING";
26
+ LifecycleStates["Deleted"] = "DELETED";
27
+ LifecycleStates["Failed"] = "FAILED";
28
+ /**
29
+ * This value is used if a service returns a value for this enum that is not recognized by this
30
+ * version of the SDK.
31
+ */
32
+ LifecycleStates["UnknownValue"] = "UNKNOWN_VALUE";
33
+ })(LifecycleStates = exports.LifecycleStates || (exports.LifecycleStates = {}));
34
+ (function (LifecycleStates) {
35
+ function getJsonObj(obj) {
36
+ return obj;
37
+ }
38
+ LifecycleStates.getJsonObj = getJsonObj;
39
+ function getDeserializedJsonObj(obj) {
40
+ return obj;
41
+ }
42
+ LifecycleStates.getDeserializedJsonObj = getDeserializedJsonObj;
43
+ })(LifecycleStates = exports.LifecycleStates || (exports.LifecycleStates = {}));
44
+ //# sourceMappingURL=lifecycle-states.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lifecycle-states.js","sourceRoot":"","sources":["../../../../../lib/apmtraces/lib/model/lifecycle-states.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;AAKH;;IAEI;AACJ,IAAY,eAaX;AAbD,WAAY,eAAe;IACzB,wCAAqB,CAAA;IACrB,wCAAqB,CAAA;IACrB,oCAAiB,CAAA;IACjB,wCAAqB,CAAA;IACrB,sCAAmB,CAAA;IACnB,oCAAiB,CAAA;IAEjB;;;OAGG;IACH,iDAA8B,CAAA;AAChC,CAAC,EAbW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAa1B;AAED,WAAiB,eAAe;IAC9B,SAAgB,UAAU,CAAC,GAAoB;QAC7C,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,0BAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAoB;QACzD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,sCAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAO/B"}