@corellium/corellium-cli 1.3.4 → 1.3.6
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/coverage/cobertura-coverage.xml +1 -1
- package/coverage/lcov-report/index.html +1 -1
- package/node_modules/@corellium/client-api/README.md +177 -14
- package/node_modules/@corellium/client-api/dist/ApiClient.js +67 -138
- package/node_modules/@corellium/client-api/dist/api/CorelliumApi.js +4668 -905
- package/node_modules/@corellium/client-api/dist/index.js +469 -37
- package/node_modules/@corellium/client-api/dist/model/Address.js +158 -0
- package/node_modules/@corellium/client-api/dist/model/AgentApp.js +159 -0
- package/node_modules/@corellium/client-api/dist/model/AgentAppReadyResponse.js +112 -0
- package/node_modules/@corellium/client-api/dist/model/AgentAppStatus.js +102 -0
- package/node_modules/@corellium/client-api/dist/model/AgentAppsList.js +127 -0
- package/node_modules/@corellium/client-api/dist/model/AgentAppsStatusList.js +127 -0
- package/node_modules/@corellium/client-api/dist/model/AgentError.js +153 -0
- package/node_modules/@corellium/client-api/dist/model/AgentIcons.js +89 -0
- package/node_modules/@corellium/client-api/dist/model/AgentInstallBody.js +93 -0
- package/node_modules/@corellium/client-api/dist/model/AgentProfilesReturn.js +116 -0
- package/node_modules/@corellium/client-api/dist/model/AgentSystemAdbAuth.js +89 -0
- package/node_modules/@corellium/client-api/dist/model/AgentSystemGetPropBody.js +116 -0
- package/node_modules/@corellium/client-api/dist/model/AgentValueReturn.js +93 -0
- package/node_modules/@corellium/client-api/dist/model/AgreedAck.js +89 -0
- package/node_modules/@corellium/client-api/dist/model/ApiConflictError.js +61 -22
- package/node_modules/@corellium/client-api/dist/model/ApiError.js +64 -21
- package/node_modules/@corellium/client-api/dist/model/ApiInternalConsistencyError.js +144 -0
- package/node_modules/@corellium/client-api/dist/model/ApiNotFoundError.js +65 -23
- package/node_modules/@corellium/client-api/dist/model/ApiToken.js +55 -17
- package/node_modules/@corellium/client-api/dist/model/Bit.js +24 -14
- package/node_modules/@corellium/client-api/dist/model/BtraceEnableOptions.js +93 -0
- package/node_modules/@corellium/client-api/dist/model/Button.js +90 -0
- package/node_modules/@corellium/client-api/dist/model/CouponOptions.js +161 -0
- package/node_modules/@corellium/client-api/dist/model/CreateTeam.js +116 -0
- package/node_modules/@corellium/client-api/dist/model/CreatedBy.js +128 -0
- package/node_modules/@corellium/client-api/dist/model/Credentials.js +59 -19
- package/node_modules/@corellium/client-api/dist/model/DomainOptions.js +103 -0
- package/node_modules/@corellium/client-api/dist/model/Extension.js +167 -0
- package/node_modules/@corellium/client-api/dist/model/Features.js +260 -0
- package/node_modules/@corellium/client-api/dist/model/FileChanges.js +120 -0
- package/node_modules/@corellium/client-api/dist/model/Firmware.js +97 -46
- package/node_modules/@corellium/client-api/dist/model/GpioStateDefinition.js +55 -20
- package/node_modules/@corellium/client-api/dist/model/GpiosState.js +120 -0
- package/node_modules/@corellium/client-api/dist/model/GrantTrialRequestResponse.js +93 -0
- package/node_modules/@corellium/client-api/dist/model/Hook.js +211 -0
- package/node_modules/@corellium/client-api/dist/model/Image.js +99 -49
- package/node_modules/@corellium/client-api/dist/model/Instance.js +201 -71
- package/node_modules/@corellium/client-api/dist/model/InstanceAgentState.js +106 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceBootOptions.js +72 -29
- package/node_modules/@corellium/client-api/dist/model/InstanceBootOptionsAdditionalTag.js +90 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceConsoleEndpoint.js +34 -17
- package/node_modules/@corellium/client-api/dist/model/InstanceCreateOptions.js +126 -49
- package/node_modules/@corellium/client-api/dist/model/InstanceInput.js +181 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceNetdumpState.js +115 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceNetmonState.js +56 -16
- package/node_modules/@corellium/client-api/dist/model/InstanceReturn.js +55 -20
- package/node_modules/@corellium/client-api/dist/model/InstanceServices.js +35 -18
- package/node_modules/@corellium/client-api/dist/model/InstanceStartOptions.js +39 -17
- package/node_modules/@corellium/client-api/dist/model/InstanceState.js +52 -21
- package/node_modules/@corellium/client-api/dist/model/InstanceStopOptions.js +30 -17
- package/node_modules/@corellium/client-api/dist/model/InstanceUpgradeBody.js +129 -0
- package/node_modules/@corellium/client-api/dist/model/Invitation.js +115 -0
- package/node_modules/@corellium/client-api/dist/model/InviteRevokeParams.js +94 -0
- package/node_modules/@corellium/client-api/dist/model/InviteRevokeParamsIds.js +150 -0
- package/node_modules/@corellium/client-api/dist/model/Kcrange.js +106 -0
- package/node_modules/@corellium/client-api/dist/model/KernelTask.js +149 -0
- package/node_modules/@corellium/client-api/dist/model/KernelThread.js +115 -0
- package/node_modules/@corellium/client-api/dist/model/MediaPlayBody.js +106 -0
- package/node_modules/@corellium/client-api/dist/model/Model.js +97 -35
- package/node_modules/@corellium/client-api/dist/model/ModelSoftware.js +77 -28
- package/node_modules/@corellium/client-api/dist/model/NetdumpFilter.js +158 -0
- package/node_modules/@corellium/client-api/dist/model/PasswordChangeBody.js +146 -0
- package/node_modules/@corellium/client-api/dist/model/PasswordResetBody.js +146 -0
- package/node_modules/@corellium/client-api/dist/model/PatchInstanceOptions.js +182 -0
- package/node_modules/@corellium/client-api/dist/model/PeripheralsData.js +63 -33
- package/node_modules/@corellium/client-api/dist/model/Plan.js +106 -0
- package/node_modules/@corellium/client-api/dist/model/Project.js +77 -28
- package/node_modules/@corellium/client-api/dist/model/ProjectKey.js +206 -0
- package/node_modules/@corellium/client-api/dist/model/ProjectQuota.js +35 -21
- package/node_modules/@corellium/client-api/dist/model/ProjectSettings.js +35 -21
- package/node_modules/@corellium/client-api/dist/model/ProjectUsage.js +37 -23
- package/node_modules/@corellium/client-api/dist/model/ProxyConfig.js +116 -0
- package/node_modules/@corellium/client-api/dist/model/RateInfo.js +98 -0
- package/node_modules/@corellium/client-api/dist/model/ResetLinkBody.js +116 -0
- package/node_modules/@corellium/client-api/dist/model/Role.js +164 -0
- package/node_modules/@corellium/client-api/dist/model/RotateBody.js +140 -0
- package/node_modules/@corellium/client-api/dist/model/Snapshot.js +56 -32
- package/node_modules/@corellium/client-api/dist/model/SnapshotCreationOptions.js +54 -17
- package/node_modules/@corellium/client-api/dist/model/SnapshotStatus.js +37 -19
- package/node_modules/@corellium/client-api/dist/model/SubscriberInvite.js +277 -0
- package/node_modules/@corellium/client-api/dist/model/Team.js +162 -0
- package/node_modules/@corellium/client-api/dist/model/TeamCreate.js +93 -0
- package/node_modules/@corellium/client-api/dist/model/TextInput.js +93 -0
- package/node_modules/@corellium/client-api/dist/model/Token.js +56 -19
- package/node_modules/@corellium/client-api/dist/model/TouchCurveInput.js +98 -0
- package/node_modules/@corellium/client-api/dist/model/TouchInput.js +89 -0
- package/node_modules/@corellium/client-api/dist/model/Trial.js +112 -0
- package/node_modules/@corellium/client-api/dist/model/TrialExtension.js +124 -0
- package/node_modules/@corellium/client-api/dist/model/TrialRequestMetadata.js +146 -0
- package/node_modules/@corellium/client-api/dist/model/TrialRequestOptions.js +156 -0
- package/node_modules/@corellium/client-api/dist/model/UpdateExtension.js +89 -0
- package/node_modules/@corellium/client-api/dist/model/User.js +170 -0
- package/node_modules/@corellium/client-api/dist/model/UserError.js +65 -22
- package/node_modules/@corellium/client-api/dist/model/V1CreateHookParameters.js +179 -0
- package/node_modules/@corellium/client-api/dist/model/V1LoadExtensionParameters.js +116 -0
- package/node_modules/@corellium/client-api/dist/model/V1SetStateBody.js +50 -18
- package/node_modules/@corellium/client-api/dist/model/ValidationError.js +157 -0
- package/node_modules/@corellium/client-api/dist/model/VolumeOptions.js +42 -21
- package/node_modules/@corellium/client-api/dist/model/VpnDefinition.js +45 -23
- package/node_modules/@corellium/client-api/dist/model/WebPlayerCreateSessionRequest.js +171 -0
- package/node_modules/@corellium/client-api/dist/model/WebPlayerSession.js +142 -0
- package/node_modules/@corellium/client-api/package.json +1 -1
- package/package.json +2 -2
- package/renovate.json +96 -0
- package/src/commands/login.js +6 -4
- package/src/commands/mast/constants.js +1 -2
- package/src/commands/mast/create-assessment.js +2 -3
- package/src/commands/mast/delete-assessment.js +2 -3
- package/src/commands/mast/download-report.js +3 -4
- package/src/commands/mast/get-assessment.js +2 -3
- package/src/commands/mast/get-assessments.js +2 -3
- package/src/commands/mast/start-monitor.js +2 -3
- package/src/commands/mast/stop-monitor.js +2 -3
- package/src/commands/mast/test.js +2 -3
- package/src/commands/mast/api-base-path.js +0 -21
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
9
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
10
|
+
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
|
|
11
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
12
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
13
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
14
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
15
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
16
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
17
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } /**
|
|
18
|
+
* Corellium API
|
|
19
|
+
* REST API to manage your virtual devices.
|
|
20
|
+
*
|
|
21
|
+
* The version of the OpenAPI document: 4.5.0-16775
|
|
22
|
+
*
|
|
23
|
+
*
|
|
24
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
25
|
+
* https://openapi-generator.tech
|
|
26
|
+
* Do not edit the class manually.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
/**
|
|
30
|
+
* The RotateBody model module.
|
|
31
|
+
* @module model/RotateBody
|
|
32
|
+
* @version 0.3.2
|
|
33
|
+
*/
|
|
34
|
+
var RotateBody = /*#__PURE__*/function () {
|
|
35
|
+
/**
|
|
36
|
+
* Constructs a new <code>RotateBody</code>.
|
|
37
|
+
*
|
|
38
|
+
* @alias module:model/RotateBody
|
|
39
|
+
* @param orientation {module:model/RotateBody.OrientationEnum} Desired orientation
|
|
40
|
+
*/
|
|
41
|
+
function RotateBody(orientation) {
|
|
42
|
+
_classCallCheck(this, RotateBody);
|
|
43
|
+
RotateBody.initialize(this, orientation);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Initializes the fields of this object.
|
|
48
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
49
|
+
* Only for internal use.
|
|
50
|
+
*/
|
|
51
|
+
_createClass(RotateBody, null, [{
|
|
52
|
+
key: "initialize",
|
|
53
|
+
value: function initialize(obj, orientation) {
|
|
54
|
+
obj['orientation'] = orientation;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Constructs a <code>RotateBody</code> from a plain JavaScript object, optionally creating a new instance.
|
|
59
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
60
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
61
|
+
* @param {module:model/RotateBody} obj Optional instance to populate.
|
|
62
|
+
* @return {module:model/RotateBody} The populated <code>RotateBody</code> instance.
|
|
63
|
+
*/
|
|
64
|
+
}, {
|
|
65
|
+
key: "constructFromObject",
|
|
66
|
+
value: function constructFromObject(data, obj) {
|
|
67
|
+
if (data) {
|
|
68
|
+
obj = obj || new RotateBody();
|
|
69
|
+
if (data.hasOwnProperty('orientation')) {
|
|
70
|
+
obj['orientation'] = _ApiClient["default"].convertToType(data['orientation'], 'Number');
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
return obj;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Validates the JSON data with respect to <code>RotateBody</code>.
|
|
78
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
79
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>RotateBody</code>.
|
|
80
|
+
*/
|
|
81
|
+
}, {
|
|
82
|
+
key: "validateJSON",
|
|
83
|
+
value: function validateJSON(data) {
|
|
84
|
+
// check to make sure all required properties are present in the JSON string
|
|
85
|
+
var _iterator = _createForOfIteratorHelper(RotateBody.RequiredProperties),
|
|
86
|
+
_step;
|
|
87
|
+
try {
|
|
88
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
89
|
+
var property = _step.value;
|
|
90
|
+
if (!data[property]) {
|
|
91
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
} catch (err) {
|
|
95
|
+
_iterator.e(err);
|
|
96
|
+
} finally {
|
|
97
|
+
_iterator.f();
|
|
98
|
+
}
|
|
99
|
+
return true;
|
|
100
|
+
}
|
|
101
|
+
}]);
|
|
102
|
+
return RotateBody;
|
|
103
|
+
}();
|
|
104
|
+
RotateBody.RequiredProperties = ["orientation"];
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Desired orientation
|
|
108
|
+
* @member {module:model/RotateBody.OrientationEnum} orientation
|
|
109
|
+
*/
|
|
110
|
+
RotateBody.prototype['orientation'] = undefined;
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Allowed values for the <code>orientation</code> property.
|
|
114
|
+
* @enum {Number}
|
|
115
|
+
* @readonly
|
|
116
|
+
*/
|
|
117
|
+
RotateBody['OrientationEnum'] = {
|
|
118
|
+
/**
|
|
119
|
+
* value: 1
|
|
120
|
+
* @const
|
|
121
|
+
*/
|
|
122
|
+
"1": 1,
|
|
123
|
+
/**
|
|
124
|
+
* value: 2
|
|
125
|
+
* @const
|
|
126
|
+
*/
|
|
127
|
+
"2": 2,
|
|
128
|
+
/**
|
|
129
|
+
* value: 3
|
|
130
|
+
* @const
|
|
131
|
+
*/
|
|
132
|
+
"3": 3,
|
|
133
|
+
/**
|
|
134
|
+
* value: 4
|
|
135
|
+
* @const
|
|
136
|
+
*/
|
|
137
|
+
"4": 4
|
|
138
|
+
};
|
|
139
|
+
var _default = RotateBody;
|
|
140
|
+
exports["default"] = _default;
|
|
@@ -4,44 +4,51 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
|
-
|
|
8
7
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
|
-
|
|
10
8
|
var _SnapshotStatus = _interopRequireDefault(require("./SnapshotStatus"));
|
|
11
|
-
|
|
12
9
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
|
-
|
|
10
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
14
11
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
15
|
-
|
|
16
|
-
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
|
-
|
|
12
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
18
13
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
|
-
|
|
14
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
15
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } /**
|
|
16
|
+
* Corellium API
|
|
17
|
+
* REST API to manage your virtual devices.
|
|
18
|
+
*
|
|
19
|
+
* The version of the OpenAPI document: 4.5.0-16775
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
23
|
+
* https://openapi-generator.tech
|
|
24
|
+
* Do not edit the class manually.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
20
27
|
/**
|
|
21
28
|
* The Snapshot model module.
|
|
22
29
|
* @module model/Snapshot
|
|
23
|
-
* @version 0.
|
|
30
|
+
* @version 0.3.2
|
|
24
31
|
*/
|
|
25
32
|
var Snapshot = /*#__PURE__*/function () {
|
|
26
33
|
/**
|
|
27
34
|
* Constructs a new <code>Snapshot</code>.
|
|
35
|
+
*
|
|
28
36
|
* @alias module:model/Snapshot
|
|
29
37
|
*/
|
|
30
38
|
function Snapshot() {
|
|
31
39
|
_classCallCheck(this, Snapshot);
|
|
32
|
-
|
|
33
40
|
Snapshot.initialize(this);
|
|
34
41
|
}
|
|
42
|
+
|
|
35
43
|
/**
|
|
36
44
|
* Initializes the fields of this object.
|
|
37
45
|
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
38
46
|
* Only for internal use.
|
|
39
47
|
*/
|
|
40
|
-
|
|
41
|
-
|
|
42
48
|
_createClass(Snapshot, null, [{
|
|
43
49
|
key: "initialize",
|
|
44
50
|
value: function initialize(obj) {}
|
|
51
|
+
|
|
45
52
|
/**
|
|
46
53
|
* Constructs a <code>Snapshot</code> from a plain JavaScript object, optionally creating a new instance.
|
|
47
54
|
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
@@ -49,97 +56,114 @@ var Snapshot = /*#__PURE__*/function () {
|
|
|
49
56
|
* @param {module:model/Snapshot} obj Optional instance to populate.
|
|
50
57
|
* @return {module:model/Snapshot} The populated <code>Snapshot</code> instance.
|
|
51
58
|
*/
|
|
52
|
-
|
|
53
59
|
}, {
|
|
54
60
|
key: "constructFromObject",
|
|
55
61
|
value: function constructFromObject(data, obj) {
|
|
56
62
|
if (data) {
|
|
57
63
|
obj = obj || new Snapshot();
|
|
58
|
-
|
|
59
64
|
if (data.hasOwnProperty('id')) {
|
|
60
65
|
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'String');
|
|
61
66
|
}
|
|
62
|
-
|
|
63
67
|
if (data.hasOwnProperty('name')) {
|
|
64
68
|
obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
|
|
65
69
|
}
|
|
66
|
-
|
|
67
70
|
if (data.hasOwnProperty('instance')) {
|
|
68
71
|
obj['instance'] = _ApiClient["default"].convertToType(data['instance'], 'String');
|
|
69
72
|
}
|
|
70
|
-
|
|
71
73
|
if (data.hasOwnProperty('status')) {
|
|
72
74
|
obj['status'] = _SnapshotStatus["default"].constructFromObject(data['status']);
|
|
73
75
|
}
|
|
74
|
-
|
|
75
76
|
if (data.hasOwnProperty('date')) {
|
|
76
77
|
obj['date'] = _ApiClient["default"].convertToType(data['date'], 'Number');
|
|
77
78
|
}
|
|
78
|
-
|
|
79
79
|
if (data.hasOwnProperty('fresh')) {
|
|
80
80
|
obj['fresh'] = _ApiClient["default"].convertToType(data['fresh'], 'Boolean');
|
|
81
81
|
}
|
|
82
|
-
|
|
83
82
|
if (data.hasOwnProperty('live')) {
|
|
84
83
|
obj['live'] = _ApiClient["default"].convertToType(data['live'], 'Boolean');
|
|
85
84
|
}
|
|
86
|
-
|
|
87
85
|
if (data.hasOwnProperty('local')) {
|
|
88
86
|
obj['local'] = _ApiClient["default"].convertToType(data['local'], 'Boolean');
|
|
89
87
|
}
|
|
90
88
|
}
|
|
91
|
-
|
|
92
89
|
return obj;
|
|
93
90
|
}
|
|
94
|
-
}]);
|
|
95
91
|
|
|
92
|
+
/**
|
|
93
|
+
* Validates the JSON data with respect to <code>Snapshot</code>.
|
|
94
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
95
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>Snapshot</code>.
|
|
96
|
+
*/
|
|
97
|
+
}, {
|
|
98
|
+
key: "validateJSON",
|
|
99
|
+
value: function validateJSON(data) {
|
|
100
|
+
// ensure the json data is a string
|
|
101
|
+
if (data['id'] && !(typeof data['id'] === 'string' || data['id'] instanceof String)) {
|
|
102
|
+
throw new Error("Expected the field `id` to be a primitive type in the JSON string but got " + data['id']);
|
|
103
|
+
}
|
|
104
|
+
// ensure the json data is a string
|
|
105
|
+
if (data['name'] && !(typeof data['name'] === 'string' || data['name'] instanceof String)) {
|
|
106
|
+
throw new Error("Expected the field `name` to be a primitive type in the JSON string but got " + data['name']);
|
|
107
|
+
}
|
|
108
|
+
// ensure the json data is a string
|
|
109
|
+
if (data['instance'] && !(typeof data['instance'] === 'string' || data['instance'] instanceof String)) {
|
|
110
|
+
throw new Error("Expected the field `instance` to be a primitive type in the JSON string but got " + data['instance']);
|
|
111
|
+
}
|
|
112
|
+
// validate the optional field `status`
|
|
113
|
+
if (data['status']) {
|
|
114
|
+
// data not null
|
|
115
|
+
_SnapshotStatus["default"].validateJSON(data['status']);
|
|
116
|
+
}
|
|
117
|
+
return true;
|
|
118
|
+
}
|
|
119
|
+
}]);
|
|
96
120
|
return Snapshot;
|
|
97
121
|
}();
|
|
98
122
|
/**
|
|
99
123
|
* Snapshot ID
|
|
100
124
|
* @member {String} id
|
|
101
125
|
*/
|
|
102
|
-
|
|
103
|
-
|
|
104
126
|
Snapshot.prototype['id'] = undefined;
|
|
127
|
+
|
|
105
128
|
/**
|
|
106
129
|
* Snapshot name
|
|
107
130
|
* @member {String} name
|
|
108
131
|
*/
|
|
109
|
-
|
|
110
132
|
Snapshot.prototype['name'] = undefined;
|
|
133
|
+
|
|
111
134
|
/**
|
|
112
135
|
* Instance that this snapshot is of
|
|
113
136
|
* @member {String} instance
|
|
114
137
|
*/
|
|
115
|
-
|
|
116
138
|
Snapshot.prototype['instance'] = undefined;
|
|
139
|
+
|
|
117
140
|
/**
|
|
118
141
|
* @member {module:model/SnapshotStatus} status
|
|
119
142
|
*/
|
|
120
|
-
|
|
121
143
|
Snapshot.prototype['status'] = undefined;
|
|
144
|
+
|
|
122
145
|
/**
|
|
123
146
|
* UNIX Date that the snapshot was created
|
|
124
147
|
* @member {Number} date
|
|
125
148
|
*/
|
|
126
|
-
|
|
127
149
|
Snapshot.prototype['date'] = undefined;
|
|
150
|
+
|
|
128
151
|
/**
|
|
152
|
+
*
|
|
129
153
|
* @member {Boolean} fresh
|
|
130
154
|
*/
|
|
131
|
-
|
|
132
155
|
Snapshot.prototype['fresh'] = undefined;
|
|
156
|
+
|
|
133
157
|
/**
|
|
134
158
|
* Live snapshot (included state and memory)
|
|
135
159
|
* @member {Boolean} live
|
|
136
160
|
*/
|
|
137
|
-
|
|
138
161
|
Snapshot.prototype['live'] = undefined;
|
|
162
|
+
|
|
139
163
|
/**
|
|
164
|
+
*
|
|
140
165
|
* @member {Boolean} local
|
|
141
166
|
*/
|
|
142
|
-
|
|
143
167
|
Snapshot.prototype['local'] = undefined;
|
|
144
168
|
var _default = Snapshot;
|
|
145
169
|
exports["default"] = _default;
|
|
@@ -4,45 +4,56 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
|
-
|
|
8
7
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
|
-
|
|
10
8
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
-
|
|
9
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
10
|
+
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
|
|
11
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
12
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
12
13
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
13
|
-
|
|
14
|
-
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
15
|
-
|
|
14
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
16
15
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
17
|
-
|
|
16
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
17
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } /**
|
|
18
|
+
* Corellium API
|
|
19
|
+
* REST API to manage your virtual devices.
|
|
20
|
+
*
|
|
21
|
+
* The version of the OpenAPI document: 4.5.0-16775
|
|
22
|
+
*
|
|
23
|
+
*
|
|
24
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
25
|
+
* https://openapi-generator.tech
|
|
26
|
+
* Do not edit the class manually.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
18
29
|
/**
|
|
19
30
|
* The SnapshotCreationOptions model module.
|
|
20
31
|
* @module model/SnapshotCreationOptions
|
|
21
|
-
* @version 0.
|
|
32
|
+
* @version 0.3.2
|
|
22
33
|
*/
|
|
23
34
|
var SnapshotCreationOptions = /*#__PURE__*/function () {
|
|
24
35
|
/**
|
|
25
36
|
* Constructs a new <code>SnapshotCreationOptions</code>.
|
|
37
|
+
*
|
|
26
38
|
* @alias module:model/SnapshotCreationOptions
|
|
27
39
|
* @param name {String} Snapshot name
|
|
28
40
|
*/
|
|
29
41
|
function SnapshotCreationOptions(name) {
|
|
30
42
|
_classCallCheck(this, SnapshotCreationOptions);
|
|
31
|
-
|
|
32
43
|
SnapshotCreationOptions.initialize(this, name);
|
|
33
44
|
}
|
|
45
|
+
|
|
34
46
|
/**
|
|
35
47
|
* Initializes the fields of this object.
|
|
36
48
|
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
37
49
|
* Only for internal use.
|
|
38
50
|
*/
|
|
39
|
-
|
|
40
|
-
|
|
41
51
|
_createClass(SnapshotCreationOptions, null, [{
|
|
42
52
|
key: "initialize",
|
|
43
53
|
value: function initialize(obj, name) {
|
|
44
54
|
obj['name'] = name;
|
|
45
55
|
}
|
|
56
|
+
|
|
46
57
|
/**
|
|
47
58
|
* Constructs a <code>SnapshotCreationOptions</code> from a plain JavaScript object, optionally creating a new instance.
|
|
48
59
|
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
@@ -50,30 +61,56 @@ var SnapshotCreationOptions = /*#__PURE__*/function () {
|
|
|
50
61
|
* @param {module:model/SnapshotCreationOptions} obj Optional instance to populate.
|
|
51
62
|
* @return {module:model/SnapshotCreationOptions} The populated <code>SnapshotCreationOptions</code> instance.
|
|
52
63
|
*/
|
|
53
|
-
|
|
54
64
|
}, {
|
|
55
65
|
key: "constructFromObject",
|
|
56
66
|
value: function constructFromObject(data, obj) {
|
|
57
67
|
if (data) {
|
|
58
68
|
obj = obj || new SnapshotCreationOptions();
|
|
59
|
-
|
|
60
69
|
if (data.hasOwnProperty('name')) {
|
|
61
70
|
obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
|
|
62
71
|
}
|
|
63
72
|
}
|
|
64
|
-
|
|
65
73
|
return obj;
|
|
66
74
|
}
|
|
67
|
-
}]);
|
|
68
75
|
|
|
76
|
+
/**
|
|
77
|
+
* Validates the JSON data with respect to <code>SnapshotCreationOptions</code>.
|
|
78
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
79
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>SnapshotCreationOptions</code>.
|
|
80
|
+
*/
|
|
81
|
+
}, {
|
|
82
|
+
key: "validateJSON",
|
|
83
|
+
value: function validateJSON(data) {
|
|
84
|
+
// check to make sure all required properties are present in the JSON string
|
|
85
|
+
var _iterator = _createForOfIteratorHelper(SnapshotCreationOptions.RequiredProperties),
|
|
86
|
+
_step;
|
|
87
|
+
try {
|
|
88
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
89
|
+
var property = _step.value;
|
|
90
|
+
if (!data[property]) {
|
|
91
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
// ensure the json data is a string
|
|
95
|
+
} catch (err) {
|
|
96
|
+
_iterator.e(err);
|
|
97
|
+
} finally {
|
|
98
|
+
_iterator.f();
|
|
99
|
+
}
|
|
100
|
+
if (data['name'] && !(typeof data['name'] === 'string' || data['name'] instanceof String)) {
|
|
101
|
+
throw new Error("Expected the field `name` to be a primitive type in the JSON string but got " + data['name']);
|
|
102
|
+
}
|
|
103
|
+
return true;
|
|
104
|
+
}
|
|
105
|
+
}]);
|
|
69
106
|
return SnapshotCreationOptions;
|
|
70
107
|
}();
|
|
108
|
+
SnapshotCreationOptions.RequiredProperties = ["name"];
|
|
109
|
+
|
|
71
110
|
/**
|
|
72
111
|
* Snapshot name
|
|
73
112
|
* @member {String} name
|
|
74
113
|
*/
|
|
75
|
-
|
|
76
|
-
|
|
77
114
|
SnapshotCreationOptions.prototype['name'] = undefined;
|
|
78
115
|
var _default = SnapshotCreationOptions;
|
|
79
116
|
exports["default"] = _default;
|
|
@@ -4,42 +4,50 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
|
-
|
|
8
7
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
|
-
|
|
10
8
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
-
|
|
9
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
12
10
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
13
|
-
|
|
14
|
-
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
15
|
-
|
|
11
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
16
12
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
17
|
-
|
|
13
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
14
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } /**
|
|
15
|
+
* Corellium API
|
|
16
|
+
* REST API to manage your virtual devices.
|
|
17
|
+
*
|
|
18
|
+
* The version of the OpenAPI document: 4.5.0-16775
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
22
|
+
* https://openapi-generator.tech
|
|
23
|
+
* Do not edit the class manually.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
18
26
|
/**
|
|
19
27
|
* The SnapshotStatus model module.
|
|
20
28
|
* @module model/SnapshotStatus
|
|
21
|
-
* @version 0.
|
|
29
|
+
* @version 0.3.2
|
|
22
30
|
*/
|
|
23
31
|
var SnapshotStatus = /*#__PURE__*/function () {
|
|
24
32
|
/**
|
|
25
33
|
* Constructs a new <code>SnapshotStatus</code>.
|
|
34
|
+
*
|
|
26
35
|
* @alias module:model/SnapshotStatus
|
|
27
36
|
*/
|
|
28
37
|
function SnapshotStatus() {
|
|
29
38
|
_classCallCheck(this, SnapshotStatus);
|
|
30
|
-
|
|
31
39
|
SnapshotStatus.initialize(this);
|
|
32
40
|
}
|
|
41
|
+
|
|
33
42
|
/**
|
|
34
43
|
* Initializes the fields of this object.
|
|
35
44
|
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
36
45
|
* Only for internal use.
|
|
37
46
|
*/
|
|
38
|
-
|
|
39
|
-
|
|
40
47
|
_createClass(SnapshotStatus, null, [{
|
|
41
48
|
key: "initialize",
|
|
42
49
|
value: function initialize(obj) {}
|
|
50
|
+
|
|
43
51
|
/**
|
|
44
52
|
* Constructs a <code>SnapshotStatus</code> from a plain JavaScript object, optionally creating a new instance.
|
|
45
53
|
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
@@ -47,38 +55,48 @@ var SnapshotStatus = /*#__PURE__*/function () {
|
|
|
47
55
|
* @param {module:model/SnapshotStatus} obj Optional instance to populate.
|
|
48
56
|
* @return {module:model/SnapshotStatus} The populated <code>SnapshotStatus</code> instance.
|
|
49
57
|
*/
|
|
50
|
-
|
|
51
58
|
}, {
|
|
52
59
|
key: "constructFromObject",
|
|
53
60
|
value: function constructFromObject(data, obj) {
|
|
54
61
|
if (data) {
|
|
55
62
|
obj = obj || new SnapshotStatus();
|
|
56
|
-
|
|
57
63
|
if (data.hasOwnProperty('task')) {
|
|
58
64
|
obj['task'] = _ApiClient["default"].convertToType(data['task'], 'String');
|
|
59
65
|
}
|
|
60
|
-
|
|
61
66
|
if (data.hasOwnProperty('created')) {
|
|
62
67
|
obj['created'] = _ApiClient["default"].convertToType(data['created'], 'Boolean');
|
|
63
68
|
}
|
|
64
69
|
}
|
|
65
|
-
|
|
66
70
|
return obj;
|
|
67
71
|
}
|
|
68
|
-
}]);
|
|
69
72
|
|
|
73
|
+
/**
|
|
74
|
+
* Validates the JSON data with respect to <code>SnapshotStatus</code>.
|
|
75
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
76
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>SnapshotStatus</code>.
|
|
77
|
+
*/
|
|
78
|
+
}, {
|
|
79
|
+
key: "validateJSON",
|
|
80
|
+
value: function validateJSON(data) {
|
|
81
|
+
// ensure the json data is a string
|
|
82
|
+
if (data['task'] && !(typeof data['task'] === 'string' || data['task'] instanceof String)) {
|
|
83
|
+
throw new Error("Expected the field `task` to be a primitive type in the JSON string but got " + data['task']);
|
|
84
|
+
}
|
|
85
|
+
return true;
|
|
86
|
+
}
|
|
87
|
+
}]);
|
|
70
88
|
return SnapshotStatus;
|
|
71
89
|
}();
|
|
72
90
|
/**
|
|
91
|
+
*
|
|
73
92
|
* @member {String} task
|
|
74
93
|
*/
|
|
75
|
-
|
|
76
|
-
|
|
77
94
|
SnapshotStatus.prototype['task'] = undefined;
|
|
95
|
+
|
|
78
96
|
/**
|
|
97
|
+
*
|
|
79
98
|
* @member {Boolean} created
|
|
80
99
|
*/
|
|
81
|
-
|
|
82
100
|
SnapshotStatus.prototype['created'] = undefined;
|
|
83
101
|
var _default = SnapshotStatus;
|
|
84
102
|
exports["default"] = _default;
|