@alicloud/cms20240330 9.0.0 → 9.1.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 +90 -0
- package/dist/client.js +233 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreatePipelineRequest.d.ts +213 -0
- package/dist/models/CreatePipelineRequest.js +291 -0
- package/dist/models/CreatePipelineRequest.js.map +1 -0
- package/dist/models/CreatePipelineResponse.d.ts +19 -0
- package/dist/models/CreatePipelineResponse.js +69 -0
- package/dist/models/CreatePipelineResponse.js.map +1 -0
- package/dist/models/CreatePipelineResponseBody.d.ts +18 -0
- package/dist/models/CreatePipelineResponseBody.js +58 -0
- package/dist/models/CreatePipelineResponseBody.js.map +1 -0
- package/dist/models/DeletePipelineRequest.d.ts +13 -0
- package/dist/models/DeletePipelineRequest.js +54 -0
- package/dist/models/DeletePipelineRequest.js.map +1 -0
- package/dist/models/DeletePipelineResponse.d.ts +19 -0
- package/dist/models/DeletePipelineResponse.js +69 -0
- package/dist/models/DeletePipelineResponse.js.map +1 -0
- package/dist/models/DeletePipelineResponseBody.d.ts +18 -0
- package/dist/models/DeletePipelineResponseBody.js +58 -0
- package/dist/models/DeletePipelineResponseBody.js.map +1 -0
- package/dist/models/GetPipelineRequest.d.ts +13 -0
- package/dist/models/GetPipelineRequest.js +54 -0
- package/dist/models/GetPipelineRequest.js.map +1 -0
- package/dist/models/GetPipelineResponse.d.ts +19 -0
- package/dist/models/GetPipelineResponse.js +69 -0
- package/dist/models/GetPipelineResponse.js.map +1 -0
- package/dist/models/GetPipelineResponseBody.d.ts +239 -0
- package/dist/models/GetPipelineResponseBody.js +299 -0
- package/dist/models/GetPipelineResponseBody.js.map +1 -0
- package/dist/models/ListPipelinesRequest.d.ts +28 -0
- package/dist/models/ListPipelinesRequest.js +62 -0
- package/dist/models/ListPipelinesRequest.js.map +1 -0
- package/dist/models/ListPipelinesResponse.d.ts +19 -0
- package/dist/models/ListPipelinesResponse.js +69 -0
- package/dist/models/ListPipelinesResponse.js.map +1 -0
- package/dist/models/ListPipelinesResponseBody.d.ts +80 -0
- package/dist/models/ListPipelinesResponseBody.js +96 -0
- package/dist/models/ListPipelinesResponseBody.js.map +1 -0
- package/dist/models/QueryConfigUnified.d.ts +1 -0
- package/dist/models/QueryConfigUnified.js +2 -0
- package/dist/models/QueryConfigUnified.js.map +1 -1
- package/dist/models/UpdatePipelineRequest.d.ts +203 -0
- package/dist/models/UpdatePipelineRequest.js +287 -0
- package/dist/models/UpdatePipelineRequest.js.map +1 -0
- package/dist/models/UpdatePipelineResponse.d.ts +19 -0
- package/dist/models/UpdatePipelineResponse.js +69 -0
- package/dist/models/UpdatePipelineResponse.js.map +1 -0
- package/dist/models/UpdatePipelineResponseBody.d.ts +18 -0
- package/dist/models/UpdatePipelineResponseBody.js +58 -0
- package/dist/models/UpdatePipelineResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +43 -0
- package/dist/models/model.js +100 -14
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +257 -0
- package/src/models/CreatePipelineRequest.ts +376 -0
- package/src/models/CreatePipelineResponse.ts +40 -0
- package/src/models/CreatePipelineResponseBody.ts +31 -0
- package/src/models/DeletePipelineRequest.ts +24 -0
- package/src/models/DeletePipelineResponse.ts +40 -0
- package/src/models/DeletePipelineResponseBody.ts +31 -0
- package/src/models/GetPipelineRequest.ts +24 -0
- package/src/models/GetPipelineResponse.ts +40 -0
- package/src/models/GetPipelineResponseBody.ts +410 -0
- package/src/models/ListPipelinesRequest.ts +45 -0
- package/src/models/ListPipelinesResponse.ts +40 -0
- package/src/models/ListPipelinesResponseBody.ts +122 -0
- package/src/models/QueryConfigUnified.ts +3 -0
- package/src/models/UpdatePipelineRequest.ts +362 -0
- package/src/models/UpdatePipelineResponse.ts +40 -0
- package/src/models/UpdatePipelineResponseBody.ts +31 -0
- package/src/models/model.ts +43 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DeletePipelineRequest extends $dara.Model {
|
|
3
|
+
static names(): {
|
|
4
|
+
[key: string]: string;
|
|
5
|
+
};
|
|
6
|
+
static types(): {
|
|
7
|
+
[key: string]: any;
|
|
8
|
+
};
|
|
9
|
+
validate(): void;
|
|
10
|
+
constructor(map?: {
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
});
|
|
13
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
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.DeletePipelineRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DeletePipelineRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {};
|
|
42
|
+
}
|
|
43
|
+
static types() {
|
|
44
|
+
return {};
|
|
45
|
+
}
|
|
46
|
+
validate() {
|
|
47
|
+
super.validate();
|
|
48
|
+
}
|
|
49
|
+
constructor(map) {
|
|
50
|
+
super(map);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
exports.DeletePipelineRequest = DeletePipelineRequest;
|
|
54
|
+
//# sourceMappingURL=DeletePipelineRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DeletePipelineRequest.js","sourceRoot":"","sources":["../../src/models/DeletePipelineRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,qBAAsB,SAAQ,KAAK,CAAC,KAAK;IACpD,MAAM,CAAC,KAAK;QACV,OAAO,EACN,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO,EACN,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;AAlBD,sDAkBC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { DeletePipelineResponseBody } from "./DeletePipelineResponseBody";
|
|
3
|
+
export declare class DeletePipelineResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: DeletePipelineResponseBody;
|
|
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.DeletePipelineResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const DeletePipelineResponseBody_1 = require("./DeletePipelineResponseBody");
|
|
40
|
+
class DeletePipelineResponse 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: DeletePipelineResponseBody_1.DeletePipelineResponseBody,
|
|
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.DeletePipelineResponse = DeletePipelineResponse;
|
|
69
|
+
//# sourceMappingURL=DeletePipelineResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DeletePipelineResponse.js","sourceRoot":"","sources":["../../src/models/DeletePipelineResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,6EAA0E;AAG1E,MAAa,sBAAuB,SAAQ,KAAK,CAAC,KAAK;IAIrD,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,uDAA0B;SACjC,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,wDAiCC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DeletePipelineResponseBody extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* CD8BA7D6-995D-578D-9941-78B0FECD14B5
|
|
6
|
+
*/
|
|
7
|
+
requestId?: string;
|
|
8
|
+
static names(): {
|
|
9
|
+
[key: string]: string;
|
|
10
|
+
};
|
|
11
|
+
static types(): {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
};
|
|
14
|
+
validate(): void;
|
|
15
|
+
constructor(map?: {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
});
|
|
18
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
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.DeletePipelineResponseBody = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DeletePipelineResponseBody extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
requestId: 'requestId',
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
static types() {
|
|
46
|
+
return {
|
|
47
|
+
requestId: 'string',
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
validate() {
|
|
51
|
+
super.validate();
|
|
52
|
+
}
|
|
53
|
+
constructor(map) {
|
|
54
|
+
super(map);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.DeletePipelineResponseBody = DeletePipelineResponseBody;
|
|
58
|
+
//# sourceMappingURL=DeletePipelineResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DeletePipelineResponseBody.js","sourceRoot":"","sources":["../../src/models/DeletePipelineResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,0BAA2B,SAAQ,KAAK,CAAC,KAAK;IAMzD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;SACpB,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;AAzBD,gEAyBC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class GetPipelineRequest extends $dara.Model {
|
|
3
|
+
static names(): {
|
|
4
|
+
[key: string]: string;
|
|
5
|
+
};
|
|
6
|
+
static types(): {
|
|
7
|
+
[key: string]: any;
|
|
8
|
+
};
|
|
9
|
+
validate(): void;
|
|
10
|
+
constructor(map?: {
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
});
|
|
13
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
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.GetPipelineRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class GetPipelineRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {};
|
|
42
|
+
}
|
|
43
|
+
static types() {
|
|
44
|
+
return {};
|
|
45
|
+
}
|
|
46
|
+
validate() {
|
|
47
|
+
super.validate();
|
|
48
|
+
}
|
|
49
|
+
constructor(map) {
|
|
50
|
+
super(map);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
exports.GetPipelineRequest = GetPipelineRequest;
|
|
54
|
+
//# sourceMappingURL=GetPipelineRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetPipelineRequest.js","sourceRoot":"","sources":["../../src/models/GetPipelineRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,kBAAmB,SAAQ,KAAK,CAAC,KAAK;IACjD,MAAM,CAAC,KAAK;QACV,OAAO,EACN,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO,EACN,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;AAlBD,gDAkBC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { GetPipelineResponseBody } from "./GetPipelineResponseBody";
|
|
3
|
+
export declare class GetPipelineResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: GetPipelineResponseBody;
|
|
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.GetPipelineResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const GetPipelineResponseBody_1 = require("./GetPipelineResponseBody");
|
|
40
|
+
class GetPipelineResponse 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: GetPipelineResponseBody_1.GetPipelineResponseBody,
|
|
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.GetPipelineResponse = GetPipelineResponse;
|
|
69
|
+
//# sourceMappingURL=GetPipelineResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetPipelineResponse.js","sourceRoot":"","sources":["../../src/models/GetPipelineResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,uEAAoE;AAGpE,MAAa,mBAAoB,SAAQ,KAAK,CAAC,KAAK;IAIlD,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,iDAAuB;SAC9B,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,kDAiCC"}
|
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class GetPipelineResponseBodyExecutePolicyRunOnce extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* 1772519013
|
|
6
|
+
*/
|
|
7
|
+
fromTime?: number;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* 1772519013
|
|
11
|
+
*/
|
|
12
|
+
toTime?: 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 GetPipelineResponseBodyExecutePolicyScheduled extends $dara.Model {
|
|
25
|
+
/**
|
|
26
|
+
* @example
|
|
27
|
+
* 1772519013
|
|
28
|
+
*/
|
|
29
|
+
fromTime?: number;
|
|
30
|
+
/**
|
|
31
|
+
* @example
|
|
32
|
+
* 86400
|
|
33
|
+
*/
|
|
34
|
+
interval?: string;
|
|
35
|
+
static names(): {
|
|
36
|
+
[key: string]: string;
|
|
37
|
+
};
|
|
38
|
+
static types(): {
|
|
39
|
+
[key: string]: any;
|
|
40
|
+
};
|
|
41
|
+
validate(): void;
|
|
42
|
+
constructor(map?: {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
export declare class GetPipelineResponseBodyExecutePolicy extends $dara.Model {
|
|
47
|
+
/**
|
|
48
|
+
* @example
|
|
49
|
+
* runOnce
|
|
50
|
+
*/
|
|
51
|
+
mode?: string;
|
|
52
|
+
runOnce?: GetPipelineResponseBodyExecutePolicyRunOnce;
|
|
53
|
+
scheduled?: GetPipelineResponseBodyExecutePolicyScheduled;
|
|
54
|
+
static names(): {
|
|
55
|
+
[key: string]: string;
|
|
56
|
+
};
|
|
57
|
+
static types(): {
|
|
58
|
+
[key: string]: any;
|
|
59
|
+
};
|
|
60
|
+
validate(): void;
|
|
61
|
+
constructor(map?: {
|
|
62
|
+
[key: string]: any;
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
export declare class GetPipelineResponseBodyPipelineNodes extends $dara.Model {
|
|
66
|
+
/**
|
|
67
|
+
* @example
|
|
68
|
+
* node_1
|
|
69
|
+
*/
|
|
70
|
+
id?: string;
|
|
71
|
+
parameters?: {
|
|
72
|
+
[key: string]: any;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* @example
|
|
76
|
+
* dedup-fuzzy
|
|
77
|
+
*/
|
|
78
|
+
type?: string;
|
|
79
|
+
static names(): {
|
|
80
|
+
[key: string]: string;
|
|
81
|
+
};
|
|
82
|
+
static types(): {
|
|
83
|
+
[key: string]: any;
|
|
84
|
+
};
|
|
85
|
+
validate(): void;
|
|
86
|
+
constructor(map?: {
|
|
87
|
+
[key: string]: any;
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
export declare class GetPipelineResponseBodyPipeline extends $dara.Model {
|
|
91
|
+
nodes?: GetPipelineResponseBodyPipelineNodes[];
|
|
92
|
+
static names(): {
|
|
93
|
+
[key: string]: string;
|
|
94
|
+
};
|
|
95
|
+
static types(): {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
};
|
|
98
|
+
validate(): void;
|
|
99
|
+
constructor(map?: {
|
|
100
|
+
[key: string]: any;
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
export declare class GetPipelineResponseBodySinkDataset extends $dara.Model {
|
|
104
|
+
/**
|
|
105
|
+
* @example
|
|
106
|
+
* dataset_1
|
|
107
|
+
*/
|
|
108
|
+
dataset?: string;
|
|
109
|
+
/**
|
|
110
|
+
* @example
|
|
111
|
+
* workspace-test
|
|
112
|
+
*/
|
|
113
|
+
workspace?: string;
|
|
114
|
+
static names(): {
|
|
115
|
+
[key: string]: string;
|
|
116
|
+
};
|
|
117
|
+
static types(): {
|
|
118
|
+
[key: string]: any;
|
|
119
|
+
};
|
|
120
|
+
validate(): void;
|
|
121
|
+
constructor(map?: {
|
|
122
|
+
[key: string]: any;
|
|
123
|
+
});
|
|
124
|
+
}
|
|
125
|
+
export declare class GetPipelineResponseBodySink extends $dara.Model {
|
|
126
|
+
dataset?: GetPipelineResponseBodySinkDataset;
|
|
127
|
+
/**
|
|
128
|
+
* @example
|
|
129
|
+
* dataset
|
|
130
|
+
*/
|
|
131
|
+
type?: string;
|
|
132
|
+
static names(): {
|
|
133
|
+
[key: string]: string;
|
|
134
|
+
};
|
|
135
|
+
static types(): {
|
|
136
|
+
[key: string]: any;
|
|
137
|
+
};
|
|
138
|
+
validate(): void;
|
|
139
|
+
constructor(map?: {
|
|
140
|
+
[key: string]: any;
|
|
141
|
+
});
|
|
142
|
+
}
|
|
143
|
+
export declare class GetPipelineResponseBodySourceLogstore extends $dara.Model {
|
|
144
|
+
/**
|
|
145
|
+
* @example
|
|
146
|
+
* test-logstore
|
|
147
|
+
*/
|
|
148
|
+
logstore?: string;
|
|
149
|
+
/**
|
|
150
|
+
* @example
|
|
151
|
+
* test-project
|
|
152
|
+
*/
|
|
153
|
+
project?: string;
|
|
154
|
+
static names(): {
|
|
155
|
+
[key: string]: string;
|
|
156
|
+
};
|
|
157
|
+
static types(): {
|
|
158
|
+
[key: string]: any;
|
|
159
|
+
};
|
|
160
|
+
validate(): void;
|
|
161
|
+
constructor(map?: {
|
|
162
|
+
[key: string]: any;
|
|
163
|
+
});
|
|
164
|
+
}
|
|
165
|
+
export declare class GetPipelineResponseBodySource extends $dara.Model {
|
|
166
|
+
logstore?: GetPipelineResponseBodySourceLogstore;
|
|
167
|
+
/**
|
|
168
|
+
* @example
|
|
169
|
+
* logstore
|
|
170
|
+
*/
|
|
171
|
+
type?: string;
|
|
172
|
+
static names(): {
|
|
173
|
+
[key: string]: string;
|
|
174
|
+
};
|
|
175
|
+
static types(): {
|
|
176
|
+
[key: string]: any;
|
|
177
|
+
};
|
|
178
|
+
validate(): void;
|
|
179
|
+
constructor(map?: {
|
|
180
|
+
[key: string]: any;
|
|
181
|
+
});
|
|
182
|
+
}
|
|
183
|
+
export declare class GetPipelineResponseBody extends $dara.Model {
|
|
184
|
+
/**
|
|
185
|
+
* @remarks
|
|
186
|
+
* Use the UTC time format: yyyy-MM-ddTHH:mm:ssZ
|
|
187
|
+
*
|
|
188
|
+
* @example
|
|
189
|
+
* 2025-03-11T08:21:58Z
|
|
190
|
+
*/
|
|
191
|
+
createTime?: string;
|
|
192
|
+
/**
|
|
193
|
+
* @example
|
|
194
|
+
* workspace test
|
|
195
|
+
*/
|
|
196
|
+
description?: string;
|
|
197
|
+
executePolicy?: GetPipelineResponseBodyExecutePolicy;
|
|
198
|
+
pipeline?: GetPipelineResponseBodyPipeline;
|
|
199
|
+
/**
|
|
200
|
+
* @example
|
|
201
|
+
* pipeline-name-1
|
|
202
|
+
*/
|
|
203
|
+
pipelineName?: string;
|
|
204
|
+
/**
|
|
205
|
+
* @example
|
|
206
|
+
* cn-hangzhou
|
|
207
|
+
*/
|
|
208
|
+
regionId?: string;
|
|
209
|
+
/**
|
|
210
|
+
* @example
|
|
211
|
+
* 3430AE20-AFFF-597C-B553-2DF04B2933AA
|
|
212
|
+
*/
|
|
213
|
+
requestId?: string;
|
|
214
|
+
sink?: GetPipelineResponseBodySink;
|
|
215
|
+
source?: GetPipelineResponseBodySource;
|
|
216
|
+
/**
|
|
217
|
+
* @remarks
|
|
218
|
+
* Use the UTC time format: yyyy-MM-ddTHH:mm:ssZ
|
|
219
|
+
*
|
|
220
|
+
* @example
|
|
221
|
+
* 2026-02-06T14:09:11Z
|
|
222
|
+
*/
|
|
223
|
+
updateTime?: string;
|
|
224
|
+
/**
|
|
225
|
+
* @example
|
|
226
|
+
* workspace-test
|
|
227
|
+
*/
|
|
228
|
+
workspace?: string;
|
|
229
|
+
static names(): {
|
|
230
|
+
[key: string]: string;
|
|
231
|
+
};
|
|
232
|
+
static types(): {
|
|
233
|
+
[key: string]: any;
|
|
234
|
+
};
|
|
235
|
+
validate(): void;
|
|
236
|
+
constructor(map?: {
|
|
237
|
+
[key: string]: any;
|
|
238
|
+
});
|
|
239
|
+
}
|