@alicloud/dds20151201 5.0.3 → 5.0.5
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 +333 -328
- package/dist/client.js +43 -10
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +375 -328
package/src/client.ts
CHANGED
|
@@ -71,9 +71,9 @@ export class AllocateNodePrivateNetworkAddressResponseBody extends $tea.Model {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
export class AllocateNodePrivateNetworkAddressResponse extends $tea.Model {
|
|
74
|
-
headers
|
|
75
|
-
statusCode
|
|
76
|
-
body
|
|
74
|
+
headers?: { [key: string]: string };
|
|
75
|
+
statusCode?: number;
|
|
76
|
+
body?: AllocateNodePrivateNetworkAddressResponseBody;
|
|
77
77
|
static names(): { [key: string]: string } {
|
|
78
78
|
return {
|
|
79
79
|
headers: 'headers',
|
|
@@ -149,9 +149,9 @@ export class AllocatePublicNetworkAddressResponseBody extends $tea.Model {
|
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
export class AllocatePublicNetworkAddressResponse extends $tea.Model {
|
|
152
|
-
headers
|
|
153
|
-
statusCode
|
|
154
|
-
body
|
|
152
|
+
headers?: { [key: string]: string };
|
|
153
|
+
statusCode?: number;
|
|
154
|
+
body?: AllocatePublicNetworkAddressResponseBody;
|
|
155
155
|
static names(): { [key: string]: string } {
|
|
156
156
|
return {
|
|
157
157
|
headers: 'headers',
|
|
@@ -233,9 +233,9 @@ export class CheckCloudResourceAuthorizedResponseBody extends $tea.Model {
|
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
export class CheckCloudResourceAuthorizedResponse extends $tea.Model {
|
|
236
|
-
headers
|
|
237
|
-
statusCode
|
|
238
|
-
body
|
|
236
|
+
headers?: { [key: string]: string };
|
|
237
|
+
statusCode?: number;
|
|
238
|
+
body?: CheckCloudResourceAuthorizedResponseBody;
|
|
239
239
|
static names(): { [key: string]: string } {
|
|
240
240
|
return {
|
|
241
241
|
headers: 'headers',
|
|
@@ -326,9 +326,9 @@ export class CheckRecoveryConditionResponseBody extends $tea.Model {
|
|
|
326
326
|
}
|
|
327
327
|
|
|
328
328
|
export class CheckRecoveryConditionResponse extends $tea.Model {
|
|
329
|
-
headers
|
|
330
|
-
statusCode
|
|
331
|
-
body
|
|
329
|
+
headers?: { [key: string]: string };
|
|
330
|
+
statusCode?: number;
|
|
331
|
+
body?: CheckRecoveryConditionResponseBody;
|
|
332
332
|
static names(): { [key: string]: string } {
|
|
333
333
|
return {
|
|
334
334
|
headers: 'headers',
|
|
@@ -407,9 +407,9 @@ export class CreateAccountResponseBody extends $tea.Model {
|
|
|
407
407
|
}
|
|
408
408
|
|
|
409
409
|
export class CreateAccountResponse extends $tea.Model {
|
|
410
|
-
headers
|
|
411
|
-
statusCode
|
|
412
|
-
body
|
|
410
|
+
headers?: { [key: string]: string };
|
|
411
|
+
statusCode?: number;
|
|
412
|
+
body?: CreateAccountResponseBody;
|
|
413
413
|
static names(): { [key: string]: string } {
|
|
414
414
|
return {
|
|
415
415
|
headers: 'headers',
|
|
@@ -488,9 +488,9 @@ export class CreateBackupResponseBody extends $tea.Model {
|
|
|
488
488
|
}
|
|
489
489
|
|
|
490
490
|
export class CreateBackupResponse extends $tea.Model {
|
|
491
|
-
headers
|
|
492
|
-
statusCode
|
|
493
|
-
body
|
|
491
|
+
headers?: { [key: string]: string };
|
|
492
|
+
statusCode?: number;
|
|
493
|
+
body?: CreateBackupResponseBody;
|
|
494
494
|
static names(): { [key: string]: string } {
|
|
495
495
|
return {
|
|
496
496
|
headers: 'headers',
|
|
@@ -671,9 +671,9 @@ export class CreateDBInstanceResponseBody extends $tea.Model {
|
|
|
671
671
|
}
|
|
672
672
|
|
|
673
673
|
export class CreateDBInstanceResponse extends $tea.Model {
|
|
674
|
-
headers
|
|
675
|
-
statusCode
|
|
676
|
-
body
|
|
674
|
+
headers?: { [key: string]: string };
|
|
675
|
+
statusCode?: number;
|
|
676
|
+
body?: CreateDBInstanceResponseBody;
|
|
677
677
|
static names(): { [key: string]: string } {
|
|
678
678
|
return {
|
|
679
679
|
headers: 'headers',
|
|
@@ -758,9 +758,9 @@ export class CreateGlobalSecurityIPGroupResponseBody extends $tea.Model {
|
|
|
758
758
|
}
|
|
759
759
|
|
|
760
760
|
export class CreateGlobalSecurityIPGroupResponse extends $tea.Model {
|
|
761
|
-
headers
|
|
762
|
-
statusCode
|
|
763
|
-
body
|
|
761
|
+
headers?: { [key: string]: string };
|
|
762
|
+
statusCode?: number;
|
|
763
|
+
body?: CreateGlobalSecurityIPGroupResponseBody;
|
|
764
764
|
static names(): { [key: string]: string } {
|
|
765
765
|
return {
|
|
766
766
|
headers: 'headers',
|
|
@@ -872,9 +872,9 @@ export class CreateNodeResponseBody extends $tea.Model {
|
|
|
872
872
|
}
|
|
873
873
|
|
|
874
874
|
export class CreateNodeResponse extends $tea.Model {
|
|
875
|
-
headers
|
|
876
|
-
statusCode
|
|
877
|
-
body
|
|
875
|
+
headers?: { [key: string]: string };
|
|
876
|
+
statusCode?: number;
|
|
877
|
+
body?: CreateNodeResponseBody;
|
|
878
878
|
static names(): { [key: string]: string } {
|
|
879
879
|
return {
|
|
880
880
|
headers: 'headers',
|
|
@@ -980,9 +980,9 @@ export class CreateNodeBatchResponseBody extends $tea.Model {
|
|
|
980
980
|
}
|
|
981
981
|
|
|
982
982
|
export class CreateNodeBatchResponse extends $tea.Model {
|
|
983
|
-
headers
|
|
984
|
-
statusCode
|
|
985
|
-
body
|
|
983
|
+
headers?: { [key: string]: string };
|
|
984
|
+
statusCode?: number;
|
|
985
|
+
body?: CreateNodeBatchResponseBody;
|
|
986
986
|
static names(): { [key: string]: string } {
|
|
987
987
|
return {
|
|
988
988
|
headers: 'headers',
|
|
@@ -1148,9 +1148,9 @@ export class CreateShardingDBInstanceResponseBody extends $tea.Model {
|
|
|
1148
1148
|
}
|
|
1149
1149
|
|
|
1150
1150
|
export class CreateShardingDBInstanceResponse extends $tea.Model {
|
|
1151
|
-
headers
|
|
1152
|
-
statusCode
|
|
1153
|
-
body
|
|
1151
|
+
headers?: { [key: string]: string };
|
|
1152
|
+
statusCode?: number;
|
|
1153
|
+
body?: CreateShardingDBInstanceResponseBody;
|
|
1154
1154
|
static names(): { [key: string]: string } {
|
|
1155
1155
|
return {
|
|
1156
1156
|
headers: 'headers',
|
|
@@ -1226,9 +1226,9 @@ export class DeleteDBInstanceResponseBody extends $tea.Model {
|
|
|
1226
1226
|
}
|
|
1227
1227
|
|
|
1228
1228
|
export class DeleteDBInstanceResponse extends $tea.Model {
|
|
1229
|
-
headers
|
|
1230
|
-
statusCode
|
|
1231
|
-
body
|
|
1229
|
+
headers?: { [key: string]: string };
|
|
1230
|
+
statusCode?: number;
|
|
1231
|
+
body?: DeleteDBInstanceResponseBody;
|
|
1232
1232
|
static names(): { [key: string]: string } {
|
|
1233
1233
|
return {
|
|
1234
1234
|
headers: 'headers',
|
|
@@ -1310,9 +1310,9 @@ export class DeleteGlobalSecurityIPGroupResponseBody extends $tea.Model {
|
|
|
1310
1310
|
}
|
|
1311
1311
|
|
|
1312
1312
|
export class DeleteGlobalSecurityIPGroupResponse extends $tea.Model {
|
|
1313
|
-
headers
|
|
1314
|
-
statusCode
|
|
1315
|
-
body
|
|
1313
|
+
headers?: { [key: string]: string };
|
|
1314
|
+
statusCode?: number;
|
|
1315
|
+
body?: DeleteGlobalSecurityIPGroupResponseBody;
|
|
1316
1316
|
static names(): { [key: string]: string } {
|
|
1317
1317
|
return {
|
|
1318
1318
|
headers: 'headers',
|
|
@@ -1397,9 +1397,9 @@ export class DeleteNodeResponseBody extends $tea.Model {
|
|
|
1397
1397
|
}
|
|
1398
1398
|
|
|
1399
1399
|
export class DeleteNodeResponse extends $tea.Model {
|
|
1400
|
-
headers
|
|
1401
|
-
statusCode
|
|
1402
|
-
body
|
|
1400
|
+
headers?: { [key: string]: string };
|
|
1401
|
+
statusCode?: number;
|
|
1402
|
+
body?: DeleteNodeResponseBody;
|
|
1403
1403
|
static names(): { [key: string]: string } {
|
|
1404
1404
|
return {
|
|
1405
1405
|
headers: 'headers',
|
|
@@ -1478,9 +1478,9 @@ export class DescribeAccountsResponseBody extends $tea.Model {
|
|
|
1478
1478
|
}
|
|
1479
1479
|
|
|
1480
1480
|
export class DescribeAccountsResponse extends $tea.Model {
|
|
1481
|
-
headers
|
|
1482
|
-
statusCode
|
|
1483
|
-
body
|
|
1481
|
+
headers?: { [key: string]: string };
|
|
1482
|
+
statusCode?: number;
|
|
1483
|
+
body?: DescribeAccountsResponseBody;
|
|
1484
1484
|
static names(): { [key: string]: string } {
|
|
1485
1485
|
return {
|
|
1486
1486
|
headers: 'headers',
|
|
@@ -1559,9 +1559,9 @@ export class DescribeActiveOperationTaskCountResponseBody extends $tea.Model {
|
|
|
1559
1559
|
}
|
|
1560
1560
|
|
|
1561
1561
|
export class DescribeActiveOperationTaskCountResponse extends $tea.Model {
|
|
1562
|
-
headers
|
|
1563
|
-
statusCode
|
|
1564
|
-
body
|
|
1562
|
+
headers?: { [key: string]: string };
|
|
1563
|
+
statusCode?: number;
|
|
1564
|
+
body?: DescribeActiveOperationTaskCountResponseBody;
|
|
1565
1565
|
static names(): { [key: string]: string } {
|
|
1566
1566
|
return {
|
|
1567
1567
|
headers: 'headers',
|
|
@@ -1640,9 +1640,9 @@ export class DescribeActiveOperationTaskTypeResponseBody extends $tea.Model {
|
|
|
1640
1640
|
}
|
|
1641
1641
|
|
|
1642
1642
|
export class DescribeActiveOperationTaskTypeResponse extends $tea.Model {
|
|
1643
|
-
headers
|
|
1644
|
-
statusCode
|
|
1645
|
-
body
|
|
1643
|
+
headers?: { [key: string]: string };
|
|
1644
|
+
statusCode?: number;
|
|
1645
|
+
body?: DescribeActiveOperationTaskTypeResponseBody;
|
|
1646
1646
|
static names(): { [key: string]: string } {
|
|
1647
1647
|
return {
|
|
1648
1648
|
headers: 'headers',
|
|
@@ -1757,9 +1757,9 @@ export class DescribeActiveOperationTasksResponseBody extends $tea.Model {
|
|
|
1757
1757
|
}
|
|
1758
1758
|
|
|
1759
1759
|
export class DescribeActiveOperationTasksResponse extends $tea.Model {
|
|
1760
|
-
headers
|
|
1761
|
-
statusCode
|
|
1762
|
-
body
|
|
1760
|
+
headers?: { [key: string]: string };
|
|
1761
|
+
statusCode?: number;
|
|
1762
|
+
body?: DescribeActiveOperationTasksResponseBody;
|
|
1763
1763
|
static names(): { [key: string]: string } {
|
|
1764
1764
|
return {
|
|
1765
1765
|
headers: 'headers',
|
|
@@ -1841,9 +1841,9 @@ export class DescribeAuditLogFilterResponseBody extends $tea.Model {
|
|
|
1841
1841
|
}
|
|
1842
1842
|
|
|
1843
1843
|
export class DescribeAuditLogFilterResponse extends $tea.Model {
|
|
1844
|
-
headers
|
|
1845
|
-
statusCode
|
|
1846
|
-
body
|
|
1844
|
+
headers?: { [key: string]: string };
|
|
1845
|
+
statusCode?: number;
|
|
1846
|
+
body?: DescribeAuditLogFilterResponseBody;
|
|
1847
1847
|
static names(): { [key: string]: string } {
|
|
1848
1848
|
return {
|
|
1849
1849
|
headers: 'headers',
|
|
@@ -1919,9 +1919,9 @@ export class DescribeAuditPolicyResponseBody extends $tea.Model {
|
|
|
1919
1919
|
}
|
|
1920
1920
|
|
|
1921
1921
|
export class DescribeAuditPolicyResponse extends $tea.Model {
|
|
1922
|
-
headers
|
|
1923
|
-
statusCode
|
|
1924
|
-
body
|
|
1922
|
+
headers?: { [key: string]: string };
|
|
1923
|
+
statusCode?: number;
|
|
1924
|
+
body?: DescribeAuditPolicyResponseBody;
|
|
1925
1925
|
static names(): { [key: string]: string } {
|
|
1926
1926
|
return {
|
|
1927
1927
|
headers: 'headers',
|
|
@@ -1948,6 +1948,7 @@ export class DescribeAuditRecordsRequest extends $tea.Model {
|
|
|
1948
1948
|
database?: string;
|
|
1949
1949
|
endTime?: string;
|
|
1950
1950
|
form?: string;
|
|
1951
|
+
logicalOperator?: string;
|
|
1951
1952
|
nodeId?: string;
|
|
1952
1953
|
orderType?: string;
|
|
1953
1954
|
ownerAccount?: string;
|
|
@@ -1965,6 +1966,7 @@ export class DescribeAuditRecordsRequest extends $tea.Model {
|
|
|
1965
1966
|
database: 'Database',
|
|
1966
1967
|
endTime: 'EndTime',
|
|
1967
1968
|
form: 'Form',
|
|
1969
|
+
logicalOperator: 'LogicalOperator',
|
|
1968
1970
|
nodeId: 'NodeId',
|
|
1969
1971
|
orderType: 'OrderType',
|
|
1970
1972
|
ownerAccount: 'OwnerAccount',
|
|
@@ -1985,6 +1987,7 @@ export class DescribeAuditRecordsRequest extends $tea.Model {
|
|
|
1985
1987
|
database: 'string',
|
|
1986
1988
|
endTime: 'string',
|
|
1987
1989
|
form: 'string',
|
|
1990
|
+
logicalOperator: 'string',
|
|
1988
1991
|
nodeId: 'string',
|
|
1989
1992
|
orderType: 'string',
|
|
1990
1993
|
ownerAccount: 'string',
|
|
@@ -2036,9 +2039,9 @@ export class DescribeAuditRecordsResponseBody extends $tea.Model {
|
|
|
2036
2039
|
}
|
|
2037
2040
|
|
|
2038
2041
|
export class DescribeAuditRecordsResponse extends $tea.Model {
|
|
2039
|
-
headers
|
|
2040
|
-
statusCode
|
|
2041
|
-
body
|
|
2042
|
+
headers?: { [key: string]: string };
|
|
2043
|
+
statusCode?: number;
|
|
2044
|
+
body?: DescribeAuditRecordsResponseBody;
|
|
2042
2045
|
static names(): { [key: string]: string } {
|
|
2043
2046
|
return {
|
|
2044
2047
|
headers: 'headers',
|
|
@@ -2153,9 +2156,9 @@ export class DescribeAvailabilityZonesResponseBody extends $tea.Model {
|
|
|
2153
2156
|
}
|
|
2154
2157
|
|
|
2155
2158
|
export class DescribeAvailabilityZonesResponse extends $tea.Model {
|
|
2156
|
-
headers
|
|
2157
|
-
statusCode
|
|
2158
|
-
body
|
|
2159
|
+
headers?: { [key: string]: string };
|
|
2160
|
+
statusCode?: number;
|
|
2161
|
+
body?: DescribeAvailabilityZonesResponseBody;
|
|
2159
2162
|
static names(): { [key: string]: string } {
|
|
2160
2163
|
return {
|
|
2161
2164
|
headers: 'headers',
|
|
@@ -2231,9 +2234,9 @@ export class DescribeAvailableEngineVersionResponseBody extends $tea.Model {
|
|
|
2231
2234
|
}
|
|
2232
2235
|
|
|
2233
2236
|
export class DescribeAvailableEngineVersionResponse extends $tea.Model {
|
|
2234
|
-
headers
|
|
2235
|
-
statusCode
|
|
2236
|
-
body
|
|
2237
|
+
headers?: { [key: string]: string };
|
|
2238
|
+
statusCode?: number;
|
|
2239
|
+
body?: DescribeAvailableEngineVersionResponseBody;
|
|
2237
2240
|
static names(): { [key: string]: string } {
|
|
2238
2241
|
return {
|
|
2239
2242
|
headers: 'headers',
|
|
@@ -2333,9 +2336,9 @@ export class DescribeAvailableResourceResponseBody extends $tea.Model {
|
|
|
2333
2336
|
}
|
|
2334
2337
|
|
|
2335
2338
|
export class DescribeAvailableResourceResponse extends $tea.Model {
|
|
2336
|
-
headers
|
|
2337
|
-
statusCode
|
|
2338
|
-
body
|
|
2339
|
+
headers?: { [key: string]: string };
|
|
2340
|
+
statusCode?: number;
|
|
2341
|
+
body?: DescribeAvailableResourceResponseBody;
|
|
2339
2342
|
static names(): { [key: string]: string } {
|
|
2340
2343
|
return {
|
|
2341
2344
|
headers: 'headers',
|
|
@@ -2435,9 +2438,9 @@ export class DescribeBackupDBsResponseBody extends $tea.Model {
|
|
|
2435
2438
|
}
|
|
2436
2439
|
|
|
2437
2440
|
export class DescribeBackupDBsResponse extends $tea.Model {
|
|
2438
|
-
headers
|
|
2439
|
-
statusCode
|
|
2440
|
-
body
|
|
2441
|
+
headers?: { [key: string]: string };
|
|
2442
|
+
statusCode?: number;
|
|
2443
|
+
body?: DescribeBackupDBsResponseBody;
|
|
2441
2444
|
static names(): { [key: string]: string } {
|
|
2442
2445
|
return {
|
|
2443
2446
|
headers: 'headers',
|
|
@@ -2534,9 +2537,9 @@ export class DescribeBackupPolicyResponseBody extends $tea.Model {
|
|
|
2534
2537
|
}
|
|
2535
2538
|
|
|
2536
2539
|
export class DescribeBackupPolicyResponse extends $tea.Model {
|
|
2537
|
-
headers
|
|
2538
|
-
statusCode
|
|
2539
|
-
body
|
|
2540
|
+
headers?: { [key: string]: string };
|
|
2541
|
+
statusCode?: number;
|
|
2542
|
+
body?: DescribeBackupPolicyResponseBody;
|
|
2540
2543
|
static names(): { [key: string]: string } {
|
|
2541
2544
|
return {
|
|
2542
2545
|
headers: 'headers',
|
|
@@ -2639,9 +2642,9 @@ export class DescribeBackupsResponseBody extends $tea.Model {
|
|
|
2639
2642
|
}
|
|
2640
2643
|
|
|
2641
2644
|
export class DescribeBackupsResponse extends $tea.Model {
|
|
2642
|
-
headers
|
|
2643
|
-
statusCode
|
|
2644
|
-
body
|
|
2645
|
+
headers?: { [key: string]: string };
|
|
2646
|
+
statusCode?: number;
|
|
2647
|
+
body?: DescribeBackupsResponseBody;
|
|
2645
2648
|
static names(): { [key: string]: string } {
|
|
2646
2649
|
return {
|
|
2647
2650
|
headers: 'headers',
|
|
@@ -2744,9 +2747,9 @@ export class DescribeClusterBackupsResponseBody extends $tea.Model {
|
|
|
2744
2747
|
}
|
|
2745
2748
|
|
|
2746
2749
|
export class DescribeClusterBackupsResponse extends $tea.Model {
|
|
2747
|
-
headers
|
|
2748
|
-
statusCode
|
|
2749
|
-
body
|
|
2750
|
+
headers?: { [key: string]: string };
|
|
2751
|
+
statusCode?: number;
|
|
2752
|
+
body?: DescribeClusterBackupsResponseBody;
|
|
2750
2753
|
static names(): { [key: string]: string } {
|
|
2751
2754
|
return {
|
|
2752
2755
|
headers: 'headers',
|
|
@@ -2822,9 +2825,9 @@ export class DescribeClusterRecoverTimeResponseBody extends $tea.Model {
|
|
|
2822
2825
|
}
|
|
2823
2826
|
|
|
2824
2827
|
export class DescribeClusterRecoverTimeResponse extends $tea.Model {
|
|
2825
|
-
headers
|
|
2826
|
-
statusCode
|
|
2827
|
-
body
|
|
2828
|
+
headers?: { [key: string]: string };
|
|
2829
|
+
statusCode?: number;
|
|
2830
|
+
body?: DescribeClusterRecoverTimeResponseBody;
|
|
2828
2831
|
static names(): { [key: string]: string } {
|
|
2829
2832
|
return {
|
|
2830
2833
|
headers: 'headers',
|
|
@@ -2912,9 +2915,9 @@ export class DescribeDBInstanceAttributeResponseBody extends $tea.Model {
|
|
|
2912
2915
|
}
|
|
2913
2916
|
|
|
2914
2917
|
export class DescribeDBInstanceAttributeResponse extends $tea.Model {
|
|
2915
|
-
headers
|
|
2916
|
-
statusCode
|
|
2917
|
-
body
|
|
2918
|
+
headers?: { [key: string]: string };
|
|
2919
|
+
statusCode?: number;
|
|
2920
|
+
body?: DescribeDBInstanceAttributeResponseBody;
|
|
2918
2921
|
static names(): { [key: string]: string } {
|
|
2919
2922
|
return {
|
|
2920
2923
|
headers: 'headers',
|
|
@@ -3014,9 +3017,9 @@ export class DescribeDBInstanceEncryptionKeyResponseBody extends $tea.Model {
|
|
|
3014
3017
|
}
|
|
3015
3018
|
|
|
3016
3019
|
export class DescribeDBInstanceEncryptionKeyResponse extends $tea.Model {
|
|
3017
|
-
headers
|
|
3018
|
-
statusCode
|
|
3019
|
-
body
|
|
3020
|
+
headers?: { [key: string]: string };
|
|
3021
|
+
statusCode?: number;
|
|
3022
|
+
body?: DescribeDBInstanceEncryptionKeyResponseBody;
|
|
3020
3023
|
static names(): { [key: string]: string } {
|
|
3021
3024
|
return {
|
|
3022
3025
|
headers: 'headers',
|
|
@@ -3092,9 +3095,9 @@ export class DescribeDBInstanceMonitorResponseBody extends $tea.Model {
|
|
|
3092
3095
|
}
|
|
3093
3096
|
|
|
3094
3097
|
export class DescribeDBInstanceMonitorResponse extends $tea.Model {
|
|
3095
|
-
headers
|
|
3096
|
-
statusCode
|
|
3097
|
-
body
|
|
3098
|
+
headers?: { [key: string]: string };
|
|
3099
|
+
statusCode?: number;
|
|
3100
|
+
body?: DescribeDBInstanceMonitorResponseBody;
|
|
3098
3101
|
static names(): { [key: string]: string } {
|
|
3099
3102
|
return {
|
|
3100
3103
|
headers: 'headers',
|
|
@@ -3194,9 +3197,9 @@ export class DescribeDBInstancePerformanceResponseBody extends $tea.Model {
|
|
|
3194
3197
|
}
|
|
3195
3198
|
|
|
3196
3199
|
export class DescribeDBInstancePerformanceResponse extends $tea.Model {
|
|
3197
|
-
headers
|
|
3198
|
-
statusCode
|
|
3199
|
-
body
|
|
3200
|
+
headers?: { [key: string]: string };
|
|
3201
|
+
statusCode?: number;
|
|
3202
|
+
body?: DescribeDBInstancePerformanceResponseBody;
|
|
3200
3203
|
static names(): { [key: string]: string } {
|
|
3201
3204
|
return {
|
|
3202
3205
|
headers: 'headers',
|
|
@@ -3278,9 +3281,9 @@ export class DescribeDBInstanceSSLResponseBody extends $tea.Model {
|
|
|
3278
3281
|
}
|
|
3279
3282
|
|
|
3280
3283
|
export class DescribeDBInstanceSSLResponse extends $tea.Model {
|
|
3281
|
-
headers
|
|
3282
|
-
statusCode
|
|
3283
|
-
body
|
|
3284
|
+
headers?: { [key: string]: string };
|
|
3285
|
+
statusCode?: number;
|
|
3286
|
+
body?: DescribeDBInstanceSSLResponseBody;
|
|
3284
3287
|
static names(): { [key: string]: string } {
|
|
3285
3288
|
return {
|
|
3286
3289
|
headers: 'headers',
|
|
@@ -3371,9 +3374,9 @@ export class DescribeDBInstanceSwitchLogResponseBody extends $tea.Model {
|
|
|
3371
3374
|
}
|
|
3372
3375
|
|
|
3373
3376
|
export class DescribeDBInstanceSwitchLogResponse extends $tea.Model {
|
|
3374
|
-
headers
|
|
3375
|
-
statusCode
|
|
3376
|
-
body
|
|
3377
|
+
headers?: { [key: string]: string };
|
|
3378
|
+
statusCode?: number;
|
|
3379
|
+
body?: DescribeDBInstanceSwitchLogResponseBody;
|
|
3377
3380
|
static names(): { [key: string]: string } {
|
|
3378
3381
|
return {
|
|
3379
3382
|
headers: 'headers',
|
|
@@ -3458,9 +3461,9 @@ export class DescribeDBInstanceTDEInfoResponseBody extends $tea.Model {
|
|
|
3458
3461
|
}
|
|
3459
3462
|
|
|
3460
3463
|
export class DescribeDBInstanceTDEInfoResponse extends $tea.Model {
|
|
3461
|
-
headers
|
|
3462
|
-
statusCode
|
|
3463
|
-
body
|
|
3464
|
+
headers?: { [key: string]: string };
|
|
3465
|
+
statusCode?: number;
|
|
3466
|
+
body?: DescribeDBInstanceTDEInfoResponseBody;
|
|
3464
3467
|
static names(): { [key: string]: string } {
|
|
3465
3468
|
return {
|
|
3466
3469
|
headers: 'headers',
|
|
@@ -3608,9 +3611,9 @@ export class DescribeDBInstancesResponseBody extends $tea.Model {
|
|
|
3608
3611
|
}
|
|
3609
3612
|
|
|
3610
3613
|
export class DescribeDBInstancesResponse extends $tea.Model {
|
|
3611
|
-
headers
|
|
3612
|
-
statusCode
|
|
3613
|
-
body
|
|
3614
|
+
headers?: { [key: string]: string };
|
|
3615
|
+
statusCode?: number;
|
|
3616
|
+
body?: DescribeDBInstancesResponseBody;
|
|
3614
3617
|
static names(): { [key: string]: string } {
|
|
3615
3618
|
return {
|
|
3616
3619
|
headers: 'headers',
|
|
@@ -3722,9 +3725,9 @@ export class DescribeDBInstancesOverviewResponseBody extends $tea.Model {
|
|
|
3722
3725
|
}
|
|
3723
3726
|
|
|
3724
3727
|
export class DescribeDBInstancesOverviewResponse extends $tea.Model {
|
|
3725
|
-
headers
|
|
3726
|
-
statusCode
|
|
3727
|
-
body
|
|
3728
|
+
headers?: { [key: string]: string };
|
|
3729
|
+
statusCode?: number;
|
|
3730
|
+
body?: DescribeDBInstancesOverviewResponseBody;
|
|
3728
3731
|
static names(): { [key: string]: string } {
|
|
3729
3732
|
return {
|
|
3730
3733
|
headers: 'headers',
|
|
@@ -3750,11 +3753,13 @@ export class DescribeErrorLogRecordsRequest extends $tea.Model {
|
|
|
3750
3753
|
DBInstanceId?: string;
|
|
3751
3754
|
DBName?: string;
|
|
3752
3755
|
endTime?: string;
|
|
3756
|
+
logicalOperator?: string;
|
|
3753
3757
|
nodeId?: string;
|
|
3754
3758
|
ownerAccount?: string;
|
|
3755
3759
|
ownerId?: number;
|
|
3756
3760
|
pageNumber?: number;
|
|
3757
3761
|
pageSize?: number;
|
|
3762
|
+
queryKeywords?: string;
|
|
3758
3763
|
resourceGroupId?: string;
|
|
3759
3764
|
resourceOwnerAccount?: string;
|
|
3760
3765
|
resourceOwnerId?: number;
|
|
@@ -3765,11 +3770,13 @@ export class DescribeErrorLogRecordsRequest extends $tea.Model {
|
|
|
3765
3770
|
DBInstanceId: 'DBInstanceId',
|
|
3766
3771
|
DBName: 'DBName',
|
|
3767
3772
|
endTime: 'EndTime',
|
|
3773
|
+
logicalOperator: 'LogicalOperator',
|
|
3768
3774
|
nodeId: 'NodeId',
|
|
3769
3775
|
ownerAccount: 'OwnerAccount',
|
|
3770
3776
|
ownerId: 'OwnerId',
|
|
3771
3777
|
pageNumber: 'PageNumber',
|
|
3772
3778
|
pageSize: 'PageSize',
|
|
3779
|
+
queryKeywords: 'QueryKeywords',
|
|
3773
3780
|
resourceGroupId: 'ResourceGroupId',
|
|
3774
3781
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
3775
3782
|
resourceOwnerId: 'ResourceOwnerId',
|
|
@@ -3783,11 +3790,13 @@ export class DescribeErrorLogRecordsRequest extends $tea.Model {
|
|
|
3783
3790
|
DBInstanceId: 'string',
|
|
3784
3791
|
DBName: 'string',
|
|
3785
3792
|
endTime: 'string',
|
|
3793
|
+
logicalOperator: 'string',
|
|
3786
3794
|
nodeId: 'string',
|
|
3787
3795
|
ownerAccount: 'string',
|
|
3788
3796
|
ownerId: 'number',
|
|
3789
3797
|
pageNumber: 'number',
|
|
3790
3798
|
pageSize: 'number',
|
|
3799
|
+
queryKeywords: 'string',
|
|
3791
3800
|
resourceGroupId: 'string',
|
|
3792
3801
|
resourceOwnerAccount: 'string',
|
|
3793
3802
|
resourceOwnerId: 'number',
|
|
@@ -3836,9 +3845,9 @@ export class DescribeErrorLogRecordsResponseBody extends $tea.Model {
|
|
|
3836
3845
|
}
|
|
3837
3846
|
|
|
3838
3847
|
export class DescribeErrorLogRecordsResponse extends $tea.Model {
|
|
3839
|
-
headers
|
|
3840
|
-
statusCode
|
|
3841
|
-
body
|
|
3848
|
+
headers?: { [key: string]: string };
|
|
3849
|
+
statusCode?: number;
|
|
3850
|
+
body?: DescribeErrorLogRecordsResponseBody;
|
|
3842
3851
|
static names(): { [key: string]: string } {
|
|
3843
3852
|
return {
|
|
3844
3853
|
headers: 'headers',
|
|
@@ -3917,9 +3926,9 @@ export class DescribeGlobalSecurityIPGroupResponseBody extends $tea.Model {
|
|
|
3917
3926
|
}
|
|
3918
3927
|
|
|
3919
3928
|
export class DescribeGlobalSecurityIPGroupResponse extends $tea.Model {
|
|
3920
|
-
headers
|
|
3921
|
-
statusCode
|
|
3922
|
-
body
|
|
3929
|
+
headers?: { [key: string]: string };
|
|
3930
|
+
statusCode?: number;
|
|
3931
|
+
body?: DescribeGlobalSecurityIPGroupResponseBody;
|
|
3923
3932
|
static names(): { [key: string]: string } {
|
|
3924
3933
|
return {
|
|
3925
3934
|
headers: 'headers',
|
|
@@ -4001,9 +4010,9 @@ export class DescribeGlobalSecurityIPGroupRelationResponseBody extends $tea.Mode
|
|
|
4001
4010
|
}
|
|
4002
4011
|
|
|
4003
4012
|
export class DescribeGlobalSecurityIPGroupRelationResponse extends $tea.Model {
|
|
4004
|
-
headers
|
|
4005
|
-
statusCode
|
|
4006
|
-
body
|
|
4013
|
+
headers?: { [key: string]: string };
|
|
4014
|
+
statusCode?: number;
|
|
4015
|
+
body?: DescribeGlobalSecurityIPGroupRelationResponseBody;
|
|
4007
4016
|
static names(): { [key: string]: string } {
|
|
4008
4017
|
return {
|
|
4009
4018
|
headers: 'headers',
|
|
@@ -4115,9 +4124,9 @@ export class DescribeHistoryTasksResponseBody extends $tea.Model {
|
|
|
4115
4124
|
}
|
|
4116
4125
|
|
|
4117
4126
|
export class DescribeHistoryTasksResponse extends $tea.Model {
|
|
4118
|
-
headers
|
|
4119
|
-
statusCode
|
|
4120
|
-
body
|
|
4127
|
+
headers?: { [key: string]: string };
|
|
4128
|
+
statusCode?: number;
|
|
4129
|
+
body?: DescribeHistoryTasksResponseBody;
|
|
4121
4130
|
static names(): { [key: string]: string } {
|
|
4122
4131
|
return {
|
|
4123
4132
|
headers: 'headers',
|
|
@@ -4211,9 +4220,9 @@ export class DescribeHistoryTasksStatResponseBody extends $tea.Model {
|
|
|
4211
4220
|
}
|
|
4212
4221
|
|
|
4213
4222
|
export class DescribeHistoryTasksStatResponse extends $tea.Model {
|
|
4214
|
-
headers
|
|
4215
|
-
statusCode
|
|
4216
|
-
body
|
|
4223
|
+
headers?: { [key: string]: string };
|
|
4224
|
+
statusCode?: number;
|
|
4225
|
+
body?: DescribeHistoryTasksStatResponseBody;
|
|
4217
4226
|
static names(): { [key: string]: string } {
|
|
4218
4227
|
return {
|
|
4219
4228
|
headers: 'headers',
|
|
@@ -4310,9 +4319,9 @@ export class DescribeInstanceAutoRenewalAttributeResponseBody extends $tea.Model
|
|
|
4310
4319
|
}
|
|
4311
4320
|
|
|
4312
4321
|
export class DescribeInstanceAutoRenewalAttributeResponse extends $tea.Model {
|
|
4313
|
-
headers
|
|
4314
|
-
statusCode
|
|
4315
|
-
body
|
|
4322
|
+
headers?: { [key: string]: string };
|
|
4323
|
+
statusCode?: number;
|
|
4324
|
+
body?: DescribeInstanceAutoRenewalAttributeResponseBody;
|
|
4316
4325
|
static names(): { [key: string]: string } {
|
|
4317
4326
|
return {
|
|
4318
4327
|
headers: 'headers',
|
|
@@ -4388,9 +4397,9 @@ export class DescribeKernelReleaseNotesResponseBody extends $tea.Model {
|
|
|
4388
4397
|
}
|
|
4389
4398
|
|
|
4390
4399
|
export class DescribeKernelReleaseNotesResponse extends $tea.Model {
|
|
4391
|
-
headers
|
|
4392
|
-
statusCode
|
|
4393
|
-
body
|
|
4400
|
+
headers?: { [key: string]: string };
|
|
4401
|
+
statusCode?: number;
|
|
4402
|
+
body?: DescribeKernelReleaseNotesResponseBody;
|
|
4394
4403
|
static names(): { [key: string]: string } {
|
|
4395
4404
|
return {
|
|
4396
4405
|
headers: 'headers',
|
|
@@ -4463,9 +4472,9 @@ export class DescribeKmsKeysResponseBody extends $tea.Model {
|
|
|
4463
4472
|
}
|
|
4464
4473
|
|
|
4465
4474
|
export class DescribeKmsKeysResponse extends $tea.Model {
|
|
4466
|
-
headers
|
|
4467
|
-
statusCode
|
|
4468
|
-
body
|
|
4475
|
+
headers?: { [key: string]: string };
|
|
4476
|
+
statusCode?: number;
|
|
4477
|
+
body?: DescribeKmsKeysResponseBody;
|
|
4469
4478
|
static names(): { [key: string]: string } {
|
|
4470
4479
|
return {
|
|
4471
4480
|
headers: 'headers',
|
|
@@ -4571,9 +4580,9 @@ export class DescribeMongoDBLogConfigResponseBody extends $tea.Model {
|
|
|
4571
4580
|
}
|
|
4572
4581
|
|
|
4573
4582
|
export class DescribeMongoDBLogConfigResponse extends $tea.Model {
|
|
4574
|
-
headers
|
|
4575
|
-
statusCode
|
|
4576
|
-
body
|
|
4583
|
+
headers?: { [key: string]: string };
|
|
4584
|
+
statusCode?: number;
|
|
4585
|
+
body?: DescribeMongoDBLogConfigResponseBody;
|
|
4577
4586
|
static names(): { [key: string]: string } {
|
|
4578
4587
|
return {
|
|
4579
4588
|
headers: 'headers',
|
|
@@ -4661,9 +4670,9 @@ export class DescribeParameterModificationHistoryResponseBody extends $tea.Model
|
|
|
4661
4670
|
}
|
|
4662
4671
|
|
|
4663
4672
|
export class DescribeParameterModificationHistoryResponse extends $tea.Model {
|
|
4664
|
-
headers
|
|
4665
|
-
statusCode
|
|
4666
|
-
body
|
|
4673
|
+
headers?: { [key: string]: string };
|
|
4674
|
+
statusCode?: number;
|
|
4675
|
+
body?: DescribeParameterModificationHistoryResponseBody;
|
|
4667
4676
|
static names(): { [key: string]: string } {
|
|
4668
4677
|
return {
|
|
4669
4678
|
headers: 'headers',
|
|
@@ -4757,9 +4766,9 @@ export class DescribeParameterTemplatesResponseBody extends $tea.Model {
|
|
|
4757
4766
|
}
|
|
4758
4767
|
|
|
4759
4768
|
export class DescribeParameterTemplatesResponse extends $tea.Model {
|
|
4760
|
-
headers
|
|
4761
|
-
statusCode
|
|
4762
|
-
body
|
|
4769
|
+
headers?: { [key: string]: string };
|
|
4770
|
+
statusCode?: number;
|
|
4771
|
+
body?: DescribeParameterTemplatesResponseBody;
|
|
4763
4772
|
static names(): { [key: string]: string } {
|
|
4764
4773
|
return {
|
|
4765
4774
|
headers: 'headers',
|
|
@@ -4853,9 +4862,9 @@ export class DescribeParametersResponseBody extends $tea.Model {
|
|
|
4853
4862
|
}
|
|
4854
4863
|
|
|
4855
4864
|
export class DescribeParametersResponse extends $tea.Model {
|
|
4856
|
-
headers
|
|
4857
|
-
statusCode
|
|
4858
|
-
body
|
|
4865
|
+
headers?: { [key: string]: string };
|
|
4866
|
+
statusCode?: number;
|
|
4867
|
+
body?: DescribeParametersResponseBody;
|
|
4859
4868
|
static names(): { [key: string]: string } {
|
|
4860
4869
|
return {
|
|
4861
4870
|
headers: 'headers',
|
|
@@ -4967,9 +4976,9 @@ export class DescribePriceResponseBody extends $tea.Model {
|
|
|
4967
4976
|
}
|
|
4968
4977
|
|
|
4969
4978
|
export class DescribePriceResponse extends $tea.Model {
|
|
4970
|
-
headers
|
|
4971
|
-
statusCode
|
|
4972
|
-
body
|
|
4979
|
+
headers?: { [key: string]: string };
|
|
4980
|
+
statusCode?: number;
|
|
4981
|
+
body?: DescribePriceResponseBody;
|
|
4973
4982
|
static names(): { [key: string]: string } {
|
|
4974
4983
|
return {
|
|
4975
4984
|
headers: 'headers',
|
|
@@ -5048,9 +5057,9 @@ export class DescribeRegionsResponseBody extends $tea.Model {
|
|
|
5048
5057
|
}
|
|
5049
5058
|
|
|
5050
5059
|
export class DescribeRegionsResponse extends $tea.Model {
|
|
5051
|
-
headers
|
|
5052
|
-
statusCode
|
|
5053
|
-
body
|
|
5060
|
+
headers?: { [key: string]: string };
|
|
5061
|
+
statusCode?: number;
|
|
5062
|
+
body?: DescribeRegionsResponseBody;
|
|
5054
5063
|
static names(): { [key: string]: string } {
|
|
5055
5064
|
return {
|
|
5056
5065
|
headers: 'headers',
|
|
@@ -5138,9 +5147,9 @@ export class DescribeRenewalPriceResponseBody extends $tea.Model {
|
|
|
5138
5147
|
}
|
|
5139
5148
|
|
|
5140
5149
|
export class DescribeRenewalPriceResponse extends $tea.Model {
|
|
5141
|
-
headers
|
|
5142
|
-
statusCode
|
|
5143
|
-
body
|
|
5150
|
+
headers?: { [key: string]: string };
|
|
5151
|
+
statusCode?: number;
|
|
5152
|
+
body?: DescribeRenewalPriceResponseBody;
|
|
5144
5153
|
static names(): { [key: string]: string } {
|
|
5145
5154
|
return {
|
|
5146
5155
|
headers: 'headers',
|
|
@@ -5219,9 +5228,9 @@ export class DescribeReplicaSetRoleResponseBody extends $tea.Model {
|
|
|
5219
5228
|
}
|
|
5220
5229
|
|
|
5221
5230
|
export class DescribeReplicaSetRoleResponse extends $tea.Model {
|
|
5222
|
-
headers
|
|
5223
|
-
statusCode
|
|
5224
|
-
body
|
|
5231
|
+
headers?: { [key: string]: string };
|
|
5232
|
+
statusCode?: number;
|
|
5233
|
+
body?: DescribeReplicaSetRoleResponseBody;
|
|
5225
5234
|
static names(): { [key: string]: string } {
|
|
5226
5235
|
return {
|
|
5227
5236
|
headers: 'headers',
|
|
@@ -5297,9 +5306,9 @@ export class DescribeRoleZoneInfoResponseBody extends $tea.Model {
|
|
|
5297
5306
|
}
|
|
5298
5307
|
|
|
5299
5308
|
export class DescribeRoleZoneInfoResponse extends $tea.Model {
|
|
5300
|
-
headers
|
|
5301
|
-
statusCode
|
|
5302
|
-
body
|
|
5309
|
+
headers?: { [key: string]: string };
|
|
5310
|
+
statusCode?: number;
|
|
5311
|
+
body?: DescribeRoleZoneInfoResponseBody;
|
|
5303
5312
|
static names(): { [key: string]: string } {
|
|
5304
5313
|
return {
|
|
5305
5314
|
headers: 'headers',
|
|
@@ -5325,12 +5334,14 @@ export class DescribeRunningLogRecordsRequest extends $tea.Model {
|
|
|
5325
5334
|
DBInstanceId?: string;
|
|
5326
5335
|
DBName?: string;
|
|
5327
5336
|
endTime?: string;
|
|
5337
|
+
logicalOperator?: string;
|
|
5328
5338
|
nodeId?: string;
|
|
5329
5339
|
orderType?: string;
|
|
5330
5340
|
ownerAccount?: string;
|
|
5331
5341
|
ownerId?: number;
|
|
5332
5342
|
pageNumber?: number;
|
|
5333
5343
|
pageSize?: number;
|
|
5344
|
+
queryKeywords?: string;
|
|
5334
5345
|
resourceGroupId?: string;
|
|
5335
5346
|
resourceOwnerAccount?: string;
|
|
5336
5347
|
resourceOwnerId?: number;
|
|
@@ -5342,12 +5353,14 @@ export class DescribeRunningLogRecordsRequest extends $tea.Model {
|
|
|
5342
5353
|
DBInstanceId: 'DBInstanceId',
|
|
5343
5354
|
DBName: 'DBName',
|
|
5344
5355
|
endTime: 'EndTime',
|
|
5356
|
+
logicalOperator: 'LogicalOperator',
|
|
5345
5357
|
nodeId: 'NodeId',
|
|
5346
5358
|
orderType: 'OrderType',
|
|
5347
5359
|
ownerAccount: 'OwnerAccount',
|
|
5348
5360
|
ownerId: 'OwnerId',
|
|
5349
5361
|
pageNumber: 'PageNumber',
|
|
5350
5362
|
pageSize: 'PageSize',
|
|
5363
|
+
queryKeywords: 'QueryKeywords',
|
|
5351
5364
|
resourceGroupId: 'ResourceGroupId',
|
|
5352
5365
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
5353
5366
|
resourceOwnerId: 'ResourceOwnerId',
|
|
@@ -5362,12 +5375,14 @@ export class DescribeRunningLogRecordsRequest extends $tea.Model {
|
|
|
5362
5375
|
DBInstanceId: 'string',
|
|
5363
5376
|
DBName: 'string',
|
|
5364
5377
|
endTime: 'string',
|
|
5378
|
+
logicalOperator: 'string',
|
|
5365
5379
|
nodeId: 'string',
|
|
5366
5380
|
orderType: 'string',
|
|
5367
5381
|
ownerAccount: 'string',
|
|
5368
5382
|
ownerId: 'number',
|
|
5369
5383
|
pageNumber: 'number',
|
|
5370
5384
|
pageSize: 'number',
|
|
5385
|
+
queryKeywords: 'string',
|
|
5371
5386
|
resourceGroupId: 'string',
|
|
5372
5387
|
resourceOwnerAccount: 'string',
|
|
5373
5388
|
resourceOwnerId: 'number',
|
|
@@ -5417,9 +5432,9 @@ export class DescribeRunningLogRecordsResponseBody extends $tea.Model {
|
|
|
5417
5432
|
}
|
|
5418
5433
|
|
|
5419
5434
|
export class DescribeRunningLogRecordsResponse extends $tea.Model {
|
|
5420
|
-
headers
|
|
5421
|
-
statusCode
|
|
5422
|
-
body
|
|
5435
|
+
headers?: { [key: string]: string };
|
|
5436
|
+
statusCode?: number;
|
|
5437
|
+
body?: DescribeRunningLogRecordsResponseBody;
|
|
5423
5438
|
static names(): { [key: string]: string } {
|
|
5424
5439
|
return {
|
|
5425
5440
|
headers: 'headers',
|
|
@@ -5495,9 +5510,9 @@ export class DescribeSecurityGroupConfigurationResponseBody extends $tea.Model {
|
|
|
5495
5510
|
}
|
|
5496
5511
|
|
|
5497
5512
|
export class DescribeSecurityGroupConfigurationResponse extends $tea.Model {
|
|
5498
|
-
headers
|
|
5499
|
-
statusCode
|
|
5500
|
-
body
|
|
5513
|
+
headers?: { [key: string]: string };
|
|
5514
|
+
statusCode?: number;
|
|
5515
|
+
body?: DescribeSecurityGroupConfigurationResponseBody;
|
|
5501
5516
|
static names(): { [key: string]: string } {
|
|
5502
5517
|
return {
|
|
5503
5518
|
headers: 'headers',
|
|
@@ -5579,9 +5594,9 @@ export class DescribeSecurityIpsResponseBody extends $tea.Model {
|
|
|
5579
5594
|
}
|
|
5580
5595
|
|
|
5581
5596
|
export class DescribeSecurityIpsResponse extends $tea.Model {
|
|
5582
|
-
headers
|
|
5583
|
-
statusCode
|
|
5584
|
-
body
|
|
5597
|
+
headers?: { [key: string]: string };
|
|
5598
|
+
statusCode?: number;
|
|
5599
|
+
body?: DescribeSecurityIpsResponseBody;
|
|
5585
5600
|
static names(): { [key: string]: string } {
|
|
5586
5601
|
return {
|
|
5587
5602
|
headers: 'headers',
|
|
@@ -5663,9 +5678,9 @@ export class DescribeShardingNetworkAddressResponseBody extends $tea.Model {
|
|
|
5663
5678
|
}
|
|
5664
5679
|
|
|
5665
5680
|
export class DescribeShardingNetworkAddressResponse extends $tea.Model {
|
|
5666
|
-
headers
|
|
5667
|
-
statusCode
|
|
5668
|
-
body
|
|
5681
|
+
headers?: { [key: string]: string };
|
|
5682
|
+
statusCode?: number;
|
|
5683
|
+
body?: DescribeShardingNetworkAddressResponseBody;
|
|
5669
5684
|
static names(): { [key: string]: string } {
|
|
5670
5685
|
return {
|
|
5671
5686
|
headers: 'headers',
|
|
@@ -5691,12 +5706,14 @@ export class DescribeSlowLogRecordsRequest extends $tea.Model {
|
|
|
5691
5706
|
DBInstanceId?: string;
|
|
5692
5707
|
DBName?: string;
|
|
5693
5708
|
endTime?: string;
|
|
5709
|
+
logicalOperator?: string;
|
|
5694
5710
|
nodeId?: string;
|
|
5695
5711
|
orderType?: string;
|
|
5696
5712
|
ownerAccount?: string;
|
|
5697
5713
|
ownerId?: number;
|
|
5698
5714
|
pageNumber?: number;
|
|
5699
5715
|
pageSize?: number;
|
|
5716
|
+
queryKeywords?: string;
|
|
5700
5717
|
resourceGroupId?: string;
|
|
5701
5718
|
resourceOwnerAccount?: string;
|
|
5702
5719
|
resourceOwnerId?: number;
|
|
@@ -5706,12 +5723,14 @@ export class DescribeSlowLogRecordsRequest extends $tea.Model {
|
|
|
5706
5723
|
DBInstanceId: 'DBInstanceId',
|
|
5707
5724
|
DBName: 'DBName',
|
|
5708
5725
|
endTime: 'EndTime',
|
|
5726
|
+
logicalOperator: 'LogicalOperator',
|
|
5709
5727
|
nodeId: 'NodeId',
|
|
5710
5728
|
orderType: 'OrderType',
|
|
5711
5729
|
ownerAccount: 'OwnerAccount',
|
|
5712
5730
|
ownerId: 'OwnerId',
|
|
5713
5731
|
pageNumber: 'PageNumber',
|
|
5714
5732
|
pageSize: 'PageSize',
|
|
5733
|
+
queryKeywords: 'QueryKeywords',
|
|
5715
5734
|
resourceGroupId: 'ResourceGroupId',
|
|
5716
5735
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
5717
5736
|
resourceOwnerId: 'ResourceOwnerId',
|
|
@@ -5724,12 +5743,14 @@ export class DescribeSlowLogRecordsRequest extends $tea.Model {
|
|
|
5724
5743
|
DBInstanceId: 'string',
|
|
5725
5744
|
DBName: 'string',
|
|
5726
5745
|
endTime: 'string',
|
|
5746
|
+
logicalOperator: 'string',
|
|
5727
5747
|
nodeId: 'string',
|
|
5728
5748
|
orderType: 'string',
|
|
5729
5749
|
ownerAccount: 'string',
|
|
5730
5750
|
ownerId: 'number',
|
|
5731
5751
|
pageNumber: 'number',
|
|
5732
5752
|
pageSize: 'number',
|
|
5753
|
+
queryKeywords: 'string',
|
|
5733
5754
|
resourceGroupId: 'string',
|
|
5734
5755
|
resourceOwnerAccount: 'string',
|
|
5735
5756
|
resourceOwnerId: 'number',
|
|
@@ -5777,9 +5798,9 @@ export class DescribeSlowLogRecordsResponseBody extends $tea.Model {
|
|
|
5777
5798
|
}
|
|
5778
5799
|
|
|
5779
5800
|
export class DescribeSlowLogRecordsResponse extends $tea.Model {
|
|
5780
|
-
headers
|
|
5781
|
-
statusCode
|
|
5782
|
-
body
|
|
5801
|
+
headers?: { [key: string]: string };
|
|
5802
|
+
statusCode?: number;
|
|
5803
|
+
body?: DescribeSlowLogRecordsResponseBody;
|
|
5783
5804
|
static names(): { [key: string]: string } {
|
|
5784
5805
|
return {
|
|
5785
5806
|
headers: 'headers',
|
|
@@ -5867,9 +5888,9 @@ export class DescribeTagsResponseBody extends $tea.Model {
|
|
|
5867
5888
|
}
|
|
5868
5889
|
|
|
5869
5890
|
export class DescribeTagsResponse extends $tea.Model {
|
|
5870
|
-
headers
|
|
5871
|
-
statusCode
|
|
5872
|
-
body
|
|
5891
|
+
headers?: { [key: string]: string };
|
|
5892
|
+
statusCode?: number;
|
|
5893
|
+
body?: DescribeTagsResponseBody;
|
|
5873
5894
|
static names(): { [key: string]: string } {
|
|
5874
5895
|
return {
|
|
5875
5896
|
headers: 'headers',
|
|
@@ -5948,9 +5969,9 @@ export class DescribeUserEncryptionKeyListResponseBody extends $tea.Model {
|
|
|
5948
5969
|
}
|
|
5949
5970
|
|
|
5950
5971
|
export class DescribeUserEncryptionKeyListResponse extends $tea.Model {
|
|
5951
|
-
headers
|
|
5952
|
-
statusCode
|
|
5953
|
-
body
|
|
5972
|
+
headers?: { [key: string]: string };
|
|
5973
|
+
statusCode?: number;
|
|
5974
|
+
body?: DescribeUserEncryptionKeyListResponseBody;
|
|
5954
5975
|
static names(): { [key: string]: string } {
|
|
5955
5976
|
return {
|
|
5956
5977
|
headers: 'headers',
|
|
@@ -6032,9 +6053,9 @@ export class DestroyInstanceResponseBody extends $tea.Model {
|
|
|
6032
6053
|
}
|
|
6033
6054
|
|
|
6034
6055
|
export class DestroyInstanceResponse extends $tea.Model {
|
|
6035
|
-
headers
|
|
6036
|
-
statusCode
|
|
6037
|
-
body
|
|
6056
|
+
headers?: { [key: string]: string };
|
|
6057
|
+
statusCode?: number;
|
|
6058
|
+
body?: DestroyInstanceResponseBody;
|
|
6038
6059
|
static names(): { [key: string]: string } {
|
|
6039
6060
|
return {
|
|
6040
6061
|
headers: 'headers',
|
|
@@ -6143,9 +6164,9 @@ export class EvaluateResourceResponseBody extends $tea.Model {
|
|
|
6143
6164
|
}
|
|
6144
6165
|
|
|
6145
6166
|
export class EvaluateResourceResponse extends $tea.Model {
|
|
6146
|
-
headers
|
|
6147
|
-
statusCode
|
|
6148
|
-
body
|
|
6167
|
+
headers?: { [key: string]: string };
|
|
6168
|
+
statusCode?: number;
|
|
6169
|
+
body?: EvaluateResourceResponseBody;
|
|
6149
6170
|
static names(): { [key: string]: string } {
|
|
6150
6171
|
return {
|
|
6151
6172
|
headers: 'headers',
|
|
@@ -6236,9 +6257,9 @@ export class ListTagResourcesResponseBody extends $tea.Model {
|
|
|
6236
6257
|
}
|
|
6237
6258
|
|
|
6238
6259
|
export class ListTagResourcesResponse extends $tea.Model {
|
|
6239
|
-
headers
|
|
6240
|
-
statusCode
|
|
6241
|
-
body
|
|
6260
|
+
headers?: { [key: string]: string };
|
|
6261
|
+
statusCode?: number;
|
|
6262
|
+
body?: ListTagResourcesResponseBody;
|
|
6242
6263
|
static names(): { [key: string]: string } {
|
|
6243
6264
|
return {
|
|
6244
6265
|
headers: 'headers',
|
|
@@ -6320,9 +6341,9 @@ export class MigrateAvailableZoneResponseBody extends $tea.Model {
|
|
|
6320
6341
|
}
|
|
6321
6342
|
|
|
6322
6343
|
export class MigrateAvailableZoneResponse extends $tea.Model {
|
|
6323
|
-
headers
|
|
6324
|
-
statusCode
|
|
6325
|
-
body
|
|
6344
|
+
headers?: { [key: string]: string };
|
|
6345
|
+
statusCode?: number;
|
|
6346
|
+
body?: MigrateAvailableZoneResponseBody;
|
|
6326
6347
|
static names(): { [key: string]: string } {
|
|
6327
6348
|
return {
|
|
6328
6349
|
headers: 'headers',
|
|
@@ -6404,9 +6425,9 @@ export class MigrateToOtherZoneResponseBody extends $tea.Model {
|
|
|
6404
6425
|
}
|
|
6405
6426
|
|
|
6406
6427
|
export class MigrateToOtherZoneResponse extends $tea.Model {
|
|
6407
|
-
headers
|
|
6408
|
-
statusCode
|
|
6409
|
-
body
|
|
6428
|
+
headers?: { [key: string]: string };
|
|
6429
|
+
statusCode?: number;
|
|
6430
|
+
body?: MigrateToOtherZoneResponseBody;
|
|
6410
6431
|
static names(): { [key: string]: string } {
|
|
6411
6432
|
return {
|
|
6412
6433
|
headers: 'headers',
|
|
@@ -6485,9 +6506,9 @@ export class ModifyAccountDescriptionResponseBody extends $tea.Model {
|
|
|
6485
6506
|
}
|
|
6486
6507
|
|
|
6487
6508
|
export class ModifyAccountDescriptionResponse extends $tea.Model {
|
|
6488
|
-
headers
|
|
6489
|
-
statusCode
|
|
6490
|
-
body
|
|
6509
|
+
headers?: { [key: string]: string };
|
|
6510
|
+
statusCode?: number;
|
|
6511
|
+
body?: ModifyAccountDescriptionResponseBody;
|
|
6491
6512
|
static names(): { [key: string]: string } {
|
|
6492
6513
|
return {
|
|
6493
6514
|
headers: 'headers',
|
|
@@ -6566,9 +6587,9 @@ export class ModifyAuditLogFilterResponseBody extends $tea.Model {
|
|
|
6566
6587
|
}
|
|
6567
6588
|
|
|
6568
6589
|
export class ModifyAuditLogFilterResponse extends $tea.Model {
|
|
6569
|
-
headers
|
|
6570
|
-
statusCode
|
|
6571
|
-
body
|
|
6590
|
+
headers?: { [key: string]: string };
|
|
6591
|
+
statusCode?: number;
|
|
6592
|
+
body?: ModifyAuditLogFilterResponseBody;
|
|
6572
6593
|
static names(): { [key: string]: string } {
|
|
6573
6594
|
return {
|
|
6574
6595
|
headers: 'headers',
|
|
@@ -6653,9 +6674,9 @@ export class ModifyAuditPolicyResponseBody extends $tea.Model {
|
|
|
6653
6674
|
}
|
|
6654
6675
|
|
|
6655
6676
|
export class ModifyAuditPolicyResponse extends $tea.Model {
|
|
6656
|
-
headers
|
|
6657
|
-
statusCode
|
|
6658
|
-
body
|
|
6677
|
+
headers?: { [key: string]: string };
|
|
6678
|
+
statusCode?: number;
|
|
6679
|
+
body?: ModifyAuditPolicyResponseBody;
|
|
6659
6680
|
static names(): { [key: string]: string } {
|
|
6660
6681
|
return {
|
|
6661
6682
|
headers: 'headers',
|
|
@@ -6752,9 +6773,9 @@ export class ModifyBackupPolicyResponseBody extends $tea.Model {
|
|
|
6752
6773
|
}
|
|
6753
6774
|
|
|
6754
6775
|
export class ModifyBackupPolicyResponse extends $tea.Model {
|
|
6755
|
-
headers
|
|
6756
|
-
statusCode
|
|
6757
|
-
body
|
|
6776
|
+
headers?: { [key: string]: string };
|
|
6777
|
+
statusCode?: number;
|
|
6778
|
+
body?: ModifyBackupPolicyResponseBody;
|
|
6758
6779
|
static names(): { [key: string]: string } {
|
|
6759
6780
|
return {
|
|
6760
6781
|
headers: 'headers',
|
|
@@ -6839,9 +6860,9 @@ export class ModifyDBInstanceConnectionStringResponseBody extends $tea.Model {
|
|
|
6839
6860
|
}
|
|
6840
6861
|
|
|
6841
6862
|
export class ModifyDBInstanceConnectionStringResponse extends $tea.Model {
|
|
6842
|
-
headers
|
|
6843
|
-
statusCode
|
|
6844
|
-
body
|
|
6863
|
+
headers?: { [key: string]: string };
|
|
6864
|
+
statusCode?: number;
|
|
6865
|
+
body?: ModifyDBInstanceConnectionStringResponseBody;
|
|
6845
6866
|
static names(): { [key: string]: string } {
|
|
6846
6867
|
return {
|
|
6847
6868
|
headers: 'headers',
|
|
@@ -6920,9 +6941,9 @@ export class ModifyDBInstanceDescriptionResponseBody extends $tea.Model {
|
|
|
6920
6941
|
}
|
|
6921
6942
|
|
|
6922
6943
|
export class ModifyDBInstanceDescriptionResponse extends $tea.Model {
|
|
6923
|
-
headers
|
|
6924
|
-
statusCode
|
|
6925
|
-
body
|
|
6944
|
+
headers?: { [key: string]: string };
|
|
6945
|
+
statusCode?: number;
|
|
6946
|
+
body?: ModifyDBInstanceDescriptionResponseBody;
|
|
6926
6947
|
static names(): { [key: string]: string } {
|
|
6927
6948
|
return {
|
|
6928
6949
|
headers: 'headers',
|
|
@@ -7001,9 +7022,9 @@ export class ModifyDBInstanceMaintainTimeResponseBody extends $tea.Model {
|
|
|
7001
7022
|
}
|
|
7002
7023
|
|
|
7003
7024
|
export class ModifyDBInstanceMaintainTimeResponse extends $tea.Model {
|
|
7004
|
-
headers
|
|
7005
|
-
statusCode
|
|
7006
|
-
body
|
|
7025
|
+
headers?: { [key: string]: string };
|
|
7026
|
+
statusCode?: number;
|
|
7027
|
+
body?: ModifyDBInstanceMaintainTimeResponseBody;
|
|
7007
7028
|
static names(): { [key: string]: string } {
|
|
7008
7029
|
return {
|
|
7009
7030
|
headers: 'headers',
|
|
@@ -7079,9 +7100,9 @@ export class ModifyDBInstanceMonitorResponseBody extends $tea.Model {
|
|
|
7079
7100
|
}
|
|
7080
7101
|
|
|
7081
7102
|
export class ModifyDBInstanceMonitorResponse extends $tea.Model {
|
|
7082
|
-
headers
|
|
7083
|
-
statusCode
|
|
7084
|
-
body
|
|
7103
|
+
headers?: { [key: string]: string };
|
|
7104
|
+
statusCode?: number;
|
|
7105
|
+
body?: ModifyDBInstanceMonitorResponseBody;
|
|
7085
7106
|
static names(): { [key: string]: string } {
|
|
7086
7107
|
return {
|
|
7087
7108
|
headers: 'headers',
|
|
@@ -7160,9 +7181,9 @@ export class ModifyDBInstanceNetExpireTimeResponseBody extends $tea.Model {
|
|
|
7160
7181
|
}
|
|
7161
7182
|
|
|
7162
7183
|
export class ModifyDBInstanceNetExpireTimeResponse extends $tea.Model {
|
|
7163
|
-
headers
|
|
7164
|
-
statusCode
|
|
7165
|
-
body
|
|
7184
|
+
headers?: { [key: string]: string };
|
|
7185
|
+
statusCode?: number;
|
|
7186
|
+
body?: ModifyDBInstanceNetExpireTimeResponseBody;
|
|
7166
7187
|
static names(): { [key: string]: string } {
|
|
7167
7188
|
return {
|
|
7168
7189
|
headers: 'headers',
|
|
@@ -7253,9 +7274,9 @@ export class ModifyDBInstanceNetworkTypeResponseBody extends $tea.Model {
|
|
|
7253
7274
|
}
|
|
7254
7275
|
|
|
7255
7276
|
export class ModifyDBInstanceNetworkTypeResponse extends $tea.Model {
|
|
7256
|
-
headers
|
|
7257
|
-
statusCode
|
|
7258
|
-
body
|
|
7277
|
+
headers?: { [key: string]: string };
|
|
7278
|
+
statusCode?: number;
|
|
7279
|
+
body?: ModifyDBInstanceNetworkTypeResponseBody;
|
|
7259
7280
|
static names(): { [key: string]: string } {
|
|
7260
7281
|
return {
|
|
7261
7282
|
headers: 'headers',
|
|
@@ -7331,9 +7352,9 @@ export class ModifyDBInstanceSSLResponseBody extends $tea.Model {
|
|
|
7331
7352
|
}
|
|
7332
7353
|
|
|
7333
7354
|
export class ModifyDBInstanceSSLResponse extends $tea.Model {
|
|
7334
|
-
headers
|
|
7335
|
-
statusCode
|
|
7336
|
-
body
|
|
7355
|
+
headers?: { [key: string]: string };
|
|
7356
|
+
statusCode?: number;
|
|
7357
|
+
body?: ModifyDBInstanceSSLResponseBody;
|
|
7337
7358
|
static names(): { [key: string]: string } {
|
|
7338
7359
|
return {
|
|
7339
7360
|
headers: 'headers',
|
|
@@ -7439,9 +7460,9 @@ export class ModifyDBInstanceSpecResponseBody extends $tea.Model {
|
|
|
7439
7460
|
}
|
|
7440
7461
|
|
|
7441
7462
|
export class ModifyDBInstanceSpecResponse extends $tea.Model {
|
|
7442
|
-
headers
|
|
7443
|
-
statusCode
|
|
7444
|
-
body
|
|
7463
|
+
headers?: { [key: string]: string };
|
|
7464
|
+
statusCode?: number;
|
|
7465
|
+
body?: ModifyDBInstanceSpecResponseBody;
|
|
7445
7466
|
static names(): { [key: string]: string } {
|
|
7446
7467
|
return {
|
|
7447
7468
|
headers: 'headers',
|
|
@@ -7526,9 +7547,9 @@ export class ModifyDBInstanceTDEResponseBody extends $tea.Model {
|
|
|
7526
7547
|
}
|
|
7527
7548
|
|
|
7528
7549
|
export class ModifyDBInstanceTDEResponse extends $tea.Model {
|
|
7529
|
-
headers
|
|
7530
|
-
statusCode
|
|
7531
|
-
body
|
|
7550
|
+
headers?: { [key: string]: string };
|
|
7551
|
+
statusCode?: number;
|
|
7552
|
+
body?: ModifyDBInstanceTDEResponseBody;
|
|
7532
7553
|
static names(): { [key: string]: string } {
|
|
7533
7554
|
return {
|
|
7534
7555
|
headers: 'headers',
|
|
@@ -7610,9 +7631,9 @@ export class ModifyGlobalSecurityIPGroupResponseBody extends $tea.Model {
|
|
|
7610
7631
|
}
|
|
7611
7632
|
|
|
7612
7633
|
export class ModifyGlobalSecurityIPGroupResponse extends $tea.Model {
|
|
7613
|
-
headers
|
|
7614
|
-
statusCode
|
|
7615
|
-
body
|
|
7634
|
+
headers?: { [key: string]: string };
|
|
7635
|
+
statusCode?: number;
|
|
7636
|
+
body?: ModifyGlobalSecurityIPGroupResponseBody;
|
|
7616
7637
|
static names(): { [key: string]: string } {
|
|
7617
7638
|
return {
|
|
7618
7639
|
headers: 'headers',
|
|
@@ -7694,9 +7715,9 @@ export class ModifyGlobalSecurityIPGroupNameResponseBody extends $tea.Model {
|
|
|
7694
7715
|
}
|
|
7695
7716
|
|
|
7696
7717
|
export class ModifyGlobalSecurityIPGroupNameResponse extends $tea.Model {
|
|
7697
|
-
headers
|
|
7698
|
-
statusCode
|
|
7699
|
-
body
|
|
7718
|
+
headers?: { [key: string]: string };
|
|
7719
|
+
statusCode?: number;
|
|
7720
|
+
body?: ModifyGlobalSecurityIPGroupNameResponseBody;
|
|
7700
7721
|
static names(): { [key: string]: string } {
|
|
7701
7722
|
return {
|
|
7702
7723
|
headers: 'headers',
|
|
@@ -7775,9 +7796,9 @@ export class ModifyGlobalSecurityIPGroupRelationResponseBody extends $tea.Model
|
|
|
7775
7796
|
}
|
|
7776
7797
|
|
|
7777
7798
|
export class ModifyGlobalSecurityIPGroupRelationResponse extends $tea.Model {
|
|
7778
|
-
headers
|
|
7779
|
-
statusCode
|
|
7780
|
-
body
|
|
7799
|
+
headers?: { [key: string]: string };
|
|
7800
|
+
statusCode?: number;
|
|
7801
|
+
body?: ModifyGlobalSecurityIPGroupRelationResponseBody;
|
|
7781
7802
|
static names(): { [key: string]: string } {
|
|
7782
7803
|
return {
|
|
7783
7804
|
headers: 'headers',
|
|
@@ -7859,9 +7880,9 @@ export class ModifyInstanceAutoRenewalAttributeResponseBody extends $tea.Model {
|
|
|
7859
7880
|
}
|
|
7860
7881
|
|
|
7861
7882
|
export class ModifyInstanceAutoRenewalAttributeResponse extends $tea.Model {
|
|
7862
|
-
headers
|
|
7863
|
-
statusCode
|
|
7864
|
-
body
|
|
7883
|
+
headers?: { [key: string]: string };
|
|
7884
|
+
statusCode?: number;
|
|
7885
|
+
body?: ModifyInstanceAutoRenewalAttributeResponseBody;
|
|
7865
7886
|
static names(): { [key: string]: string } {
|
|
7866
7887
|
return {
|
|
7867
7888
|
headers: 'headers',
|
|
@@ -7940,9 +7961,9 @@ export class ModifyInstanceVpcAuthModeResponseBody extends $tea.Model {
|
|
|
7940
7961
|
}
|
|
7941
7962
|
|
|
7942
7963
|
export class ModifyInstanceVpcAuthModeResponse extends $tea.Model {
|
|
7943
|
-
headers
|
|
7944
|
-
statusCode
|
|
7945
|
-
body
|
|
7964
|
+
headers?: { [key: string]: string };
|
|
7965
|
+
statusCode?: number;
|
|
7966
|
+
body?: ModifyInstanceVpcAuthModeResponseBody;
|
|
7946
7967
|
static names(): { [key: string]: string } {
|
|
7947
7968
|
return {
|
|
7948
7969
|
headers: 'headers',
|
|
@@ -8054,9 +8075,9 @@ export class ModifyNodeSpecResponseBody extends $tea.Model {
|
|
|
8054
8075
|
}
|
|
8055
8076
|
|
|
8056
8077
|
export class ModifyNodeSpecResponse extends $tea.Model {
|
|
8057
|
-
headers
|
|
8058
|
-
statusCode
|
|
8059
|
-
body
|
|
8078
|
+
headers?: { [key: string]: string };
|
|
8079
|
+
statusCode?: number;
|
|
8080
|
+
body?: ModifyNodeSpecResponseBody;
|
|
8060
8081
|
static names(): { [key: string]: string } {
|
|
8061
8082
|
return {
|
|
8062
8083
|
headers: 'headers',
|
|
@@ -8156,9 +8177,9 @@ export class ModifyNodeSpecBatchResponseBody extends $tea.Model {
|
|
|
8156
8177
|
}
|
|
8157
8178
|
|
|
8158
8179
|
export class ModifyNodeSpecBatchResponse extends $tea.Model {
|
|
8159
|
-
headers
|
|
8160
|
-
statusCode
|
|
8161
|
-
body
|
|
8180
|
+
headers?: { [key: string]: string };
|
|
8181
|
+
statusCode?: number;
|
|
8182
|
+
body?: ModifyNodeSpecBatchResponseBody;
|
|
8162
8183
|
static names(): { [key: string]: string } {
|
|
8163
8184
|
return {
|
|
8164
8185
|
headers: 'headers',
|
|
@@ -8243,9 +8264,9 @@ export class ModifyParametersResponseBody extends $tea.Model {
|
|
|
8243
8264
|
}
|
|
8244
8265
|
|
|
8245
8266
|
export class ModifyParametersResponse extends $tea.Model {
|
|
8246
|
-
headers
|
|
8247
|
-
statusCode
|
|
8248
|
-
body
|
|
8267
|
+
headers?: { [key: string]: string };
|
|
8268
|
+
statusCode?: number;
|
|
8269
|
+
body?: ModifyParametersResponseBody;
|
|
8249
8270
|
static names(): { [key: string]: string } {
|
|
8250
8271
|
return {
|
|
8251
8272
|
headers: 'headers',
|
|
@@ -8324,9 +8345,9 @@ export class ModifyResourceGroupResponseBody extends $tea.Model {
|
|
|
8324
8345
|
}
|
|
8325
8346
|
|
|
8326
8347
|
export class ModifyResourceGroupResponse extends $tea.Model {
|
|
8327
|
-
headers
|
|
8328
|
-
statusCode
|
|
8329
|
-
body
|
|
8348
|
+
headers?: { [key: string]: string };
|
|
8349
|
+
statusCode?: number;
|
|
8350
|
+
body?: ModifyResourceGroupResponseBody;
|
|
8330
8351
|
static names(): { [key: string]: string } {
|
|
8331
8352
|
return {
|
|
8332
8353
|
headers: 'headers',
|
|
@@ -8402,9 +8423,9 @@ export class ModifySecurityGroupConfigurationResponseBody extends $tea.Model {
|
|
|
8402
8423
|
}
|
|
8403
8424
|
|
|
8404
8425
|
export class ModifySecurityGroupConfigurationResponse extends $tea.Model {
|
|
8405
|
-
headers
|
|
8406
|
-
statusCode
|
|
8407
|
-
body
|
|
8426
|
+
headers?: { [key: string]: string };
|
|
8427
|
+
statusCode?: number;
|
|
8428
|
+
body?: ModifySecurityGroupConfigurationResponseBody;
|
|
8408
8429
|
static names(): { [key: string]: string } {
|
|
8409
8430
|
return {
|
|
8410
8431
|
headers: 'headers',
|
|
@@ -8489,9 +8510,9 @@ export class ModifySecurityIpsResponseBody extends $tea.Model {
|
|
|
8489
8510
|
}
|
|
8490
8511
|
|
|
8491
8512
|
export class ModifySecurityIpsResponse extends $tea.Model {
|
|
8492
|
-
headers
|
|
8493
|
-
statusCode
|
|
8494
|
-
body
|
|
8513
|
+
headers?: { [key: string]: string };
|
|
8514
|
+
statusCode?: number;
|
|
8515
|
+
body?: ModifySecurityIpsResponseBody;
|
|
8495
8516
|
static names(): { [key: string]: string } {
|
|
8496
8517
|
return {
|
|
8497
8518
|
headers: 'headers',
|
|
@@ -8579,9 +8600,9 @@ export class ModifyTaskInfoResponseBody extends $tea.Model {
|
|
|
8579
8600
|
}
|
|
8580
8601
|
|
|
8581
8602
|
export class ModifyTaskInfoResponse extends $tea.Model {
|
|
8582
|
-
headers
|
|
8583
|
-
statusCode
|
|
8584
|
-
body
|
|
8603
|
+
headers?: { [key: string]: string };
|
|
8604
|
+
statusCode?: number;
|
|
8605
|
+
body?: ModifyTaskInfoResponseBody;
|
|
8585
8606
|
static names(): { [key: string]: string } {
|
|
8586
8607
|
return {
|
|
8587
8608
|
headers: 'headers',
|
|
@@ -8660,9 +8681,9 @@ export class ReleaseNodePrivateNetworkAddressResponseBody extends $tea.Model {
|
|
|
8660
8681
|
}
|
|
8661
8682
|
|
|
8662
8683
|
export class ReleaseNodePrivateNetworkAddressResponse extends $tea.Model {
|
|
8663
|
-
headers
|
|
8664
|
-
statusCode
|
|
8665
|
-
body
|
|
8684
|
+
headers?: { [key: string]: string };
|
|
8685
|
+
statusCode?: number;
|
|
8686
|
+
body?: ReleaseNodePrivateNetworkAddressResponseBody;
|
|
8666
8687
|
static names(): { [key: string]: string } {
|
|
8667
8688
|
return {
|
|
8668
8689
|
headers: 'headers',
|
|
@@ -8738,9 +8759,9 @@ export class ReleasePublicNetworkAddressResponseBody extends $tea.Model {
|
|
|
8738
8759
|
}
|
|
8739
8760
|
|
|
8740
8761
|
export class ReleasePublicNetworkAddressResponse extends $tea.Model {
|
|
8741
|
-
headers
|
|
8742
|
-
statusCode
|
|
8743
|
-
body
|
|
8762
|
+
headers?: { [key: string]: string };
|
|
8763
|
+
statusCode?: number;
|
|
8764
|
+
body?: ReleasePublicNetworkAddressResponseBody;
|
|
8744
8765
|
static names(): { [key: string]: string } {
|
|
8745
8766
|
return {
|
|
8746
8767
|
headers: 'headers',
|
|
@@ -8831,9 +8852,9 @@ export class RenewDBInstanceResponseBody extends $tea.Model {
|
|
|
8831
8852
|
}
|
|
8832
8853
|
|
|
8833
8854
|
export class RenewDBInstanceResponse extends $tea.Model {
|
|
8834
|
-
headers
|
|
8835
|
-
statusCode
|
|
8836
|
-
body
|
|
8855
|
+
headers?: { [key: string]: string };
|
|
8856
|
+
statusCode?: number;
|
|
8857
|
+
body?: RenewDBInstanceResponseBody;
|
|
8837
8858
|
static names(): { [key: string]: string } {
|
|
8838
8859
|
return {
|
|
8839
8860
|
headers: 'headers',
|
|
@@ -8915,9 +8936,9 @@ export class ResetAccountPasswordResponseBody extends $tea.Model {
|
|
|
8915
8936
|
}
|
|
8916
8937
|
|
|
8917
8938
|
export class ResetAccountPasswordResponse extends $tea.Model {
|
|
8918
|
-
headers
|
|
8919
|
-
statusCode
|
|
8920
|
-
body
|
|
8939
|
+
headers?: { [key: string]: string };
|
|
8940
|
+
statusCode?: number;
|
|
8941
|
+
body?: ResetAccountPasswordResponseBody;
|
|
8921
8942
|
static names(): { [key: string]: string } {
|
|
8922
8943
|
return {
|
|
8923
8944
|
headers: 'headers',
|
|
@@ -8993,9 +9014,9 @@ export class RestartDBInstanceResponseBody extends $tea.Model {
|
|
|
8993
9014
|
}
|
|
8994
9015
|
|
|
8995
9016
|
export class RestartDBInstanceResponse extends $tea.Model {
|
|
8996
|
-
headers
|
|
8997
|
-
statusCode
|
|
8998
|
-
body
|
|
9017
|
+
headers?: { [key: string]: string };
|
|
9018
|
+
statusCode?: number;
|
|
9019
|
+
body?: RestartDBInstanceResponseBody;
|
|
8999
9020
|
static names(): { [key: string]: string } {
|
|
9000
9021
|
return {
|
|
9001
9022
|
headers: 'headers',
|
|
@@ -9071,9 +9092,9 @@ export class RestoreDBInstanceResponseBody extends $tea.Model {
|
|
|
9071
9092
|
}
|
|
9072
9093
|
|
|
9073
9094
|
export class RestoreDBInstanceResponse extends $tea.Model {
|
|
9074
|
-
headers
|
|
9075
|
-
statusCode
|
|
9076
|
-
body
|
|
9095
|
+
headers?: { [key: string]: string };
|
|
9096
|
+
statusCode?: number;
|
|
9097
|
+
body?: RestoreDBInstanceResponseBody;
|
|
9077
9098
|
static names(): { [key: string]: string } {
|
|
9078
9099
|
return {
|
|
9079
9100
|
headers: 'headers',
|
|
@@ -9155,9 +9176,9 @@ export class SwitchDBInstanceHAResponseBody extends $tea.Model {
|
|
|
9155
9176
|
}
|
|
9156
9177
|
|
|
9157
9178
|
export class SwitchDBInstanceHAResponse extends $tea.Model {
|
|
9158
|
-
headers
|
|
9159
|
-
statusCode
|
|
9160
|
-
body
|
|
9179
|
+
headers?: { [key: string]: string };
|
|
9180
|
+
statusCode?: number;
|
|
9181
|
+
body?: SwitchDBInstanceHAResponseBody;
|
|
9161
9182
|
static names(): { [key: string]: string } {
|
|
9162
9183
|
return {
|
|
9163
9184
|
headers: 'headers',
|
|
@@ -9242,9 +9263,9 @@ export class TagResourcesResponseBody extends $tea.Model {
|
|
|
9242
9263
|
}
|
|
9243
9264
|
|
|
9244
9265
|
export class TagResourcesResponse extends $tea.Model {
|
|
9245
|
-
headers
|
|
9246
|
-
statusCode
|
|
9247
|
-
body
|
|
9266
|
+
headers?: { [key: string]: string };
|
|
9267
|
+
statusCode?: number;
|
|
9268
|
+
body?: TagResourcesResponseBody;
|
|
9248
9269
|
static names(): { [key: string]: string } {
|
|
9249
9270
|
return {
|
|
9250
9271
|
headers: 'headers',
|
|
@@ -9320,9 +9341,9 @@ export class TransferClusterBackupResponseBody extends $tea.Model {
|
|
|
9320
9341
|
}
|
|
9321
9342
|
|
|
9322
9343
|
export class TransferClusterBackupResponse extends $tea.Model {
|
|
9323
|
-
headers
|
|
9324
|
-
statusCode
|
|
9325
|
-
body
|
|
9344
|
+
headers?: { [key: string]: string };
|
|
9345
|
+
statusCode?: number;
|
|
9346
|
+
body?: TransferClusterBackupResponseBody;
|
|
9326
9347
|
static names(): { [key: string]: string } {
|
|
9327
9348
|
return {
|
|
9328
9349
|
headers: 'headers',
|
|
@@ -9419,9 +9440,9 @@ export class TransformInstanceChargeTypeResponseBody extends $tea.Model {
|
|
|
9419
9440
|
}
|
|
9420
9441
|
|
|
9421
9442
|
export class TransformInstanceChargeTypeResponse extends $tea.Model {
|
|
9422
|
-
headers
|
|
9423
|
-
statusCode
|
|
9424
|
-
body
|
|
9443
|
+
headers?: { [key: string]: string };
|
|
9444
|
+
statusCode?: number;
|
|
9445
|
+
body?: TransformInstanceChargeTypeResponseBody;
|
|
9425
9446
|
static names(): { [key: string]: string } {
|
|
9426
9447
|
return {
|
|
9427
9448
|
headers: 'headers',
|
|
@@ -9512,9 +9533,9 @@ export class TransformToPrePaidResponseBody extends $tea.Model {
|
|
|
9512
9533
|
}
|
|
9513
9534
|
|
|
9514
9535
|
export class TransformToPrePaidResponse extends $tea.Model {
|
|
9515
|
-
headers
|
|
9516
|
-
statusCode
|
|
9517
|
-
body
|
|
9536
|
+
headers?: { [key: string]: string };
|
|
9537
|
+
statusCode?: number;
|
|
9538
|
+
body?: TransformToPrePaidResponseBody;
|
|
9518
9539
|
static names(): { [key: string]: string } {
|
|
9519
9540
|
return {
|
|
9520
9541
|
headers: 'headers',
|
|
@@ -9602,9 +9623,9 @@ export class UntagResourcesResponseBody extends $tea.Model {
|
|
|
9602
9623
|
}
|
|
9603
9624
|
|
|
9604
9625
|
export class UntagResourcesResponse extends $tea.Model {
|
|
9605
|
-
headers
|
|
9606
|
-
statusCode
|
|
9607
|
-
body
|
|
9626
|
+
headers?: { [key: string]: string };
|
|
9627
|
+
statusCode?: number;
|
|
9628
|
+
body?: UntagResourcesResponseBody;
|
|
9608
9629
|
static names(): { [key: string]: string } {
|
|
9609
9630
|
return {
|
|
9610
9631
|
headers: 'headers',
|
|
@@ -9680,9 +9701,9 @@ export class UpgradeDBInstanceEngineVersionResponseBody extends $tea.Model {
|
|
|
9680
9701
|
}
|
|
9681
9702
|
|
|
9682
9703
|
export class UpgradeDBInstanceEngineVersionResponse extends $tea.Model {
|
|
9683
|
-
headers
|
|
9684
|
-
statusCode
|
|
9685
|
-
body
|
|
9704
|
+
headers?: { [key: string]: string };
|
|
9705
|
+
statusCode?: number;
|
|
9706
|
+
body?: UpgradeDBInstanceEngineVersionResponseBody;
|
|
9686
9707
|
static names(): { [key: string]: string } {
|
|
9687
9708
|
return {
|
|
9688
9709
|
headers: 'headers',
|
|
@@ -9755,9 +9776,9 @@ export class UpgradeDBInstanceKernelVersionResponseBody extends $tea.Model {
|
|
|
9755
9776
|
}
|
|
9756
9777
|
|
|
9757
9778
|
export class UpgradeDBInstanceKernelVersionResponse extends $tea.Model {
|
|
9758
|
-
headers
|
|
9759
|
-
statusCode
|
|
9760
|
-
body
|
|
9779
|
+
headers?: { [key: string]: string };
|
|
9780
|
+
statusCode?: number;
|
|
9781
|
+
body?: UpgradeDBInstanceKernelVersionResponseBody;
|
|
9761
9782
|
static names(): { [key: string]: string } {
|
|
9762
9783
|
return {
|
|
9763
9784
|
headers: 'headers',
|
|
@@ -15145,6 +15166,10 @@ export default class Client extends OpenApi {
|
|
|
15145
15166
|
query["Form"] = request.form;
|
|
15146
15167
|
}
|
|
15147
15168
|
|
|
15169
|
+
if (!Util.isUnset(request.logicalOperator)) {
|
|
15170
|
+
query["LogicalOperator"] = request.logicalOperator;
|
|
15171
|
+
}
|
|
15172
|
+
|
|
15148
15173
|
if (!Util.isUnset(request.nodeId)) {
|
|
15149
15174
|
query["NodeId"] = request.nodeId;
|
|
15150
15175
|
}
|
|
@@ -16493,6 +16518,10 @@ export default class Client extends OpenApi {
|
|
|
16493
16518
|
query["EndTime"] = request.endTime;
|
|
16494
16519
|
}
|
|
16495
16520
|
|
|
16521
|
+
if (!Util.isUnset(request.logicalOperator)) {
|
|
16522
|
+
query["LogicalOperator"] = request.logicalOperator;
|
|
16523
|
+
}
|
|
16524
|
+
|
|
16496
16525
|
if (!Util.isUnset(request.nodeId)) {
|
|
16497
16526
|
query["NodeId"] = request.nodeId;
|
|
16498
16527
|
}
|
|
@@ -16513,6 +16542,10 @@ export default class Client extends OpenApi {
|
|
|
16513
16542
|
query["PageSize"] = request.pageSize;
|
|
16514
16543
|
}
|
|
16515
16544
|
|
|
16545
|
+
if (!Util.isUnset(request.queryKeywords)) {
|
|
16546
|
+
query["QueryKeywords"] = request.queryKeywords;
|
|
16547
|
+
}
|
|
16548
|
+
|
|
16516
16549
|
if (!Util.isUnset(request.resourceGroupId)) {
|
|
16517
16550
|
query["ResourceGroupId"] = request.resourceGroupId;
|
|
16518
16551
|
}
|
|
@@ -17520,6 +17553,10 @@ export default class Client extends OpenApi {
|
|
|
17520
17553
|
query["EndTime"] = request.endTime;
|
|
17521
17554
|
}
|
|
17522
17555
|
|
|
17556
|
+
if (!Util.isUnset(request.logicalOperator)) {
|
|
17557
|
+
query["LogicalOperator"] = request.logicalOperator;
|
|
17558
|
+
}
|
|
17559
|
+
|
|
17523
17560
|
if (!Util.isUnset(request.nodeId)) {
|
|
17524
17561
|
query["NodeId"] = request.nodeId;
|
|
17525
17562
|
}
|
|
@@ -17544,6 +17581,10 @@ export default class Client extends OpenApi {
|
|
|
17544
17581
|
query["PageSize"] = request.pageSize;
|
|
17545
17582
|
}
|
|
17546
17583
|
|
|
17584
|
+
if (!Util.isUnset(request.queryKeywords)) {
|
|
17585
|
+
query["QueryKeywords"] = request.queryKeywords;
|
|
17586
|
+
}
|
|
17587
|
+
|
|
17547
17588
|
if (!Util.isUnset(request.resourceGroupId)) {
|
|
17548
17589
|
query["ResourceGroupId"] = request.resourceGroupId;
|
|
17549
17590
|
}
|
|
@@ -17776,6 +17817,10 @@ export default class Client extends OpenApi {
|
|
|
17776
17817
|
query["EndTime"] = request.endTime;
|
|
17777
17818
|
}
|
|
17778
17819
|
|
|
17820
|
+
if (!Util.isUnset(request.logicalOperator)) {
|
|
17821
|
+
query["LogicalOperator"] = request.logicalOperator;
|
|
17822
|
+
}
|
|
17823
|
+
|
|
17779
17824
|
if (!Util.isUnset(request.nodeId)) {
|
|
17780
17825
|
query["NodeId"] = request.nodeId;
|
|
17781
17826
|
}
|
|
@@ -17800,6 +17845,10 @@ export default class Client extends OpenApi {
|
|
|
17800
17845
|
query["PageSize"] = request.pageSize;
|
|
17801
17846
|
}
|
|
17802
17847
|
|
|
17848
|
+
if (!Util.isUnset(request.queryKeywords)) {
|
|
17849
|
+
query["QueryKeywords"] = request.queryKeywords;
|
|
17850
|
+
}
|
|
17851
|
+
|
|
17803
17852
|
if (!Util.isUnset(request.resourceGroupId)) {
|
|
17804
17853
|
query["ResourceGroupId"] = request.resourceGroupId;
|
|
17805
17854
|
}
|
|
@@ -18789,10 +18838,10 @@ export default class Client extends OpenApi {
|
|
|
18789
18838
|
}
|
|
18790
18839
|
|
|
18791
18840
|
/**
|
|
18792
|
-
* > This operation is applicable only to the ApsaraDB for MongoDB console of the previous version due to the change in the
|
|
18841
|
+
* > This operation is applicable only to the ApsaraDB for MongoDB console of the previous version due to the change in the feature of adjusting collection intervals of monitoring data.
|
|
18793
18842
|
* Before you call this operation, make sure that the following requirements are met:
|
|
18794
|
-
* *
|
|
18795
|
-
* *
|
|
18843
|
+
* * A replica set or sharded cluster instance is used.
|
|
18844
|
+
* * MongoDB 3.4 (the latest minor version) or MongoDB 4.0 is selected.
|
|
18796
18845
|
*
|
|
18797
18846
|
* @param request ModifyDBInstanceMonitorRequest
|
|
18798
18847
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18843,10 +18892,10 @@ export default class Client extends OpenApi {
|
|
|
18843
18892
|
}
|
|
18844
18893
|
|
|
18845
18894
|
/**
|
|
18846
|
-
* > This operation is applicable only to the ApsaraDB for MongoDB console of the previous version due to the change in the
|
|
18895
|
+
* > This operation is applicable only to the ApsaraDB for MongoDB console of the previous version due to the change in the feature of adjusting collection intervals of monitoring data.
|
|
18847
18896
|
* Before you call this operation, make sure that the following requirements are met:
|
|
18848
|
-
* *
|
|
18849
|
-
* *
|
|
18897
|
+
* * A replica set or sharded cluster instance is used.
|
|
18898
|
+
* * MongoDB 3.4 (the latest minor version) or MongoDB 4.0 is selected.
|
|
18850
18899
|
*
|
|
18851
18900
|
* @param request ModifyDBInstanceMonitorRequest
|
|
18852
18901
|
* @return ModifyDBInstanceMonitorResponse
|
|
@@ -19015,7 +19064,7 @@ export default class Client extends OpenApi {
|
|
|
19015
19064
|
* Before you call this operation, make sure that the following requirements are met:
|
|
19016
19065
|
* * The instance is in the running state.
|
|
19017
19066
|
* * The instance is a replica set instance.
|
|
19018
|
-
* * The engine version of the instance is
|
|
19067
|
+
* * The engine version of the instance is 3.4 or 4.0.
|
|
19019
19068
|
* > When you enable or disable SSL encryption or update the SSL certificate, the instance restarts. We recommend that you call this operation during off-peak hours.
|
|
19020
19069
|
*
|
|
19021
19070
|
* @param request ModifyDBInstanceSSLRequest
|
|
@@ -19071,7 +19120,7 @@ export default class Client extends OpenApi {
|
|
|
19071
19120
|
* Before you call this operation, make sure that the following requirements are met:
|
|
19072
19121
|
* * The instance is in the running state.
|
|
19073
19122
|
* * The instance is a replica set instance.
|
|
19074
|
-
* * The engine version of the instance is
|
|
19123
|
+
* * The engine version of the instance is 3.4 or 4.0.
|
|
19075
19124
|
* > When you enable or disable SSL encryption or update the SSL certificate, the instance restarts. We recommend that you call this operation during off-peak hours.
|
|
19076
19125
|
*
|
|
19077
19126
|
* @param request ModifyDBInstanceSSLRequest
|
|
@@ -19780,7 +19829,6 @@ export default class Client extends OpenApi {
|
|
|
19780
19829
|
}
|
|
19781
19830
|
|
|
19782
19831
|
/**
|
|
19783
|
-
* ### Precautions
|
|
19784
19832
|
* * The instance must be in the Running state when you call this operation.
|
|
19785
19833
|
* * If you call this operation to modify specific instance parameters and the modification for part of the parameters can take effect only after an instance restart, the instance is automatically restarted after this operation is called. You can call the [DescribeParameterTemplates](~~67618~~) operation to query the parameters that take effect only after the instance is restarted.
|
|
19786
19834
|
*
|
|
@@ -19845,7 +19893,6 @@ export default class Client extends OpenApi {
|
|
|
19845
19893
|
}
|
|
19846
19894
|
|
|
19847
19895
|
/**
|
|
19848
|
-
* ### Precautions
|
|
19849
19896
|
* * The instance must be in the Running state when you call this operation.
|
|
19850
19897
|
* * If you call this operation to modify specific instance parameters and the modification for part of the parameters can take effect only after an instance restart, the instance is automatically restarted after this operation is called. You can call the [DescribeParameterTemplates](~~67618~~) operation to query the parameters that take effect only after the instance is restarted.
|
|
19851
19898
|
*
|