@alicloud/esa20240910 2.29.2 → 2.30.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/dist/client.d.ts +32 -2
- package/dist/client.js +114 -2
- package/dist/client.js.map +1 -1
- package/dist/models/CreateRoutineCodeDeploymentRequest.d.ts +61 -0
- package/dist/models/CreateRoutineCodeDeploymentRequest.js +88 -0
- package/dist/models/CreateRoutineCodeDeploymentRequest.js.map +1 -0
- package/dist/models/CreateRoutineCodeDeploymentResponse.d.ts +19 -0
- package/dist/models/CreateRoutineCodeDeploymentResponse.js +69 -0
- package/dist/models/CreateRoutineCodeDeploymentResponse.js.map +1 -0
- package/dist/models/CreateRoutineCodeDeploymentResponseBody.d.ts +31 -0
- package/dist/models/CreateRoutineCodeDeploymentResponseBody.js +88 -0
- package/dist/models/CreateRoutineCodeDeploymentResponseBody.js.map +1 -0
- package/dist/models/CreateRoutineCodeDeploymentShrinkRequest.d.ts +39 -0
- package/dist/models/CreateRoutineCodeDeploymentShrinkRequest.js +64 -0
- package/dist/models/CreateRoutineCodeDeploymentShrinkRequest.js.map +1 -0
- package/dist/models/CreateRoutineRequest.d.ts +1 -0
- package/dist/models/CreateRoutineRequest.js +2 -0
- package/dist/models/CreateRoutineRequest.js.map +1 -1
- package/dist/models/CreateRoutineWithAssetsCodeVersionRequest.d.ts +35 -0
- package/dist/models/CreateRoutineWithAssetsCodeVersionRequest.js +88 -0
- package/dist/models/CreateRoutineWithAssetsCodeVersionRequest.js.map +1 -0
- package/dist/models/CreateRoutineWithAssetsCodeVersionResponse.d.ts +19 -0
- package/dist/models/CreateRoutineWithAssetsCodeVersionResponse.js +69 -0
- package/dist/models/CreateRoutineWithAssetsCodeVersionResponse.js.map +1 -0
- package/dist/models/CreateRoutineWithAssetsCodeVersionResponseBody.d.ts +35 -0
- package/dist/models/CreateRoutineWithAssetsCodeVersionResponseBody.js +96 -0
- package/dist/models/CreateRoutineWithAssetsCodeVersionResponseBody.js.map +1 -0
- package/dist/models/CreateRoutineWithAssetsCodeVersionShrinkRequest.d.ts +22 -0
- package/dist/models/CreateRoutineWithAssetsCodeVersionShrinkRequest.js +66 -0
- package/dist/models/CreateRoutineWithAssetsCodeVersionShrinkRequest.js.map +1 -0
- package/dist/models/GetRoutineResponseBody.d.ts +34 -0
- package/dist/models/GetRoutineResponseBody.js +61 -1
- package/dist/models/GetRoutineResponseBody.js.map +1 -1
- package/dist/models/ListRoutineCodeVersionsResponseBody.d.ts +17 -0
- package/dist/models/ListRoutineCodeVersionsResponseBody.js +31 -1
- package/dist/models/ListRoutineCodeVersionsResponseBody.js.map +1 -1
- package/dist/models/ListUserRoutinesResponseBody.d.ts +2 -0
- package/dist/models/ListUserRoutinesResponseBody.js +4 -0
- package/dist/models/ListUserRoutinesResponseBody.js.map +1 -1
- package/dist/models/UpdateCrossBorderOptimizationRequest.d.ts +7 -0
- package/dist/models/UpdateCrossBorderOptimizationRequest.js.map +1 -1
- package/dist/models/UpdateCrossBorderOptimizationResponseBody.d.ts +3 -0
- package/dist/models/UpdateCrossBorderOptimizationResponseBody.js.map +1 -1
- package/dist/models/model.d.ts +15 -0
- package/dist/models/model.js +62 -32
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +130 -2
- package/src/models/CreateRoutineCodeDeploymentRequest.ts +95 -0
- package/src/models/CreateRoutineCodeDeploymentResponse.ts +40 -0
- package/src/models/CreateRoutineCodeDeploymentResponseBody.ts +65 -0
- package/src/models/CreateRoutineCodeDeploymentShrinkRequest.ts +58 -0
- package/src/models/CreateRoutineRequest.ts +3 -0
- package/src/models/CreateRoutineWithAssetsCodeVersionRequest.ts +69 -0
- package/src/models/CreateRoutineWithAssetsCodeVersionResponse.ts +40 -0
- package/src/models/CreateRoutineWithAssetsCodeVersionResponseBody.ts +77 -0
- package/src/models/CreateRoutineWithAssetsCodeVersionShrinkRequest.ts +43 -0
- package/src/models/GetRoutineResponseBody.ts +76 -0
- package/src/models/ListRoutineCodeVersionsResponseBody.ts +38 -0
- package/src/models/ListUserRoutinesResponseBody.ts +6 -0
- package/src/models/UpdateCrossBorderOptimizationRequest.ts +7 -0
- package/src/models/UpdateCrossBorderOptimizationResponseBody.ts +3 -0
- package/src/models/model.ts +15 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class CreateRoutineCodeDeploymentRequestCodeVersions extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* This parameter is required.
|
|
6
|
+
*/
|
|
7
|
+
codeVersion?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @remarks
|
|
10
|
+
* This parameter is required.
|
|
11
|
+
*/
|
|
12
|
+
percentage?: number;
|
|
13
|
+
static names(): {
|
|
14
|
+
[key: string]: string;
|
|
15
|
+
};
|
|
16
|
+
static types(): {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
};
|
|
19
|
+
validate(): void;
|
|
20
|
+
constructor(map?: {
|
|
21
|
+
[key: string]: any;
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
export declare class CreateRoutineCodeDeploymentRequest extends $dara.Model {
|
|
25
|
+
/**
|
|
26
|
+
* @remarks
|
|
27
|
+
* This parameter is required.
|
|
28
|
+
*/
|
|
29
|
+
codeVersions?: CreateRoutineCodeDeploymentRequestCodeVersions[];
|
|
30
|
+
/**
|
|
31
|
+
* @remarks
|
|
32
|
+
* This parameter is required.
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* production
|
|
36
|
+
*/
|
|
37
|
+
env?: string;
|
|
38
|
+
/**
|
|
39
|
+
* @remarks
|
|
40
|
+
* This parameter is required.
|
|
41
|
+
*/
|
|
42
|
+
name?: string;
|
|
43
|
+
/**
|
|
44
|
+
* @remarks
|
|
45
|
+
* This parameter is required.
|
|
46
|
+
*
|
|
47
|
+
* @example
|
|
48
|
+
* percentage
|
|
49
|
+
*/
|
|
50
|
+
strategy?: string;
|
|
51
|
+
static names(): {
|
|
52
|
+
[key: string]: string;
|
|
53
|
+
};
|
|
54
|
+
static types(): {
|
|
55
|
+
[key: string]: any;
|
|
56
|
+
};
|
|
57
|
+
validate(): void;
|
|
58
|
+
constructor(map?: {
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
});
|
|
61
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.CreateRoutineCodeDeploymentRequest = exports.CreateRoutineCodeDeploymentRequestCodeVersions = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class CreateRoutineCodeDeploymentRequestCodeVersions extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
codeVersion: 'CodeVersion',
|
|
43
|
+
percentage: 'Percentage',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
static types() {
|
|
47
|
+
return {
|
|
48
|
+
codeVersion: 'string',
|
|
49
|
+
percentage: 'number',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
validate() {
|
|
53
|
+
super.validate();
|
|
54
|
+
}
|
|
55
|
+
constructor(map) {
|
|
56
|
+
super(map);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.CreateRoutineCodeDeploymentRequestCodeVersions = CreateRoutineCodeDeploymentRequestCodeVersions;
|
|
60
|
+
class CreateRoutineCodeDeploymentRequest extends $dara.Model {
|
|
61
|
+
static names() {
|
|
62
|
+
return {
|
|
63
|
+
codeVersions: 'CodeVersions',
|
|
64
|
+
env: 'Env',
|
|
65
|
+
name: 'Name',
|
|
66
|
+
strategy: 'Strategy',
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
static types() {
|
|
70
|
+
return {
|
|
71
|
+
codeVersions: { 'type': 'array', 'itemType': CreateRoutineCodeDeploymentRequestCodeVersions },
|
|
72
|
+
env: 'string',
|
|
73
|
+
name: 'string',
|
|
74
|
+
strategy: 'string',
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
validate() {
|
|
78
|
+
if (Array.isArray(this.codeVersions)) {
|
|
79
|
+
$dara.Model.validateArray(this.codeVersions);
|
|
80
|
+
}
|
|
81
|
+
super.validate();
|
|
82
|
+
}
|
|
83
|
+
constructor(map) {
|
|
84
|
+
super(map);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
exports.CreateRoutineCodeDeploymentRequest = CreateRoutineCodeDeploymentRequest;
|
|
88
|
+
//# sourceMappingURL=CreateRoutineCodeDeploymentRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateRoutineCodeDeploymentRequest.js","sourceRoot":"","sources":["../../src/models/CreateRoutineCodeDeploymentRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,8CAA+C,SAAQ,KAAK,CAAC,KAAK;IAW7E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,UAAU,EAAE,YAAY;SACzB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,UAAU,EAAE,QAAQ;SACrB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAhCD,wGAgCC;AAED,MAAa,kCAAmC,SAAQ,KAAK,CAAC,KAAK;IA2BjE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,cAAc;YAC5B,GAAG,EAAE,KAAK;YACV,IAAI,EAAE,MAAM;YACZ,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,8CAA8C,EAAE;YAC7F,GAAG,EAAE,QAAQ;YACb,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC;YACpC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAC/C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAvDD,gFAuDC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { CreateRoutineCodeDeploymentResponseBody } from "./CreateRoutineCodeDeploymentResponseBody";
|
|
3
|
+
export declare class CreateRoutineCodeDeploymentResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: CreateRoutineCodeDeploymentResponseBody;
|
|
9
|
+
static names(): {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
12
|
+
static types(): {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
};
|
|
15
|
+
validate(): void;
|
|
16
|
+
constructor(map?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
});
|
|
19
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.CreateRoutineCodeDeploymentResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const CreateRoutineCodeDeploymentResponseBody_1 = require("./CreateRoutineCodeDeploymentResponseBody");
|
|
40
|
+
class CreateRoutineCodeDeploymentResponse extends $dara.Model {
|
|
41
|
+
static names() {
|
|
42
|
+
return {
|
|
43
|
+
headers: 'headers',
|
|
44
|
+
statusCode: 'statusCode',
|
|
45
|
+
body: 'body',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
static types() {
|
|
49
|
+
return {
|
|
50
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
51
|
+
statusCode: 'number',
|
|
52
|
+
body: CreateRoutineCodeDeploymentResponseBody_1.CreateRoutineCodeDeploymentResponseBody,
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
validate() {
|
|
56
|
+
if (this.headers) {
|
|
57
|
+
$dara.Model.validateMap(this.headers);
|
|
58
|
+
}
|
|
59
|
+
if (this.body && typeof this.body.validate === 'function') {
|
|
60
|
+
this.body.validate();
|
|
61
|
+
}
|
|
62
|
+
super.validate();
|
|
63
|
+
}
|
|
64
|
+
constructor(map) {
|
|
65
|
+
super(map);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
exports.CreateRoutineCodeDeploymentResponse = CreateRoutineCodeDeploymentResponse;
|
|
69
|
+
//# sourceMappingURL=CreateRoutineCodeDeploymentResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateRoutineCodeDeploymentResponse.js","sourceRoot":"","sources":["../../src/models/CreateRoutineCodeDeploymentResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,uGAAoG;AAGpG,MAAa,mCAAoC,SAAQ,KAAK,CAAC,KAAK;IAIlE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,iFAAuC;SAC9C,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,kFAiCC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class CreateRoutineCodeDeploymentResponseBodyCodeVersions extends $dara.Model {
|
|
3
|
+
codeVersion?: string;
|
|
4
|
+
percentage?: number;
|
|
5
|
+
static names(): {
|
|
6
|
+
[key: string]: string;
|
|
7
|
+
};
|
|
8
|
+
static types(): {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
};
|
|
11
|
+
validate(): void;
|
|
12
|
+
constructor(map?: {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
export declare class CreateRoutineCodeDeploymentResponseBody extends $dara.Model {
|
|
17
|
+
codeVersions?: CreateRoutineCodeDeploymentResponseBodyCodeVersions[];
|
|
18
|
+
deploymentId?: string;
|
|
19
|
+
requestId?: string;
|
|
20
|
+
strategy?: string;
|
|
21
|
+
static names(): {
|
|
22
|
+
[key: string]: string;
|
|
23
|
+
};
|
|
24
|
+
static types(): {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
};
|
|
27
|
+
validate(): void;
|
|
28
|
+
constructor(map?: {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
});
|
|
31
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.CreateRoutineCodeDeploymentResponseBody = exports.CreateRoutineCodeDeploymentResponseBodyCodeVersions = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class CreateRoutineCodeDeploymentResponseBodyCodeVersions extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
codeVersion: 'CodeVersion',
|
|
43
|
+
percentage: 'Percentage',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
static types() {
|
|
47
|
+
return {
|
|
48
|
+
codeVersion: 'string',
|
|
49
|
+
percentage: 'number',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
validate() {
|
|
53
|
+
super.validate();
|
|
54
|
+
}
|
|
55
|
+
constructor(map) {
|
|
56
|
+
super(map);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.CreateRoutineCodeDeploymentResponseBodyCodeVersions = CreateRoutineCodeDeploymentResponseBodyCodeVersions;
|
|
60
|
+
class CreateRoutineCodeDeploymentResponseBody extends $dara.Model {
|
|
61
|
+
static names() {
|
|
62
|
+
return {
|
|
63
|
+
codeVersions: 'CodeVersions',
|
|
64
|
+
deploymentId: 'DeploymentId',
|
|
65
|
+
requestId: 'RequestId',
|
|
66
|
+
strategy: 'Strategy',
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
static types() {
|
|
70
|
+
return {
|
|
71
|
+
codeVersions: { 'type': 'array', 'itemType': CreateRoutineCodeDeploymentResponseBodyCodeVersions },
|
|
72
|
+
deploymentId: 'string',
|
|
73
|
+
requestId: 'string',
|
|
74
|
+
strategy: 'string',
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
validate() {
|
|
78
|
+
if (Array.isArray(this.codeVersions)) {
|
|
79
|
+
$dara.Model.validateArray(this.codeVersions);
|
|
80
|
+
}
|
|
81
|
+
super.validate();
|
|
82
|
+
}
|
|
83
|
+
constructor(map) {
|
|
84
|
+
super(map);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
exports.CreateRoutineCodeDeploymentResponseBody = CreateRoutineCodeDeploymentResponseBody;
|
|
88
|
+
//# sourceMappingURL=CreateRoutineCodeDeploymentResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateRoutineCodeDeploymentResponseBody.js","sourceRoot":"","sources":["../../src/models/CreateRoutineCodeDeploymentResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,mDAAoD,SAAQ,KAAK,CAAC,KAAK;IAGlF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,UAAU,EAAE,YAAY;SACzB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,UAAU,EAAE,QAAQ;SACrB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAxBD,kHAwBC;AAED,MAAa,uCAAwC,SAAQ,KAAK,CAAC,KAAK;IAKtE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,cAAc;YAC5B,YAAY,EAAE,cAAc;YAC5B,SAAS,EAAE,WAAW;YACtB,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,mDAAmD,EAAE;YAClG,YAAY,EAAE,QAAQ;YACtB,SAAS,EAAE,QAAQ;YACnB,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC;YACpC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAC/C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,0FAiCC"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class CreateRoutineCodeDeploymentShrinkRequest extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* This parameter is required.
|
|
6
|
+
*/
|
|
7
|
+
codeVersionsShrink?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @remarks
|
|
10
|
+
* This parameter is required.
|
|
11
|
+
*
|
|
12
|
+
* @example
|
|
13
|
+
* production
|
|
14
|
+
*/
|
|
15
|
+
env?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @remarks
|
|
18
|
+
* This parameter is required.
|
|
19
|
+
*/
|
|
20
|
+
name?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @remarks
|
|
23
|
+
* This parameter is required.
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* percentage
|
|
27
|
+
*/
|
|
28
|
+
strategy?: string;
|
|
29
|
+
static names(): {
|
|
30
|
+
[key: string]: string;
|
|
31
|
+
};
|
|
32
|
+
static types(): {
|
|
33
|
+
[key: string]: any;
|
|
34
|
+
};
|
|
35
|
+
validate(): void;
|
|
36
|
+
constructor(map?: {
|
|
37
|
+
[key: string]: any;
|
|
38
|
+
});
|
|
39
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.CreateRoutineCodeDeploymentShrinkRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class CreateRoutineCodeDeploymentShrinkRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
codeVersionsShrink: 'CodeVersions',
|
|
43
|
+
env: 'Env',
|
|
44
|
+
name: 'Name',
|
|
45
|
+
strategy: 'Strategy',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
static types() {
|
|
49
|
+
return {
|
|
50
|
+
codeVersionsShrink: 'string',
|
|
51
|
+
env: 'string',
|
|
52
|
+
name: 'string',
|
|
53
|
+
strategy: 'string',
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
validate() {
|
|
57
|
+
super.validate();
|
|
58
|
+
}
|
|
59
|
+
constructor(map) {
|
|
60
|
+
super(map);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
exports.CreateRoutineCodeDeploymentShrinkRequest = CreateRoutineCodeDeploymentShrinkRequest;
|
|
64
|
+
//# sourceMappingURL=CreateRoutineCodeDeploymentShrinkRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateRoutineCodeDeploymentShrinkRequest.js","sourceRoot":"","sources":["../../src/models/CreateRoutineCodeDeploymentShrinkRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,wCAAyC,SAAQ,KAAK,CAAC,KAAK;IA2BvE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,kBAAkB,EAAE,cAAc;YAClC,GAAG,EAAE,KAAK;YACV,IAAI,EAAE,MAAM;YACZ,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,kBAAkB,EAAE,QAAQ;YAC5B,GAAG,EAAE,QAAQ;YACb,IAAI,EAAE,QAAQ;YACd,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AApDD,4FAoDC"}
|
|
@@ -40,12 +40,14 @@ class CreateRoutineRequest extends $dara.Model {
|
|
|
40
40
|
static names() {
|
|
41
41
|
return {
|
|
42
42
|
description: 'Description',
|
|
43
|
+
hasAssets: 'HasAssets',
|
|
43
44
|
name: 'Name',
|
|
44
45
|
};
|
|
45
46
|
}
|
|
46
47
|
static types() {
|
|
47
48
|
return {
|
|
48
49
|
description: 'string',
|
|
50
|
+
hasAssets: 'boolean',
|
|
49
51
|
name: 'string',
|
|
50
52
|
};
|
|
51
53
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreateRoutineRequest.js","sourceRoot":"","sources":["../../src/models/CreateRoutineRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oBAAqB,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"CreateRoutineRequest.js","sourceRoot":"","sources":["../../src/models/CreateRoutineRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oBAAqB,SAAQ,KAAK,CAAC,KAAK;IAoBnD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,SAAS,EAAE,WAAW;YACtB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,SAAS,EAAE,SAAS;YACpB,IAAI,EAAE,QAAQ;SACf,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA3CD,oDA2CC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class CreateRoutineWithAssetsCodeVersionRequestConfOptions extends $dara.Model {
|
|
3
|
+
notFoundStrategy?: string;
|
|
4
|
+
static names(): {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
static types(): {
|
|
8
|
+
[key: string]: any;
|
|
9
|
+
};
|
|
10
|
+
validate(): void;
|
|
11
|
+
constructor(map?: {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
export declare class CreateRoutineWithAssetsCodeVersionRequest extends $dara.Model {
|
|
16
|
+
buildId?: number;
|
|
17
|
+
codeDescription?: string;
|
|
18
|
+
confOptions?: CreateRoutineWithAssetsCodeVersionRequestConfOptions;
|
|
19
|
+
extraInfo?: string;
|
|
20
|
+
/**
|
|
21
|
+
* @remarks
|
|
22
|
+
* This parameter is required.
|
|
23
|
+
*/
|
|
24
|
+
name?: string;
|
|
25
|
+
static names(): {
|
|
26
|
+
[key: string]: string;
|
|
27
|
+
};
|
|
28
|
+
static types(): {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
};
|
|
31
|
+
validate(): void;
|
|
32
|
+
constructor(map?: {
|
|
33
|
+
[key: string]: any;
|
|
34
|
+
});
|
|
35
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.CreateRoutineWithAssetsCodeVersionRequest = exports.CreateRoutineWithAssetsCodeVersionRequestConfOptions = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class CreateRoutineWithAssetsCodeVersionRequestConfOptions extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
notFoundStrategy: 'NotFoundStrategy',
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
static types() {
|
|
46
|
+
return {
|
|
47
|
+
notFoundStrategy: 'string',
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
validate() {
|
|
51
|
+
super.validate();
|
|
52
|
+
}
|
|
53
|
+
constructor(map) {
|
|
54
|
+
super(map);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.CreateRoutineWithAssetsCodeVersionRequestConfOptions = CreateRoutineWithAssetsCodeVersionRequestConfOptions;
|
|
58
|
+
class CreateRoutineWithAssetsCodeVersionRequest extends $dara.Model {
|
|
59
|
+
static names() {
|
|
60
|
+
return {
|
|
61
|
+
buildId: 'BuildId',
|
|
62
|
+
codeDescription: 'CodeDescription',
|
|
63
|
+
confOptions: 'ConfOptions',
|
|
64
|
+
extraInfo: 'ExtraInfo',
|
|
65
|
+
name: 'Name',
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
static types() {
|
|
69
|
+
return {
|
|
70
|
+
buildId: 'number',
|
|
71
|
+
codeDescription: 'string',
|
|
72
|
+
confOptions: CreateRoutineWithAssetsCodeVersionRequestConfOptions,
|
|
73
|
+
extraInfo: 'string',
|
|
74
|
+
name: 'string',
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
validate() {
|
|
78
|
+
if (this.confOptions && typeof this.confOptions.validate === 'function') {
|
|
79
|
+
this.confOptions.validate();
|
|
80
|
+
}
|
|
81
|
+
super.validate();
|
|
82
|
+
}
|
|
83
|
+
constructor(map) {
|
|
84
|
+
super(map);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
exports.CreateRoutineWithAssetsCodeVersionRequest = CreateRoutineWithAssetsCodeVersionRequest;
|
|
88
|
+
//# sourceMappingURL=CreateRoutineWithAssetsCodeVersionRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateRoutineWithAssetsCodeVersionRequest.js","sourceRoot":"","sources":["../../src/models/CreateRoutineWithAssetsCodeVersionRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oDAAqD,SAAQ,KAAK,CAAC,KAAK;IAEnF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,gBAAgB,EAAE,kBAAkB;SACrC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,gBAAgB,EAAE,QAAQ;SAC3B,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AArBD,oHAqBC;AAED,MAAa,yCAA0C,SAAQ,KAAK,CAAC,KAAK;IAUxE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,eAAe,EAAE,iBAAiB;YAClC,WAAW,EAAE,aAAa;YAC1B,SAAS,EAAE,WAAW;YACtB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,QAAQ;YACjB,eAAe,EAAE,QAAQ;YACzB,WAAW,EAAE,oDAAoD;YACjE,SAAS,EAAE,QAAQ;YACnB,IAAI,EAAE,QAAQ;SACf,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,WAAW,IAAI,OAAQ,IAAI,CAAC,WAAmB,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YAC/E,IAAI,CAAC,WAAmB,CAAC,QAAQ,EAAE,CAAC;QACvC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAxCD,8FAwCC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { CreateRoutineWithAssetsCodeVersionResponseBody } from "./CreateRoutineWithAssetsCodeVersionResponseBody";
|
|
3
|
+
export declare class CreateRoutineWithAssetsCodeVersionResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: CreateRoutineWithAssetsCodeVersionResponseBody;
|
|
9
|
+
static names(): {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
12
|
+
static types(): {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
};
|
|
15
|
+
validate(): void;
|
|
16
|
+
constructor(map?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
});
|
|
19
|
+
}
|