@alicloud/polardb20170801 7.6.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 +19 -4
- package/dist/client.js +46 -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/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 +3 -0
- package/dist/models/model.js +8 -2
- package/dist/models/model.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +50 -4
- package/src/models/DescribeApplicationAttributeResponseBody.ts +77 -110
- 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 +3 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class RestartPolarClawGatewayResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* pa-xxx
|
|
9
|
+
*/
|
|
10
|
+
applicationId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 200
|
|
14
|
+
*/
|
|
15
|
+
code?: number;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 3235
|
|
19
|
+
*/
|
|
20
|
+
downtimeMs?: number;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* 2026.5.7
|
|
24
|
+
*/
|
|
25
|
+
gatewayVersion?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* successful
|
|
29
|
+
*/
|
|
30
|
+
message?: string;
|
|
31
|
+
/**
|
|
32
|
+
* @example
|
|
33
|
+
* in-process
|
|
34
|
+
*/
|
|
35
|
+
mode?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @example
|
|
38
|
+
* true
|
|
39
|
+
*/
|
|
40
|
+
ok?: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* @example
|
|
43
|
+
* RestartPolarClawGateway
|
|
44
|
+
*/
|
|
45
|
+
operation?: string;
|
|
46
|
+
/**
|
|
47
|
+
* @example
|
|
48
|
+
* F45FFACC-xxx
|
|
49
|
+
*/
|
|
50
|
+
requestId?: string;
|
|
51
|
+
/**
|
|
52
|
+
* @example
|
|
53
|
+
* true
|
|
54
|
+
*/
|
|
55
|
+
restarted?: boolean;
|
|
56
|
+
/**
|
|
57
|
+
* @example
|
|
58
|
+
* pending
|
|
59
|
+
*/
|
|
60
|
+
state?: string;
|
|
61
|
+
/**
|
|
62
|
+
* @example
|
|
63
|
+
* 0ee00f56-f467-4d41-858c-ca4ede2c770e
|
|
64
|
+
*/
|
|
65
|
+
taskId?: string;
|
|
66
|
+
static names(): { [key: string]: string } {
|
|
67
|
+
return {
|
|
68
|
+
applicationId: 'ApplicationId',
|
|
69
|
+
code: 'Code',
|
|
70
|
+
downtimeMs: 'DowntimeMs',
|
|
71
|
+
gatewayVersion: 'GatewayVersion',
|
|
72
|
+
message: 'Message',
|
|
73
|
+
mode: 'Mode',
|
|
74
|
+
ok: 'Ok',
|
|
75
|
+
operation: 'Operation',
|
|
76
|
+
requestId: 'RequestId',
|
|
77
|
+
restarted: 'Restarted',
|
|
78
|
+
state: 'State',
|
|
79
|
+
taskId: 'TaskId',
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
static types(): { [key: string]: any } {
|
|
84
|
+
return {
|
|
85
|
+
applicationId: 'string',
|
|
86
|
+
code: 'number',
|
|
87
|
+
downtimeMs: 'number',
|
|
88
|
+
gatewayVersion: 'string',
|
|
89
|
+
message: 'string',
|
|
90
|
+
mode: 'string',
|
|
91
|
+
ok: 'boolean',
|
|
92
|
+
operation: 'string',
|
|
93
|
+
requestId: 'string',
|
|
94
|
+
restarted: 'boolean',
|
|
95
|
+
state: 'string',
|
|
96
|
+
taskId: 'string',
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
validate() {
|
|
101
|
+
super.validate();
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
constructor(map?: { [key: string]: any }) {
|
|
105
|
+
super(map);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -1603,6 +1603,9 @@ export { RestartDBNodeResponse } from './RestartDbnodeResponse';
|
|
|
1603
1603
|
export { RestartDBNodeZonalRequest } from './RestartDbnodeZonalRequest';
|
|
1604
1604
|
export { RestartDBNodeZonalResponseBody } from './RestartDbnodeZonalResponseBody';
|
|
1605
1605
|
export { RestartDBNodeZonalResponse } from './RestartDbnodeZonalResponse';
|
|
1606
|
+
export { RestartPolarClawGatewayRequest } from './RestartPolarClawGatewayRequest';
|
|
1607
|
+
export { RestartPolarClawGatewayResponseBody } from './RestartPolarClawGatewayResponseBody';
|
|
1608
|
+
export { RestartPolarClawGatewayResponse } from './RestartPolarClawGatewayResponse';
|
|
1606
1609
|
export { RestoreTableRequest } from './RestoreTableRequest';
|
|
1607
1610
|
export { RestoreTableResponseBody } from './RestoreTableResponseBody';
|
|
1608
1611
|
export { RestoreTableResponse } from './RestoreTableResponse';
|