@alicloud/gpdb20160503 3.9.0 → 3.10.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 +75 -0
- package/dist/client.js +230 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateModelOperatorApiKeyRequest.d.ts +21 -0
- package/dist/models/CreateModelOperatorApiKeyRequest.js +58 -0
- package/dist/models/CreateModelOperatorApiKeyRequest.js.map +1 -0
- package/dist/models/CreateModelOperatorApiKeyResponse.d.ts +19 -0
- package/dist/models/CreateModelOperatorApiKeyResponse.js +69 -0
- package/dist/models/CreateModelOperatorApiKeyResponse.js.map +1 -0
- package/dist/models/CreateModelOperatorApiKeyResponseBody.d.ts +23 -0
- package/dist/models/CreateModelOperatorApiKeyResponseBody.js +60 -0
- package/dist/models/CreateModelOperatorApiKeyResponseBody.js.map +1 -0
- package/dist/models/DescribeModelOperatorApiKeyRequest.d.ts +18 -0
- package/dist/models/DescribeModelOperatorApiKeyRequest.js +58 -0
- package/dist/models/DescribeModelOperatorApiKeyRequest.js.map +1 -0
- package/dist/models/DescribeModelOperatorApiKeyResponse.d.ts +19 -0
- package/dist/models/DescribeModelOperatorApiKeyResponse.js +69 -0
- package/dist/models/DescribeModelOperatorApiKeyResponse.js.map +1 -0
- package/dist/models/DescribeModelOperatorApiKeyResponseBody.d.ts +43 -0
- package/dist/models/DescribeModelOperatorApiKeyResponseBody.js +68 -0
- package/dist/models/DescribeModelOperatorApiKeyResponseBody.js.map +1 -0
- package/dist/models/DescribeModelOperatorUsageRequest.d.ts +36 -0
- package/dist/models/DescribeModelOperatorUsageRequest.js +79 -0
- package/dist/models/DescribeModelOperatorUsageRequest.js.map +1 -0
- package/dist/models/DescribeModelOperatorUsageResponse.d.ts +19 -0
- package/dist/models/DescribeModelOperatorUsageResponse.js +69 -0
- package/dist/models/DescribeModelOperatorUsageResponse.js.map +1 -0
- package/dist/models/DescribeModelOperatorUsageResponseBody.d.ts +98 -0
- package/dist/models/DescribeModelOperatorUsageResponseBody.js +145 -0
- package/dist/models/DescribeModelOperatorUsageResponseBody.js.map +1 -0
- package/dist/models/DescribeModelOperatorUsageShrinkRequest.d.ts +36 -0
- package/dist/models/DescribeModelOperatorUsageShrinkRequest.js +70 -0
- package/dist/models/DescribeModelOperatorUsageShrinkRequest.js.map +1 -0
- package/dist/models/ListModelOperatorApiKeysRequest.d.ts +23 -0
- package/dist/models/ListModelOperatorApiKeysRequest.js +60 -0
- package/dist/models/ListModelOperatorApiKeysRequest.js.map +1 -0
- package/dist/models/ListModelOperatorApiKeysResponse.d.ts +19 -0
- package/dist/models/ListModelOperatorApiKeysResponse.js +69 -0
- package/dist/models/ListModelOperatorApiKeysResponse.js.map +1 -0
- package/dist/models/ListModelOperatorApiKeysResponseBody.d.ts +66 -0
- package/dist/models/ListModelOperatorApiKeysResponseBody.js +94 -0
- package/dist/models/ListModelOperatorApiKeysResponseBody.js.map +1 -0
- package/dist/models/ListModelOperatorServicesRequest.d.ts +23 -0
- package/dist/models/ListModelOperatorServicesRequest.js +60 -0
- package/dist/models/ListModelOperatorServicesRequest.js.map +1 -0
- package/dist/models/ListModelOperatorServicesResponse.d.ts +19 -0
- package/dist/models/ListModelOperatorServicesResponse.js +69 -0
- package/dist/models/ListModelOperatorServicesResponse.js.map +1 -0
- package/dist/models/ListModelOperatorServicesResponseBody.d.ts +51 -0
- package/dist/models/ListModelOperatorServicesResponseBody.js +88 -0
- package/dist/models/ListModelOperatorServicesResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +21 -0
- package/dist/models/model.js +63 -21
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +256 -0
- package/src/models/CreateModelOperatorApiKeyRequest.ts +34 -0
- package/src/models/CreateModelOperatorApiKeyResponse.ts +40 -0
- package/src/models/CreateModelOperatorApiKeyResponseBody.ts +38 -0
- package/src/models/DescribeModelOperatorApiKeyRequest.ts +31 -0
- package/src/models/DescribeModelOperatorApiKeyResponse.ts +40 -0
- package/src/models/DescribeModelOperatorApiKeyResponseBody.ts +66 -0
- package/src/models/DescribeModelOperatorUsageRequest.ts +70 -0
- package/src/models/DescribeModelOperatorUsageResponse.ts +40 -0
- package/src/models/DescribeModelOperatorUsageResponseBody.ts +171 -0
- package/src/models/DescribeModelOperatorUsageShrinkRequest.ts +61 -0
- package/src/models/ListModelOperatorApiKeysRequest.ts +38 -0
- package/src/models/ListModelOperatorApiKeysResponse.ts +40 -0
- package/src/models/ListModelOperatorApiKeysResponseBody.ts +106 -0
- package/src/models/ListModelOperatorServicesRequest.ts +38 -0
- package/src/models/ListModelOperatorServicesResponse.ts +40 -0
- package/src/models/ListModelOperatorServicesResponseBody.ts +85 -0
- package/src/models/model.ts +21 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class ListModelOperatorApiKeysResponseBodyApiKeys extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* 1
|
|
6
|
+
*/
|
|
7
|
+
apiKeyId?: number;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* 2026-06-01T00:00:00Z
|
|
11
|
+
*/
|
|
12
|
+
createTime?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* test-apikey
|
|
16
|
+
*/
|
|
17
|
+
description?: string;
|
|
18
|
+
/**
|
|
19
|
+
* @example
|
|
20
|
+
* https://xxxx
|
|
21
|
+
*/
|
|
22
|
+
endpoint?: string;
|
|
23
|
+
static names(): {
|
|
24
|
+
[key: string]: string;
|
|
25
|
+
};
|
|
26
|
+
static types(): {
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
};
|
|
29
|
+
validate(): void;
|
|
30
|
+
constructor(map?: {
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
export declare class ListModelOperatorApiKeysResponseBody extends $dara.Model {
|
|
35
|
+
apiKeys?: ListModelOperatorApiKeysResponseBodyApiKeys[];
|
|
36
|
+
/**
|
|
37
|
+
* @example
|
|
38
|
+
* 1
|
|
39
|
+
*/
|
|
40
|
+
pageNumber?: number;
|
|
41
|
+
/**
|
|
42
|
+
* @example
|
|
43
|
+
* 1
|
|
44
|
+
*/
|
|
45
|
+
pageRecordCount?: number;
|
|
46
|
+
/**
|
|
47
|
+
* @example
|
|
48
|
+
* ABB39CC3-4488-4857-905D-2E4A051D0521
|
|
49
|
+
*/
|
|
50
|
+
requestId?: string;
|
|
51
|
+
/**
|
|
52
|
+
* @example
|
|
53
|
+
* 2
|
|
54
|
+
*/
|
|
55
|
+
totalRecordCount?: number;
|
|
56
|
+
static names(): {
|
|
57
|
+
[key: string]: string;
|
|
58
|
+
};
|
|
59
|
+
static types(): {
|
|
60
|
+
[key: string]: any;
|
|
61
|
+
};
|
|
62
|
+
validate(): void;
|
|
63
|
+
constructor(map?: {
|
|
64
|
+
[key: string]: any;
|
|
65
|
+
});
|
|
66
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
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.ListModelOperatorApiKeysResponseBody = exports.ListModelOperatorApiKeysResponseBodyApiKeys = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class ListModelOperatorApiKeysResponseBodyApiKeys extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
apiKeyId: 'ApiKeyId',
|
|
43
|
+
createTime: 'CreateTime',
|
|
44
|
+
description: 'Description',
|
|
45
|
+
endpoint: 'Endpoint',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
static types() {
|
|
49
|
+
return {
|
|
50
|
+
apiKeyId: 'number',
|
|
51
|
+
createTime: 'string',
|
|
52
|
+
description: 'string',
|
|
53
|
+
endpoint: 'string',
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
validate() {
|
|
57
|
+
super.validate();
|
|
58
|
+
}
|
|
59
|
+
constructor(map) {
|
|
60
|
+
super(map);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
exports.ListModelOperatorApiKeysResponseBodyApiKeys = ListModelOperatorApiKeysResponseBodyApiKeys;
|
|
64
|
+
class ListModelOperatorApiKeysResponseBody extends $dara.Model {
|
|
65
|
+
static names() {
|
|
66
|
+
return {
|
|
67
|
+
apiKeys: 'ApiKeys',
|
|
68
|
+
pageNumber: 'PageNumber',
|
|
69
|
+
pageRecordCount: 'PageRecordCount',
|
|
70
|
+
requestId: 'RequestId',
|
|
71
|
+
totalRecordCount: 'TotalRecordCount',
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
static types() {
|
|
75
|
+
return {
|
|
76
|
+
apiKeys: { 'type': 'array', 'itemType': ListModelOperatorApiKeysResponseBodyApiKeys },
|
|
77
|
+
pageNumber: 'number',
|
|
78
|
+
pageRecordCount: 'number',
|
|
79
|
+
requestId: 'string',
|
|
80
|
+
totalRecordCount: 'number',
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
validate() {
|
|
84
|
+
if (Array.isArray(this.apiKeys)) {
|
|
85
|
+
$dara.Model.validateArray(this.apiKeys);
|
|
86
|
+
}
|
|
87
|
+
super.validate();
|
|
88
|
+
}
|
|
89
|
+
constructor(map) {
|
|
90
|
+
super(map);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
exports.ListModelOperatorApiKeysResponseBody = ListModelOperatorApiKeysResponseBody;
|
|
94
|
+
//# sourceMappingURL=ListModelOperatorApiKeysResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListModelOperatorApiKeysResponseBody.js","sourceRoot":"","sources":["../../src/models/ListModelOperatorApiKeysResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,2CAA4C,SAAQ,KAAK,CAAC,KAAK;IAqB1E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,UAAU;YACpB,UAAU,EAAE,YAAY;YACxB,WAAW,EAAE,aAAa;YAC1B,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,QAAQ;YAClB,UAAU,EAAE,QAAQ;YACpB,WAAW,EAAE,QAAQ;YACrB,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;AA9CD,kGA8CC;AAED,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;IAsBnE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,eAAe,EAAE,iBAAiB;YAClC,SAAS,EAAE,WAAW;YACtB,gBAAgB,EAAE,kBAAkB;SACrC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,2CAA2C,EAAE;YACrF,UAAU,EAAE,QAAQ;YACpB,eAAe,EAAE,QAAQ;YACzB,SAAS,EAAE,QAAQ;YACnB,gBAAgB,EAAE,QAAQ;SAC3B,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC;YAC/B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC1C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AApDD,oFAoDC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class ListModelOperatorServicesRequest extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* 1
|
|
6
|
+
*/
|
|
7
|
+
pageNumber?: number;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* 20
|
|
11
|
+
*/
|
|
12
|
+
pageSize?: 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
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
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.ListModelOperatorServicesRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class ListModelOperatorServicesRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
pageNumber: 'PageNumber',
|
|
43
|
+
pageSize: 'PageSize',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
static types() {
|
|
47
|
+
return {
|
|
48
|
+
pageNumber: 'number',
|
|
49
|
+
pageSize: 'number',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
validate() {
|
|
53
|
+
super.validate();
|
|
54
|
+
}
|
|
55
|
+
constructor(map) {
|
|
56
|
+
super(map);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.ListModelOperatorServicesRequest = ListModelOperatorServicesRequest;
|
|
60
|
+
//# sourceMappingURL=ListModelOperatorServicesRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListModelOperatorServicesRequest.js","sourceRoot":"","sources":["../../src/models/ListModelOperatorServicesRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;IAW/D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,QAAQ;YACpB,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;AAhCD,4EAgCC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { ListModelOperatorServicesResponseBody } from "./ListModelOperatorServicesResponseBody";
|
|
3
|
+
export declare class ListModelOperatorServicesResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: ListModelOperatorServicesResponseBody;
|
|
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.ListModelOperatorServicesResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const ListModelOperatorServicesResponseBody_1 = require("./ListModelOperatorServicesResponseBody");
|
|
40
|
+
class ListModelOperatorServicesResponse 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: ListModelOperatorServicesResponseBody_1.ListModelOperatorServicesResponseBody,
|
|
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.ListModelOperatorServicesResponse = ListModelOperatorServicesResponse;
|
|
69
|
+
//# sourceMappingURL=ListModelOperatorServicesResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListModelOperatorServicesResponse.js","sourceRoot":"","sources":["../../src/models/ListModelOperatorServicesResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,mGAAgG;AAGhG,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IAIhE,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,6EAAqC;SAC5C,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,8EAiCC"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class ListModelOperatorServicesResponseBodyServices extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* agdb-xxx
|
|
6
|
+
*/
|
|
7
|
+
serviceId?: 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
|
+
}
|
|
19
|
+
export declare class ListModelOperatorServicesResponseBody extends $dara.Model {
|
|
20
|
+
/**
|
|
21
|
+
* @example
|
|
22
|
+
* 1
|
|
23
|
+
*/
|
|
24
|
+
pageNumber?: number;
|
|
25
|
+
/**
|
|
26
|
+
* @example
|
|
27
|
+
* 1
|
|
28
|
+
*/
|
|
29
|
+
pageRecordCount?: number;
|
|
30
|
+
/**
|
|
31
|
+
* @example
|
|
32
|
+
* ABB39CC3-4488-4857-905D-2E4A051D0521
|
|
33
|
+
*/
|
|
34
|
+
requestId?: string;
|
|
35
|
+
services?: ListModelOperatorServicesResponseBodyServices[];
|
|
36
|
+
/**
|
|
37
|
+
* @example
|
|
38
|
+
* 2
|
|
39
|
+
*/
|
|
40
|
+
totalRecordCount?: number;
|
|
41
|
+
static names(): {
|
|
42
|
+
[key: string]: string;
|
|
43
|
+
};
|
|
44
|
+
static types(): {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
};
|
|
47
|
+
validate(): void;
|
|
48
|
+
constructor(map?: {
|
|
49
|
+
[key: string]: any;
|
|
50
|
+
});
|
|
51
|
+
}
|
|
@@ -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.ListModelOperatorServicesResponseBody = exports.ListModelOperatorServicesResponseBodyServices = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class ListModelOperatorServicesResponseBodyServices extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
serviceId: 'ServiceId',
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
static types() {
|
|
46
|
+
return {
|
|
47
|
+
serviceId: 'string',
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
validate() {
|
|
51
|
+
super.validate();
|
|
52
|
+
}
|
|
53
|
+
constructor(map) {
|
|
54
|
+
super(map);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.ListModelOperatorServicesResponseBodyServices = ListModelOperatorServicesResponseBodyServices;
|
|
58
|
+
class ListModelOperatorServicesResponseBody extends $dara.Model {
|
|
59
|
+
static names() {
|
|
60
|
+
return {
|
|
61
|
+
pageNumber: 'PageNumber',
|
|
62
|
+
pageRecordCount: 'PageRecordCount',
|
|
63
|
+
requestId: 'RequestId',
|
|
64
|
+
services: 'Services',
|
|
65
|
+
totalRecordCount: 'TotalRecordCount',
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
static types() {
|
|
69
|
+
return {
|
|
70
|
+
pageNumber: 'number',
|
|
71
|
+
pageRecordCount: 'number',
|
|
72
|
+
requestId: 'string',
|
|
73
|
+
services: { 'type': 'array', 'itemType': ListModelOperatorServicesResponseBodyServices },
|
|
74
|
+
totalRecordCount: 'number',
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
validate() {
|
|
78
|
+
if (Array.isArray(this.services)) {
|
|
79
|
+
$dara.Model.validateArray(this.services);
|
|
80
|
+
}
|
|
81
|
+
super.validate();
|
|
82
|
+
}
|
|
83
|
+
constructor(map) {
|
|
84
|
+
super(map);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
exports.ListModelOperatorServicesResponseBody = ListModelOperatorServicesResponseBody;
|
|
88
|
+
//# sourceMappingURL=ListModelOperatorServicesResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListModelOperatorServicesResponseBody.js","sourceRoot":"","sources":["../../src/models/ListModelOperatorServicesResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,6CAA8C,SAAQ,KAAK,CAAC,KAAK;IAM5E,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,sGAyBC;AAED,MAAa,qCAAsC,SAAQ,KAAK,CAAC,KAAK;IAsBpE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;YACxB,eAAe,EAAE,iBAAiB;YAClC,SAAS,EAAE,WAAW;YACtB,QAAQ,EAAE,UAAU;YACpB,gBAAgB,EAAE,kBAAkB;SACrC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,QAAQ;YACpB,eAAe,EAAE,QAAQ;YACzB,SAAS,EAAE,QAAQ;YACnB,QAAQ,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,6CAA6C,EAAE;YACxF,gBAAgB,EAAE,QAAQ;SAC3B,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;YAChC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC3C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AApDD,sFAoDC"}
|
package/dist/models/model.d.ts
CHANGED
|
@@ -126,6 +126,9 @@ export { DescribeHealthStatusResponseBodyStatusNodeSegmentDiskStatus } from './D
|
|
|
126
126
|
export { DescribeHealthStatusResponseBodyStatus } from './DescribeHealthStatusResponseBody';
|
|
127
127
|
export { DescribeIMVInfosResponseBodyImvInfos } from './DescribeImvinfosResponseBody';
|
|
128
128
|
export { DescribeLogBackupsResponseBodyItems } from './DescribeLogBackupsResponseBody';
|
|
129
|
+
export { DescribeModelOperatorUsageResponseBodyKeysSeriesValues } from './DescribeModelOperatorUsageResponseBody';
|
|
130
|
+
export { DescribeModelOperatorUsageResponseBodyKeysSeries } from './DescribeModelOperatorUsageResponseBody';
|
|
131
|
+
export { DescribeModelOperatorUsageResponseBodyKeys } from './DescribeModelOperatorUsageResponseBody';
|
|
129
132
|
export { DescribeModifyParameterLogResponseBodyChangelogs } from './DescribeModifyParameterLogResponseBody';
|
|
130
133
|
export { DescribeParametersResponseBodyParameters } from './DescribeParametersResponseBody';
|
|
131
134
|
export { DescribeRdsVSwitchsResponseBodyVSwitchesVSwitch } from './DescribeRdsVswitchsResponseBody';
|
|
@@ -190,6 +193,8 @@ export { ListIndicesResponseBodyIndicesIndices } from './ListIndicesResponseBody
|
|
|
190
193
|
export { ListIndicesResponseBodyIndices } from './ListIndicesResponseBody';
|
|
191
194
|
export { ListInstanceDatabasesResponseBodyDatabases } from './ListInstanceDatabasesResponseBody';
|
|
192
195
|
export { ListInstanceExtensionsResponseBodyItems } from './ListInstanceExtensionsResponseBody';
|
|
196
|
+
export { ListModelOperatorApiKeysResponseBodyApiKeys } from './ListModelOperatorApiKeysResponseBody';
|
|
197
|
+
export { ListModelOperatorServicesResponseBodyServices } from './ListModelOperatorServicesResponseBody';
|
|
193
198
|
export { ListModelServicesResponseBodyModelServices } from './ListModelServicesResponseBody';
|
|
194
199
|
export { ListNamespacesResponseBodyNamespaces } from './ListNamespacesResponseBody';
|
|
195
200
|
export { ListRemoteADBDataSourcesResponseBodyDataSourceItemsRemoteDataSources } from './ListRemoteAdbdataSourcesResponseBody';
|
|
@@ -362,6 +367,9 @@ export { CreateIndexResponse } from './CreateIndexResponse';
|
|
|
362
367
|
export { CreateJDBCDataSourceRequest } from './CreateJdbcdataSourceRequest';
|
|
363
368
|
export { CreateJDBCDataSourceResponseBody } from './CreateJdbcdataSourceResponseBody';
|
|
364
369
|
export { CreateJDBCDataSourceResponse } from './CreateJdbcdataSourceResponse';
|
|
370
|
+
export { CreateModelOperatorApiKeyRequest } from './CreateModelOperatorApiKeyRequest';
|
|
371
|
+
export { CreateModelOperatorApiKeyResponseBody } from './CreateModelOperatorApiKeyResponseBody';
|
|
372
|
+
export { CreateModelOperatorApiKeyResponse } from './CreateModelOperatorApiKeyResponse';
|
|
365
373
|
export { CreateModelServiceRequest } from './CreateModelServiceRequest';
|
|
366
374
|
export { CreateModelServiceShrinkRequest } from './CreateModelServiceShrinkRequest';
|
|
367
375
|
export { CreateModelServiceResponseBody } from './CreateModelServiceResponseBody';
|
|
@@ -657,6 +665,13 @@ export { DescribeJDBCDataSourceResponse } from './DescribeJdbcdataSourceResponse
|
|
|
657
665
|
export { DescribeLogBackupsRequest } from './DescribeLogBackupsRequest';
|
|
658
666
|
export { DescribeLogBackupsResponseBody } from './DescribeLogBackupsResponseBody';
|
|
659
667
|
export { DescribeLogBackupsResponse } from './DescribeLogBackupsResponse';
|
|
668
|
+
export { DescribeModelOperatorApiKeyRequest } from './DescribeModelOperatorApiKeyRequest';
|
|
669
|
+
export { DescribeModelOperatorApiKeyResponseBody } from './DescribeModelOperatorApiKeyResponseBody';
|
|
670
|
+
export { DescribeModelOperatorApiKeyResponse } from './DescribeModelOperatorApiKeyResponse';
|
|
671
|
+
export { DescribeModelOperatorUsageRequest } from './DescribeModelOperatorUsageRequest';
|
|
672
|
+
export { DescribeModelOperatorUsageShrinkRequest } from './DescribeModelOperatorUsageShrinkRequest';
|
|
673
|
+
export { DescribeModelOperatorUsageResponseBody } from './DescribeModelOperatorUsageResponseBody';
|
|
674
|
+
export { DescribeModelOperatorUsageResponse } from './DescribeModelOperatorUsageResponse';
|
|
660
675
|
export { DescribeModelServiceRequest } from './DescribeModelServiceRequest';
|
|
661
676
|
export { DescribeModelServiceResponseBody } from './DescribeModelServiceResponseBody';
|
|
662
677
|
export { DescribeModelServiceResponse } from './DescribeModelServiceResponse';
|
|
@@ -842,6 +857,12 @@ export { ListInstanceDatabasesResponse } from './ListInstanceDatabasesResponse';
|
|
|
842
857
|
export { ListInstanceExtensionsRequest } from './ListInstanceExtensionsRequest';
|
|
843
858
|
export { ListInstanceExtensionsResponseBody } from './ListInstanceExtensionsResponseBody';
|
|
844
859
|
export { ListInstanceExtensionsResponse } from './ListInstanceExtensionsResponse';
|
|
860
|
+
export { ListModelOperatorApiKeysRequest } from './ListModelOperatorApiKeysRequest';
|
|
861
|
+
export { ListModelOperatorApiKeysResponseBody } from './ListModelOperatorApiKeysResponseBody';
|
|
862
|
+
export { ListModelOperatorApiKeysResponse } from './ListModelOperatorApiKeysResponse';
|
|
863
|
+
export { ListModelOperatorServicesRequest } from './ListModelOperatorServicesRequest';
|
|
864
|
+
export { ListModelOperatorServicesResponseBody } from './ListModelOperatorServicesResponseBody';
|
|
865
|
+
export { ListModelOperatorServicesResponse } from './ListModelOperatorServicesResponse';
|
|
845
866
|
export { ListModelServicesRequest } from './ListModelServicesRequest';
|
|
846
867
|
export { ListModelServicesResponseBody } from './ListModelServicesResponseBody';
|
|
847
868
|
export { ListModelServicesResponse } from './ListModelServicesResponse';
|