@alicloud/polardb20170801 7.5.0 → 7.7.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 +34 -4
- package/dist/client.js +121 -4
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeApplicationAttributeResponseBody.d.ts +75 -110
- package/dist/models/DescribeApplicationAttributeResponseBody.js +2 -0
- package/dist/models/DescribeApplicationAttributeResponseBody.js.map +1 -1
- package/dist/models/DescribeApplicationLogsRequest.d.ts +1 -1
- package/dist/models/DescribeApplicationLogsResponseBody.d.ts +2 -0
- package/dist/models/DescribeApplicationLogsResponseBody.js +4 -0
- package/dist/models/DescribeApplicationLogsResponseBody.js.map +1 -1
- package/dist/models/DescribeApplicationPerformanceRequest.d.ts +4 -0
- package/dist/models/DescribeApplicationPerformanceRequest.js +8 -0
- package/dist/models/DescribeApplicationPerformanceRequest.js.map +1 -1
- package/dist/models/DescribeApplicationPerformanceResponseBody.d.ts +2 -0
- package/dist/models/DescribeApplicationPerformanceResponseBody.js +4 -0
- package/dist/models/DescribeApplicationPerformanceResponseBody.js.map +1 -1
- package/dist/models/DescribeApplicationSessionIdsRequest.d.ts +72 -0
- package/dist/models/DescribeApplicationSessionIdsRequest.js +74 -0
- package/dist/models/DescribeApplicationSessionIdsRequest.js.map +1 -0
- package/dist/models/DescribeApplicationSessionIdsResponse.d.ts +19 -0
- package/dist/models/DescribeApplicationSessionIdsResponse.js +69 -0
- package/dist/models/DescribeApplicationSessionIdsResponse.js.map +1 -0
- package/dist/models/DescribeApplicationSessionIdsResponseBody.d.ts +82 -0
- package/dist/models/DescribeApplicationSessionIdsResponseBody.js +116 -0
- package/dist/models/DescribeApplicationSessionIdsResponseBody.js.map +1 -0
- package/dist/models/DescribeDbclusterAttributeResponseBody.d.ts +84 -79
- package/dist/models/DescribeDbclusterAttributeResponseBody.js +10 -0
- package/dist/models/DescribeDbclusterAttributeResponseBody.js.map +1 -1
- package/dist/models/RestartPolarClawGatewayRequest.d.ts +26 -0
- package/dist/models/RestartPolarClawGatewayRequest.js +60 -0
- package/dist/models/RestartPolarClawGatewayRequest.js.map +1 -0
- package/dist/models/RestartPolarClawGatewayResponse.d.ts +19 -0
- package/dist/models/RestartPolarClawGatewayResponse.js +69 -0
- package/dist/models/RestartPolarClawGatewayResponse.js.map +1 -0
- package/dist/models/RestartPolarClawGatewayResponseBody.d.ts +73 -0
- package/dist/models/RestartPolarClawGatewayResponseBody.js +80 -0
- package/dist/models/RestartPolarClawGatewayResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +8 -0
- package/dist/models/model.js +48 -32
- package/dist/models/model.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +140 -4
- package/src/models/DescribeApplicationAttributeResponseBody.ts +77 -110
- package/src/models/DescribeApplicationLogsRequest.ts +1 -1
- package/src/models/DescribeApplicationLogsResponseBody.ts +6 -0
- package/src/models/DescribeApplicationPerformanceRequest.ts +12 -0
- package/src/models/DescribeApplicationPerformanceResponseBody.ts +6 -0
- package/src/models/DescribeApplicationSessionIdsRequest.ts +101 -0
- package/src/models/DescribeApplicationSessionIdsResponse.ts +40 -0
- package/src/models/DescribeApplicationSessionIdsResponseBody.ts +135 -0
- package/src/models/DescribeDbclusterAttributeResponseBody.ts +94 -79
- package/src/models/RestartPolarClawGatewayRequest.ts +41 -0
- package/src/models/RestartPolarClawGatewayResponse.ts +40 -0
- package/src/models/RestartPolarClawGatewayResponseBody.ts +108 -0
- package/src/models/model.ts +8 -0
|
@@ -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.RestartPolarClawGatewayResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const RestartPolarClawGatewayResponseBody_1 = require("./RestartPolarClawGatewayResponseBody");
|
|
40
|
+
class RestartPolarClawGatewayResponse 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: RestartPolarClawGatewayResponseBody_1.RestartPolarClawGatewayResponseBody,
|
|
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.RestartPolarClawGatewayResponse = RestartPolarClawGatewayResponse;
|
|
69
|
+
//# sourceMappingURL=RestartPolarClawGatewayResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RestartPolarClawGatewayResponse.js","sourceRoot":"","sources":["../../src/models/RestartPolarClawGatewayResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,+FAA4F;AAG5F,MAAa,+BAAgC,SAAQ,KAAK,CAAC,KAAK;IAI9D,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,yEAAmC;SAC1C,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,0EAiCC"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class RestartPolarClawGatewayResponseBody extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* pa-xxx
|
|
6
|
+
*/
|
|
7
|
+
applicationId?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* 200
|
|
11
|
+
*/
|
|
12
|
+
code?: number;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* 3235
|
|
16
|
+
*/
|
|
17
|
+
downtimeMs?: number;
|
|
18
|
+
/**
|
|
19
|
+
* @example
|
|
20
|
+
* 2026.5.7
|
|
21
|
+
*/
|
|
22
|
+
gatewayVersion?: string;
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* successful
|
|
26
|
+
*/
|
|
27
|
+
message?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @example
|
|
30
|
+
* in-process
|
|
31
|
+
*/
|
|
32
|
+
mode?: string;
|
|
33
|
+
/**
|
|
34
|
+
* @example
|
|
35
|
+
* true
|
|
36
|
+
*/
|
|
37
|
+
ok?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* @example
|
|
40
|
+
* RestartPolarClawGateway
|
|
41
|
+
*/
|
|
42
|
+
operation?: string;
|
|
43
|
+
/**
|
|
44
|
+
* @example
|
|
45
|
+
* F45FFACC-xxx
|
|
46
|
+
*/
|
|
47
|
+
requestId?: string;
|
|
48
|
+
/**
|
|
49
|
+
* @example
|
|
50
|
+
* true
|
|
51
|
+
*/
|
|
52
|
+
restarted?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* @example
|
|
55
|
+
* pending
|
|
56
|
+
*/
|
|
57
|
+
state?: string;
|
|
58
|
+
/**
|
|
59
|
+
* @example
|
|
60
|
+
* 0ee00f56-f467-4d41-858c-ca4ede2c770e
|
|
61
|
+
*/
|
|
62
|
+
taskId?: string;
|
|
63
|
+
static names(): {
|
|
64
|
+
[key: string]: string;
|
|
65
|
+
};
|
|
66
|
+
static types(): {
|
|
67
|
+
[key: string]: any;
|
|
68
|
+
};
|
|
69
|
+
validate(): void;
|
|
70
|
+
constructor(map?: {
|
|
71
|
+
[key: string]: any;
|
|
72
|
+
});
|
|
73
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
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.RestartPolarClawGatewayResponseBody = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class RestartPolarClawGatewayResponseBody extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
applicationId: 'ApplicationId',
|
|
43
|
+
code: 'Code',
|
|
44
|
+
downtimeMs: 'DowntimeMs',
|
|
45
|
+
gatewayVersion: 'GatewayVersion',
|
|
46
|
+
message: 'Message',
|
|
47
|
+
mode: 'Mode',
|
|
48
|
+
ok: 'Ok',
|
|
49
|
+
operation: 'Operation',
|
|
50
|
+
requestId: 'RequestId',
|
|
51
|
+
restarted: 'Restarted',
|
|
52
|
+
state: 'State',
|
|
53
|
+
taskId: 'TaskId',
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
static types() {
|
|
57
|
+
return {
|
|
58
|
+
applicationId: 'string',
|
|
59
|
+
code: 'number',
|
|
60
|
+
downtimeMs: 'number',
|
|
61
|
+
gatewayVersion: 'string',
|
|
62
|
+
message: 'string',
|
|
63
|
+
mode: 'string',
|
|
64
|
+
ok: 'boolean',
|
|
65
|
+
operation: 'string',
|
|
66
|
+
requestId: 'string',
|
|
67
|
+
restarted: 'boolean',
|
|
68
|
+
state: 'string',
|
|
69
|
+
taskId: 'string',
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
validate() {
|
|
73
|
+
super.validate();
|
|
74
|
+
}
|
|
75
|
+
constructor(map) {
|
|
76
|
+
super(map);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
exports.RestartPolarClawGatewayResponseBody = RestartPolarClawGatewayResponseBody;
|
|
80
|
+
//# sourceMappingURL=RestartPolarClawGatewayResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RestartPolarClawGatewayResponseBody.js","sourceRoot":"","sources":["../../src/models/RestartPolarClawGatewayResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,mCAAoC,SAAQ,KAAK,CAAC,KAAK;IA6DlE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,eAAe;YAC9B,IAAI,EAAE,MAAM;YACZ,UAAU,EAAE,YAAY;YACxB,cAAc,EAAE,gBAAgB;YAChC,OAAO,EAAE,SAAS;YAClB,IAAI,EAAE,MAAM;YACZ,EAAE,EAAE,IAAI;YACR,SAAS,EAAE,WAAW;YACtB,SAAS,EAAE,WAAW;YACtB,SAAS,EAAE,WAAW;YACtB,KAAK,EAAE,OAAO;YACd,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,QAAQ;YACvB,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE,QAAQ;YACpB,cAAc,EAAE,QAAQ;YACxB,OAAO,EAAE,QAAQ;YACjB,IAAI,EAAE,QAAQ;YACd,EAAE,EAAE,SAAS;YACb,SAAS,EAAE,QAAQ;YACnB,SAAS,EAAE,QAAQ;YACnB,SAAS,EAAE,SAAS;YACpB,KAAK,EAAE,QAAQ;YACf,MAAM,EAAE,QAAQ;SACjB,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;AAtGD,kFAsGC"}
|
package/dist/models/model.d.ts
CHANGED
|
@@ -103,6 +103,8 @@ export { DescribeApplicationPerformanceResponseBodyPerformanceKeysPerformanceIte
|
|
|
103
103
|
export { DescribeApplicationPerformanceResponseBodyPerformanceKeys } from './DescribeApplicationPerformanceResponseBody';
|
|
104
104
|
export { DescribeApplicationPromptsResponseBodyItems } from './DescribeApplicationPromptsResponseBody';
|
|
105
105
|
export { DescribeApplicationServerlessConfResponseBodyServerlessConfItems } from './DescribeApplicationServerlessConfResponseBody';
|
|
106
|
+
export { DescribeApplicationSessionIdsResponseBodyItemsItems } from './DescribeApplicationSessionIdsResponseBody';
|
|
107
|
+
export { DescribeApplicationSessionIdsResponseBodyItems } from './DescribeApplicationSessionIdsResponseBody';
|
|
106
108
|
export { DescribeApplicationsRequestTag } from './DescribeApplicationsRequest';
|
|
107
109
|
export { DescribeApplicationsResponseBodyItemsApplicationsEndpointsEndpoint } from './DescribeApplicationsResponseBody';
|
|
108
110
|
export { DescribeApplicationsResponseBodyItemsApplicationsEndpoints } from './DescribeApplicationsResponseBody';
|
|
@@ -853,6 +855,9 @@ export { DescribeApplicationPromptsResponse } from './DescribeApplicationPrompts
|
|
|
853
855
|
export { DescribeApplicationServerlessConfRequest } from './DescribeApplicationServerlessConfRequest';
|
|
854
856
|
export { DescribeApplicationServerlessConfResponseBody } from './DescribeApplicationServerlessConfResponseBody';
|
|
855
857
|
export { DescribeApplicationServerlessConfResponse } from './DescribeApplicationServerlessConfResponse';
|
|
858
|
+
export { DescribeApplicationSessionIdsRequest } from './DescribeApplicationSessionIdsRequest';
|
|
859
|
+
export { DescribeApplicationSessionIdsResponseBody } from './DescribeApplicationSessionIdsResponseBody';
|
|
860
|
+
export { DescribeApplicationSessionIdsResponse } from './DescribeApplicationSessionIdsResponse';
|
|
856
861
|
export { DescribeApplicationsRequest } from './DescribeApplicationsRequest';
|
|
857
862
|
export { DescribeApplicationsResponseBody } from './DescribeApplicationsResponseBody';
|
|
858
863
|
export { DescribeApplicationsResponse } from './DescribeApplicationsResponse';
|
|
@@ -1598,6 +1603,9 @@ export { RestartDBNodeResponse } from './RestartDbnodeResponse';
|
|
|
1598
1603
|
export { RestartDBNodeZonalRequest } from './RestartDbnodeZonalRequest';
|
|
1599
1604
|
export { RestartDBNodeZonalResponseBody } from './RestartDbnodeZonalResponseBody';
|
|
1600
1605
|
export { RestartDBNodeZonalResponse } from './RestartDbnodeZonalResponse';
|
|
1606
|
+
export { RestartPolarClawGatewayRequest } from './RestartPolarClawGatewayRequest';
|
|
1607
|
+
export { RestartPolarClawGatewayResponseBody } from './RestartPolarClawGatewayResponseBody';
|
|
1608
|
+
export { RestartPolarClawGatewayResponse } from './RestartPolarClawGatewayResponse';
|
|
1601
1609
|
export { RestoreTableRequest } from './RestoreTableRequest';
|
|
1602
1610
|
export { RestoreTableResponseBody } from './RestoreTableResponseBody';
|
|
1603
1611
|
export { RestoreTableResponse } from './RestoreTableResponse';
|