@azure/synapse-monitoring 1.0.0-alpha.20230601.1 → 1.0.0-alpha.20230605.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.
- package/dist/index.js +70 -52
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -28,21 +28,21 @@ var zlib = require('zlib');
|
|
|
28
28
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
29
29
|
|
|
30
30
|
function _interopNamespace(e) {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
});
|
|
41
|
-
}
|
|
31
|
+
if (e && e.__esModule) return e;
|
|
32
|
+
var n = Object.create(null);
|
|
33
|
+
if (e) {
|
|
34
|
+
Object.keys(e).forEach(function (k) {
|
|
35
|
+
if (k !== 'default') {
|
|
36
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
37
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
38
|
+
enumerable: true,
|
|
39
|
+
get: function () { return e[k]; }
|
|
42
40
|
});
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
n["default"] = e;
|
|
45
|
+
return Object.freeze(n);
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
var os__namespace = /*#__PURE__*/_interopNamespace(os);
|
|
@@ -63,29 +63,29 @@ var require$$1__default$2 = /*#__PURE__*/_interopDefaultLegacy(require$$1$2);
|
|
|
63
63
|
var require$$0__default$1 = /*#__PURE__*/_interopDefaultLegacy(require$$0$2);
|
|
64
64
|
var zlib__namespace = /*#__PURE__*/_interopNamespace(zlib);
|
|
65
65
|
|
|
66
|
-
/******************************************************************************
|
|
67
|
-
Copyright (c) Microsoft Corporation.
|
|
68
|
-
|
|
69
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
70
|
-
purpose with or without fee is hereby granted.
|
|
71
|
-
|
|
72
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
73
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
74
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
75
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
76
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
77
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
78
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
79
|
-
***************************************************************************** */
|
|
80
|
-
|
|
81
|
-
function __awaiter$2(thisArg, _arguments, P, generator) {
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
66
|
+
/******************************************************************************
|
|
67
|
+
Copyright (c) Microsoft Corporation.
|
|
68
|
+
|
|
69
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
70
|
+
purpose with or without fee is hereby granted.
|
|
71
|
+
|
|
72
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
73
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
74
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
75
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
76
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
77
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
78
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
79
|
+
***************************************************************************** */
|
|
80
|
+
|
|
81
|
+
function __awaiter$2(thisArg, _arguments, P, generator) {
|
|
82
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
83
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
84
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
85
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
86
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
87
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
88
|
+
});
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
// Copyright (c) Microsoft Corporation.
|
|
@@ -1610,14 +1610,6 @@ function isAzureLogLevel(logLevel) {
|
|
|
1610
1610
|
// Copyright (c) Microsoft Corporation.
|
|
1611
1611
|
const logger$1 = createClientLogger("core-rest-pipeline");
|
|
1612
1612
|
|
|
1613
|
-
// Copyright (c) Microsoft Corporation.
|
|
1614
|
-
// Licensed under the MIT license.
|
|
1615
|
-
var _a$1;
|
|
1616
|
-
/**
|
|
1617
|
-
* A constant that indicates whether the environment the code is running is Node.JS.
|
|
1618
|
-
*/
|
|
1619
|
-
const isNode = typeof process !== "undefined" && Boolean(process.version) && Boolean((_a$1 = process.versions) === null || _a$1 === void 0 ? void 0 : _a$1.node);
|
|
1620
|
-
|
|
1621
1613
|
// Copyright (c) Microsoft Corporation.
|
|
1622
1614
|
// Licensed under the MIT license.
|
|
1623
1615
|
/// <reference path="../shims-public.d.ts" />
|
|
@@ -1961,9 +1953,9 @@ function generateUUID() {
|
|
|
1961
1953
|
|
|
1962
1954
|
// Copyright (c) Microsoft Corporation.
|
|
1963
1955
|
// Licensed under the MIT license.
|
|
1964
|
-
var _a;
|
|
1956
|
+
var _a$1;
|
|
1965
1957
|
// NOTE: This is a workaround until we can use `globalThis.crypto.randomUUID` in Node.js 19+.
|
|
1966
|
-
let uuidFunction = typeof ((_a = globalThis === null || globalThis === void 0 ? void 0 : globalThis.crypto) === null || _a === void 0 ? void 0 : _a.randomUUID) === "function"
|
|
1958
|
+
let uuidFunction = typeof ((_a$1 = globalThis === null || globalThis === void 0 ? void 0 : globalThis.crypto) === null || _a$1 === void 0 ? void 0 : _a$1.randomUUID) === "function"
|
|
1967
1959
|
? globalThis.crypto.randomUUID.bind(globalThis.crypto)
|
|
1968
1960
|
: crypto.randomUUID;
|
|
1969
1961
|
// Not defined in earlier versions of Node.js 14
|
|
@@ -1979,6 +1971,32 @@ function randomUUID() {
|
|
|
1979
1971
|
return uuidFunction();
|
|
1980
1972
|
}
|
|
1981
1973
|
|
|
1974
|
+
// Copyright (c) Microsoft Corporation.
|
|
1975
|
+
// Licensed under the MIT license.
|
|
1976
|
+
var _a, _b, _c, _d;
|
|
1977
|
+
/**
|
|
1978
|
+
* A constant that indicates whether the environment the code is running is a Web Worker.
|
|
1979
|
+
*/
|
|
1980
|
+
typeof self === "object" &&
|
|
1981
|
+
typeof (self === null || self === void 0 ? void 0 : self.importScripts) === "function" &&
|
|
1982
|
+
(((_a = self.constructor) === null || _a === void 0 ? void 0 : _a.name) === "DedicatedWorkerGlobalScope" ||
|
|
1983
|
+
((_b = self.constructor) === null || _b === void 0 ? void 0 : _b.name) === "ServiceWorkerGlobalScope" ||
|
|
1984
|
+
((_c = self.constructor) === null || _c === void 0 ? void 0 : _c.name) === "SharedWorkerGlobalScope");
|
|
1985
|
+
/**
|
|
1986
|
+
* A constant that indicates whether the environment the code is running is Node.JS.
|
|
1987
|
+
*/
|
|
1988
|
+
const isNode = typeof process !== "undefined" && Boolean(process.version) && Boolean((_d = process.versions) === null || _d === void 0 ? void 0 : _d.node);
|
|
1989
|
+
/**
|
|
1990
|
+
* A constant that indicates whether the environment the code is running is Deno.
|
|
1991
|
+
*/
|
|
1992
|
+
typeof Deno !== "undefined" &&
|
|
1993
|
+
typeof Deno.version !== "undefined" &&
|
|
1994
|
+
typeof Deno.version.deno !== "undefined";
|
|
1995
|
+
/**
|
|
1996
|
+
* A constant that indicates whether the environment the code is running is Bun.sh.
|
|
1997
|
+
*/
|
|
1998
|
+
typeof Bun !== "undefined" && typeof Bun.version !== "undefined";
|
|
1999
|
+
|
|
1982
2000
|
// Copyright (c) Microsoft Corporation.
|
|
1983
2001
|
const RedactedString = "REDACTED";
|
|
1984
2002
|
// Make sure this list is up-to-date with the one under core/logger/Readme#Keyconcepts
|
|
@@ -2216,7 +2234,7 @@ function setPlatformSpecificData(map) {
|
|
|
2216
2234
|
|
|
2217
2235
|
// Copyright (c) Microsoft Corporation.
|
|
2218
2236
|
// Licensed under the MIT license.
|
|
2219
|
-
const SDK_VERSION = "1.11.
|
|
2237
|
+
const SDK_VERSION = "1.11.1";
|
|
2220
2238
|
const DEFAULT_RETRY_POLICY_COUNT = 3;
|
|
2221
2239
|
|
|
2222
2240
|
// Copyright (c) Microsoft Corporation.
|
|
@@ -19111,10 +19129,10 @@ const SqlQueryStringDataModel = {
|
|
|
19111
19129
|
};
|
|
19112
19130
|
|
|
19113
19131
|
var Mappers = /*#__PURE__*/Object.freeze({
|
|
19114
|
-
|
|
19115
|
-
|
|
19116
|
-
|
|
19117
|
-
|
|
19132
|
+
__proto__: null,
|
|
19133
|
+
SparkJobListViewResponse: SparkJobListViewResponse,
|
|
19134
|
+
SparkJob: SparkJob,
|
|
19135
|
+
SqlQueryStringDataModel: SqlQueryStringDataModel
|
|
19118
19136
|
});
|
|
19119
19137
|
|
|
19120
19138
|
/*
|