@dynatrace-sdk/client-query 1.3.0 → 1.4.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.
- package/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/cjs/index.js +8 -0
- package/docs/DOCS.md +251 -1356
- package/dynatrace-metadata.json +1 -1
- package/esm/index.js +8 -0
- package/package.json +1 -1
- package/types/packages/client/query/src/lib/models/execute-request.d.ts +4 -0
- package/types/packages/client/query/src/lib/models/execute-request.transformation.d.ts +1 -0
package/dynatrace-metadata.json
CHANGED
package/esm/index.js
CHANGED
|
@@ -1729,6 +1729,7 @@ function isExecuteRequest(value) {
|
|
|
1729
1729
|
"timezone",
|
|
1730
1730
|
"locale",
|
|
1731
1731
|
"maxResultRecords",
|
|
1732
|
+
"maxResultBytes",
|
|
1732
1733
|
"fetchTimeoutSeconds",
|
|
1733
1734
|
"requestTimeoutMilliseconds",
|
|
1734
1735
|
"enablePreview",
|
|
@@ -1743,6 +1744,7 @@ function isExecuteRequest(value) {
|
|
|
1743
1744
|
"timezone",
|
|
1744
1745
|
"locale",
|
|
1745
1746
|
"maxResultRecords",
|
|
1747
|
+
"maxResultBytes",
|
|
1746
1748
|
"fetchTimeoutSeconds",
|
|
1747
1749
|
"requestTimeoutMilliseconds",
|
|
1748
1750
|
"enablePreview",
|
|
@@ -1771,6 +1773,7 @@ function isJson20(value) {
|
|
|
1771
1773
|
"timezone",
|
|
1772
1774
|
"locale",
|
|
1773
1775
|
"maxResultRecords",
|
|
1776
|
+
"maxResultBytes",
|
|
1774
1777
|
"fetchTimeoutSeconds",
|
|
1775
1778
|
"requestTimeoutMilliseconds",
|
|
1776
1779
|
"enablePreview",
|
|
@@ -1785,6 +1788,7 @@ function isJson20(value) {
|
|
|
1785
1788
|
"timezone",
|
|
1786
1789
|
"locale",
|
|
1787
1790
|
"maxResultRecords",
|
|
1791
|
+
"maxResultBytes",
|
|
1788
1792
|
"fetchTimeoutSeconds",
|
|
1789
1793
|
"requestTimeoutMilliseconds",
|
|
1790
1794
|
"enablePreview",
|
|
@@ -1804,6 +1808,7 @@ function fromJson20($model) {
|
|
|
1804
1808
|
timezone,
|
|
1805
1809
|
locale,
|
|
1806
1810
|
maxResultRecords,
|
|
1811
|
+
maxResultBytes,
|
|
1807
1812
|
fetchTimeoutSeconds,
|
|
1808
1813
|
requestTimeoutMilliseconds,
|
|
1809
1814
|
enablePreview,
|
|
@@ -1817,6 +1822,7 @@ function fromJson20($model) {
|
|
|
1817
1822
|
timezone,
|
|
1818
1823
|
locale,
|
|
1819
1824
|
maxResultRecords,
|
|
1825
|
+
maxResultBytes,
|
|
1820
1826
|
fetchTimeoutSeconds,
|
|
1821
1827
|
requestTimeoutMilliseconds,
|
|
1822
1828
|
enablePreview,
|
|
@@ -1832,6 +1838,7 @@ function toJson20($model) {
|
|
|
1832
1838
|
timezone,
|
|
1833
1839
|
locale,
|
|
1834
1840
|
maxResultRecords,
|
|
1841
|
+
maxResultBytes,
|
|
1835
1842
|
fetchTimeoutSeconds,
|
|
1836
1843
|
requestTimeoutMilliseconds,
|
|
1837
1844
|
enablePreview,
|
|
@@ -1845,6 +1852,7 @@ function toJson20($model) {
|
|
|
1845
1852
|
timezone,
|
|
1846
1853
|
locale,
|
|
1847
1854
|
maxResultRecords,
|
|
1855
|
+
maxResultBytes,
|
|
1848
1856
|
fetchTimeoutSeconds,
|
|
1849
1857
|
requestTimeoutMilliseconds,
|
|
1850
1858
|
enablePreview,
|
package/package.json
CHANGED
|
@@ -23,6 +23,10 @@ export interface ExecuteRequest {
|
|
|
23
23
|
* The maximum number of result records that this query will return.
|
|
24
24
|
*/
|
|
25
25
|
maxResultRecords?: number;
|
|
26
|
+
/**
|
|
27
|
+
* The maximum number of result bytes that this query will return.
|
|
28
|
+
*/
|
|
29
|
+
maxResultBytes?: number;
|
|
26
30
|
/**
|
|
27
31
|
* The query will stop after reaching the fetch-timeout.
|
|
28
32
|
*/
|