@alicloud/adbai20250812 1.0.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/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +41 -0
- package/dist/client.js +188 -0
- package/dist/client.js.map +1 -0
- package/dist/models/CreateEmbodiedAiplatformRequest.d.ts +115 -0
- package/dist/models/CreateEmbodiedAiplatformRequest.js +128 -0
- package/dist/models/CreateEmbodiedAiplatformRequest.js.map +1 -0
- package/dist/models/CreateEmbodiedAiplatformResponse.d.ts +19 -0
- package/dist/models/CreateEmbodiedAiplatformResponse.js +69 -0
- package/dist/models/CreateEmbodiedAiplatformResponse.js.map +1 -0
- package/dist/models/CreateEmbodiedAiplatformResponseBody.d.ts +18 -0
- package/dist/models/CreateEmbodiedAiplatformResponseBody.js +58 -0
- package/dist/models/CreateEmbodiedAiplatformResponseBody.js.map +1 -0
- package/dist/models/CreateEmbodiedAiplatformShrinkRequest.d.ts +43 -0
- package/dist/models/CreateEmbodiedAiplatformShrinkRequest.js +66 -0
- package/dist/models/CreateEmbodiedAiplatformShrinkRequest.js.map +1 -0
- package/dist/models/DescribeEmbodiedAiplatformsRequest.d.ts +67 -0
- package/dist/models/DescribeEmbodiedAiplatformsRequest.js +76 -0
- package/dist/models/DescribeEmbodiedAiplatformsRequest.js.map +1 -0
- package/dist/models/DescribeEmbodiedAiplatformsResponse.d.ts +19 -0
- package/dist/models/DescribeEmbodiedAiplatformsResponse.js +69 -0
- package/dist/models/DescribeEmbodiedAiplatformsResponse.js.map +1 -0
- package/dist/models/DescribeEmbodiedAiplatformsResponseBody.d.ts +187 -0
- package/dist/models/DescribeEmbodiedAiplatformsResponseBody.js +196 -0
- package/dist/models/DescribeEmbodiedAiplatformsResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +13 -0
- package/dist/models/model.js +30 -0
- package/dist/models/model.js.map +1 -0
- package/package.json +29 -0
- package/src/client.ts +174 -0
- package/src/models/CreateEmbodiedAiplatformRequest.ts +178 -0
- package/src/models/CreateEmbodiedAiplatformResponse.ts +40 -0
- package/src/models/CreateEmbodiedAiplatformResponseBody.ts +31 -0
- package/src/models/CreateEmbodiedAiplatformShrinkRequest.ts +64 -0
- package/src/models/DescribeEmbodiedAiplatformsRequest.ts +98 -0
- package/src/models/DescribeEmbodiedAiplatformsResponse.ts +40 -0
- package/src/models/DescribeEmbodiedAiplatformsResponseBody.ts +302 -0
- package/src/models/model.ts +13 -0
|
@@ -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.CreateEmbodiedAIPlatformResponseBody = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class CreateEmbodiedAIPlatformResponseBody 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.CreateEmbodiedAIPlatformResponseBody = CreateEmbodiedAIPlatformResponseBody;
|
|
58
|
+
//# sourceMappingURL=CreateEmbodiedAiplatformResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateEmbodiedAiplatformResponseBody.js","sourceRoot":"","sources":["../../src/models/CreateEmbodiedAiplatformResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;IAMnE,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,oFAyBC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class CreateEmbodiedAIPlatformShrinkRequest extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* This parameter is required.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* amv-bp11q28kvl688****
|
|
9
|
+
*/
|
|
10
|
+
DBClusterId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @remarks
|
|
13
|
+
* This parameter is required.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* platform1
|
|
17
|
+
*/
|
|
18
|
+
platformName?: string;
|
|
19
|
+
rayConfigShrink?: string;
|
|
20
|
+
/**
|
|
21
|
+
* @remarks
|
|
22
|
+
* This parameter is required.
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* cn-beijing
|
|
26
|
+
*/
|
|
27
|
+
regionId?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @example
|
|
30
|
+
* large
|
|
31
|
+
*/
|
|
32
|
+
webserverSpecName?: string;
|
|
33
|
+
static names(): {
|
|
34
|
+
[key: string]: string;
|
|
35
|
+
};
|
|
36
|
+
static types(): {
|
|
37
|
+
[key: string]: any;
|
|
38
|
+
};
|
|
39
|
+
validate(): void;
|
|
40
|
+
constructor(map?: {
|
|
41
|
+
[key: string]: any;
|
|
42
|
+
});
|
|
43
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
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.CreateEmbodiedAIPlatformShrinkRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class CreateEmbodiedAIPlatformShrinkRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
DBClusterId: 'DBClusterId',
|
|
43
|
+
platformName: 'PlatformName',
|
|
44
|
+
rayConfigShrink: 'RayConfig',
|
|
45
|
+
regionId: 'RegionId',
|
|
46
|
+
webserverSpecName: 'WebserverSpecName',
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
static types() {
|
|
50
|
+
return {
|
|
51
|
+
DBClusterId: 'string',
|
|
52
|
+
platformName: 'string',
|
|
53
|
+
rayConfigShrink: 'string',
|
|
54
|
+
regionId: 'string',
|
|
55
|
+
webserverSpecName: 'string',
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
validate() {
|
|
59
|
+
super.validate();
|
|
60
|
+
}
|
|
61
|
+
constructor(map) {
|
|
62
|
+
super(map);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.CreateEmbodiedAIPlatformShrinkRequest = CreateEmbodiedAIPlatformShrinkRequest;
|
|
66
|
+
//# sourceMappingURL=CreateEmbodiedAiplatformShrinkRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateEmbodiedAiplatformShrinkRequest.js","sourceRoot":"","sources":["../../src/models/CreateEmbodiedAiplatformShrinkRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,qCAAsC,SAAQ,KAAK,CAAC,KAAK;IA+BpE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,YAAY,EAAE,cAAc;YAC5B,eAAe,EAAE,WAAW;YAC5B,QAAQ,EAAE,UAAU;YACpB,iBAAiB,EAAE,mBAAmB;SACvC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,YAAY,EAAE,QAAQ;YACtB,eAAe,EAAE,QAAQ;YACzB,QAAQ,EAAE,QAAQ;YAClB,iBAAiB,EAAE,QAAQ;SAC5B,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;AA1DD,sFA0DC"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribeEmbodiedAIPlatformsRequest extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* This parameter is required.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* amv-bp11q28kvl688****
|
|
9
|
+
*/
|
|
10
|
+
DBClusterId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @remarks
|
|
13
|
+
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* 2025-12-01T03:05Z
|
|
17
|
+
*/
|
|
18
|
+
endTime?: string;
|
|
19
|
+
maxResults?: number;
|
|
20
|
+
nextToken?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* 1
|
|
24
|
+
*/
|
|
25
|
+
pageNumber?: number;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* 30
|
|
29
|
+
*/
|
|
30
|
+
pageSize?: number;
|
|
31
|
+
/**
|
|
32
|
+
* @example
|
|
33
|
+
* platform1
|
|
34
|
+
*/
|
|
35
|
+
platformName?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @remarks
|
|
38
|
+
* This parameter is required.
|
|
39
|
+
*
|
|
40
|
+
* @example
|
|
41
|
+
* cn-shanghai
|
|
42
|
+
*/
|
|
43
|
+
regionId?: string;
|
|
44
|
+
/**
|
|
45
|
+
* @remarks
|
|
46
|
+
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
|
|
47
|
+
*
|
|
48
|
+
* @example
|
|
49
|
+
* 2025-12-01T02:05Z
|
|
50
|
+
*/
|
|
51
|
+
startTime?: string;
|
|
52
|
+
/**
|
|
53
|
+
* @example
|
|
54
|
+
* running
|
|
55
|
+
*/
|
|
56
|
+
state?: string;
|
|
57
|
+
static names(): {
|
|
58
|
+
[key: string]: string;
|
|
59
|
+
};
|
|
60
|
+
static types(): {
|
|
61
|
+
[key: string]: any;
|
|
62
|
+
};
|
|
63
|
+
validate(): void;
|
|
64
|
+
constructor(map?: {
|
|
65
|
+
[key: string]: any;
|
|
66
|
+
});
|
|
67
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
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.DescribeEmbodiedAIPlatformsRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribeEmbodiedAIPlatformsRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
DBClusterId: 'DBClusterId',
|
|
43
|
+
endTime: 'EndTime',
|
|
44
|
+
maxResults: 'MaxResults',
|
|
45
|
+
nextToken: 'NextToken',
|
|
46
|
+
pageNumber: 'PageNumber',
|
|
47
|
+
pageSize: 'PageSize',
|
|
48
|
+
platformName: 'PlatformName',
|
|
49
|
+
regionId: 'RegionId',
|
|
50
|
+
startTime: 'StartTime',
|
|
51
|
+
state: 'State',
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
static types() {
|
|
55
|
+
return {
|
|
56
|
+
DBClusterId: 'string',
|
|
57
|
+
endTime: 'string',
|
|
58
|
+
maxResults: 'number',
|
|
59
|
+
nextToken: 'string',
|
|
60
|
+
pageNumber: 'number',
|
|
61
|
+
pageSize: 'number',
|
|
62
|
+
platformName: 'string',
|
|
63
|
+
regionId: 'string',
|
|
64
|
+
startTime: 'string',
|
|
65
|
+
state: 'string',
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
validate() {
|
|
69
|
+
super.validate();
|
|
70
|
+
}
|
|
71
|
+
constructor(map) {
|
|
72
|
+
super(map);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
exports.DescribeEmbodiedAIPlatformsRequest = DescribeEmbodiedAIPlatformsRequest;
|
|
76
|
+
//# sourceMappingURL=DescribeEmbodiedAiplatformsRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeEmbodiedAiplatformsRequest.js","sourceRoot":"","sources":["../../src/models/DescribeEmbodiedAiplatformsRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,kCAAmC,SAAQ,KAAK,CAAC,KAAK;IAuDjE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;YACtB,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;YACpB,YAAY,EAAE,cAAc;YAC5B,QAAQ,EAAE,UAAU;YACpB,SAAS,EAAE,WAAW;YACtB,KAAK,EAAE,OAAO;SACf,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,OAAO,EAAE,QAAQ;YACjB,UAAU,EAAE,QAAQ;YACpB,SAAS,EAAE,QAAQ;YACnB,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;YAClB,YAAY,EAAE,QAAQ;YACtB,QAAQ,EAAE,QAAQ;YAClB,SAAS,EAAE,QAAQ;YACnB,KAAK,EAAE,QAAQ;SAChB,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;AA5FD,gFA4FC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { DescribeEmbodiedAIPlatformsResponseBody } from "./DescribeEmbodiedAiplatformsResponseBody";
|
|
3
|
+
export declare class DescribeEmbodiedAIPlatformsResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: DescribeEmbodiedAIPlatformsResponseBody;
|
|
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.DescribeEmbodiedAIPlatformsResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const DescribeEmbodiedAiplatformsResponseBody_1 = require("./DescribeEmbodiedAiplatformsResponseBody");
|
|
40
|
+
class DescribeEmbodiedAIPlatformsResponse 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: DescribeEmbodiedAiplatformsResponseBody_1.DescribeEmbodiedAIPlatformsResponseBody,
|
|
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.DescribeEmbodiedAIPlatformsResponse = DescribeEmbodiedAIPlatformsResponse;
|
|
69
|
+
//# sourceMappingURL=DescribeEmbodiedAiplatformsResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeEmbodiedAiplatformsResponse.js","sourceRoot":"","sources":["../../src/models/DescribeEmbodiedAiplatformsResponse.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,187 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribeEmbodiedAIPlatformsResponseBodyPlatformsEapConfig extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* http://amv-2z******-***-roboto.ads.example.com:80
|
|
6
|
+
*/
|
|
7
|
+
webserverAddress?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* large
|
|
11
|
+
*/
|
|
12
|
+
webserverSpecName?: string;
|
|
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 DescribeEmbodiedAIPlatformsResponseBodyPlatformsRayConfigWorkerGroups extends $dara.Model {
|
|
25
|
+
/**
|
|
26
|
+
* @example
|
|
27
|
+
* 1
|
|
28
|
+
*/
|
|
29
|
+
allocateUnit?: string;
|
|
30
|
+
/**
|
|
31
|
+
* @example
|
|
32
|
+
* worker1
|
|
33
|
+
*/
|
|
34
|
+
groupName?: string;
|
|
35
|
+
/**
|
|
36
|
+
* @example
|
|
37
|
+
* 2
|
|
38
|
+
*/
|
|
39
|
+
maxWorkerQuantity?: number;
|
|
40
|
+
/**
|
|
41
|
+
* @example
|
|
42
|
+
* 1
|
|
43
|
+
*/
|
|
44
|
+
minWorkerQuantity?: number;
|
|
45
|
+
/**
|
|
46
|
+
* @example
|
|
47
|
+
* 100G
|
|
48
|
+
*/
|
|
49
|
+
workerDiskCapacity?: string;
|
|
50
|
+
/**
|
|
51
|
+
* @example
|
|
52
|
+
* large
|
|
53
|
+
*/
|
|
54
|
+
workerSpecName?: string;
|
|
55
|
+
/**
|
|
56
|
+
* @example
|
|
57
|
+
* CPU
|
|
58
|
+
*/
|
|
59
|
+
workerSpecType?: string;
|
|
60
|
+
static names(): {
|
|
61
|
+
[key: string]: string;
|
|
62
|
+
};
|
|
63
|
+
static types(): {
|
|
64
|
+
[key: string]: any;
|
|
65
|
+
};
|
|
66
|
+
validate(): void;
|
|
67
|
+
constructor(map?: {
|
|
68
|
+
[key: string]: any;
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
export declare class DescribeEmbodiedAIPlatformsResponseBodyPlatformsRayConfig extends $dara.Model {
|
|
72
|
+
/**
|
|
73
|
+
* @example
|
|
74
|
+
* BASIC
|
|
75
|
+
*/
|
|
76
|
+
category?: string;
|
|
77
|
+
/**
|
|
78
|
+
* @example
|
|
79
|
+
* 100G
|
|
80
|
+
*/
|
|
81
|
+
headDiskCapacity?: string;
|
|
82
|
+
/**
|
|
83
|
+
* @example
|
|
84
|
+
* large
|
|
85
|
+
*/
|
|
86
|
+
headSpec?: string;
|
|
87
|
+
/**
|
|
88
|
+
* @example
|
|
89
|
+
* CPU
|
|
90
|
+
*/
|
|
91
|
+
headSpecType?: string;
|
|
92
|
+
/**
|
|
93
|
+
* @example
|
|
94
|
+
* http://ray-cluster-address.example.com
|
|
95
|
+
*/
|
|
96
|
+
rayClusterAddress?: string;
|
|
97
|
+
/**
|
|
98
|
+
* @example
|
|
99
|
+
* http://ray-dashboard-address.example.com
|
|
100
|
+
*/
|
|
101
|
+
rayDashboardAddress?: string;
|
|
102
|
+
/**
|
|
103
|
+
* @example
|
|
104
|
+
* http://ray-grafana-address.example.com
|
|
105
|
+
*/
|
|
106
|
+
rayGrafanaAddress?: string;
|
|
107
|
+
workerGroups?: DescribeEmbodiedAIPlatformsResponseBodyPlatformsRayConfigWorkerGroups[];
|
|
108
|
+
static names(): {
|
|
109
|
+
[key: string]: string;
|
|
110
|
+
};
|
|
111
|
+
static types(): {
|
|
112
|
+
[key: string]: any;
|
|
113
|
+
};
|
|
114
|
+
validate(): void;
|
|
115
|
+
constructor(map?: {
|
|
116
|
+
[key: string]: any;
|
|
117
|
+
});
|
|
118
|
+
}
|
|
119
|
+
export declare class DescribeEmbodiedAIPlatformsResponseBodyPlatforms extends $dara.Model {
|
|
120
|
+
/**
|
|
121
|
+
* @example
|
|
122
|
+
* 2025-12-01 14:55:36
|
|
123
|
+
*/
|
|
124
|
+
createTime?: number;
|
|
125
|
+
eapConfig?: DescribeEmbodiedAIPlatformsResponseBodyPlatformsEapConfig;
|
|
126
|
+
/**
|
|
127
|
+
* @example
|
|
128
|
+
* adb-lake-cn-beijing-5q1w******
|
|
129
|
+
*/
|
|
130
|
+
ossBucketName?: string;
|
|
131
|
+
/**
|
|
132
|
+
* @example
|
|
133
|
+
* platform1
|
|
134
|
+
*/
|
|
135
|
+
platformName?: string;
|
|
136
|
+
rayConfig?: DescribeEmbodiedAIPlatformsResponseBodyPlatformsRayConfig;
|
|
137
|
+
/**
|
|
138
|
+
* @example
|
|
139
|
+
* running
|
|
140
|
+
*/
|
|
141
|
+
state?: string;
|
|
142
|
+
static names(): {
|
|
143
|
+
[key: string]: string;
|
|
144
|
+
};
|
|
145
|
+
static types(): {
|
|
146
|
+
[key: string]: any;
|
|
147
|
+
};
|
|
148
|
+
validate(): void;
|
|
149
|
+
constructor(map?: {
|
|
150
|
+
[key: string]: any;
|
|
151
|
+
});
|
|
152
|
+
}
|
|
153
|
+
export declare class DescribeEmbodiedAIPlatformsResponseBody extends $dara.Model {
|
|
154
|
+
maxResults?: number;
|
|
155
|
+
nextToken?: string;
|
|
156
|
+
/**
|
|
157
|
+
* @example
|
|
158
|
+
* 1
|
|
159
|
+
*/
|
|
160
|
+
pageNumber?: number;
|
|
161
|
+
/**
|
|
162
|
+
* @example
|
|
163
|
+
* 30
|
|
164
|
+
*/
|
|
165
|
+
pageSize?: number;
|
|
166
|
+
platforms?: DescribeEmbodiedAIPlatformsResponseBodyPlatforms[];
|
|
167
|
+
/**
|
|
168
|
+
* @example
|
|
169
|
+
* B47EED99-BFA5-529D-8D85-A6642421D390
|
|
170
|
+
*/
|
|
171
|
+
requestId?: string;
|
|
172
|
+
/**
|
|
173
|
+
* @example
|
|
174
|
+
* 50
|
|
175
|
+
*/
|
|
176
|
+
totalCount?: number;
|
|
177
|
+
static names(): {
|
|
178
|
+
[key: string]: string;
|
|
179
|
+
};
|
|
180
|
+
static types(): {
|
|
181
|
+
[key: string]: any;
|
|
182
|
+
};
|
|
183
|
+
validate(): void;
|
|
184
|
+
constructor(map?: {
|
|
185
|
+
[key: string]: any;
|
|
186
|
+
});
|
|
187
|
+
}
|