bruce-models 7.1.87 → 7.1.88
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/bruce-models.es5.js +20 -2
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +18 -1
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +2 -1
- package/dist/lib/bruce-models.js.map +1 -1
- package/dist/lib/export/export-nsx.js +32 -0
- package/dist/lib/export/export-nsx.js.map +1 -0
- package/dist/types/bruce-models.d.ts +2 -1
- package/dist/types/export/export-nsx.d.ts +16 -0
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -14824,6 +14824,23 @@
|
|
|
14824
14824
|
}
|
|
14825
14825
|
})(exports.ExportCsv || (exports.ExportCsv = {}));
|
|
14826
14826
|
|
|
14827
|
+
(function (ExportNsx) {
|
|
14828
|
+
/**
|
|
14829
|
+
* Starts a whole-account NSX backup export job.
|
|
14830
|
+
* The generated NSX file is stored in the account's configured backup file store.
|
|
14831
|
+
*/
|
|
14832
|
+
function AccountBackup(params) {
|
|
14833
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
14834
|
+
let { api, req: reqParams } = params !== null && params !== void 0 ? params : {};
|
|
14835
|
+
if (!api) {
|
|
14836
|
+
api = exports.ENVIRONMENT.Api().GetBruceApi();
|
|
14837
|
+
}
|
|
14838
|
+
return api.POST("export/nsx/accountBackup", {}, exports.Api.PrepReqParams(reqParams));
|
|
14839
|
+
});
|
|
14840
|
+
}
|
|
14841
|
+
ExportNsx.AccountBackup = AccountBackup;
|
|
14842
|
+
})(exports.ExportNsx || (exports.ExportNsx = {}));
|
|
14843
|
+
|
|
14827
14844
|
(function (ExportUsd) {
|
|
14828
14845
|
function Export(params) {
|
|
14829
14846
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -20591,7 +20608,7 @@
|
|
|
20591
20608
|
})(exports.UrlUtils || (exports.UrlUtils = {}));
|
|
20592
20609
|
|
|
20593
20610
|
// This is updated with the package.json version on build.
|
|
20594
|
-
const VERSION = "7.1.
|
|
20611
|
+
const VERSION = "7.1.88";
|
|
20595
20612
|
|
|
20596
20613
|
exports.VERSION = VERSION;
|
|
20597
20614
|
exports.AbstractApi = AbstractApi;
|