tencentcloud-sdk-nodejs-cynosdb 4.0.984 → 4.0.987
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/package.json +1 -1
- package/products.md +41 -40
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +59 -11
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +206 -76
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +19 -3
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +27 -3
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +197 -75
@@ -651,20 +651,6 @@ export interface CreateParamTemplateRequest {
|
|
651
651
|
*/
|
652
652
|
ParamList?: Array<ParamItem>;
|
653
653
|
}
|
654
|
-
/**
|
655
|
-
* SearchClusterTables返回参数结构体
|
656
|
-
*/
|
657
|
-
export interface SearchClusterTablesResponse {
|
658
|
-
/**
|
659
|
-
* 数据表列表
|
660
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
661
|
-
*/
|
662
|
-
Tables?: Array<DatabaseTables>;
|
663
|
-
/**
|
664
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
665
|
-
*/
|
666
|
-
RequestId?: string;
|
667
|
-
}
|
668
654
|
/**
|
669
655
|
* DescribeClusterDetail请求参数结构体
|
670
656
|
*/
|
@@ -1789,25 +1775,18 @@ export interface DescribeZonesResponse {
|
|
1789
1775
|
RequestId?: string;
|
1790
1776
|
}
|
1791
1777
|
/**
|
1792
|
-
*
|
1778
|
+
* SearchClusterTables返回参数结构体
|
1793
1779
|
*/
|
1794
|
-
export interface
|
1795
|
-
/**
|
1796
|
-
* 集群id
|
1797
|
-
*/
|
1798
|
-
ClusterId: string;
|
1799
|
-
/**
|
1800
|
-
* 账号信息
|
1801
|
-
*/
|
1802
|
-
Account: InputAccount;
|
1780
|
+
export interface SearchClusterTablesResponse {
|
1803
1781
|
/**
|
1804
|
-
*
|
1782
|
+
* 数据表列表
|
1783
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1805
1784
|
*/
|
1806
|
-
|
1785
|
+
Tables?: Array<DatabaseTables>;
|
1807
1786
|
/**
|
1808
|
-
*
|
1787
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1809
1788
|
*/
|
1810
|
-
|
1789
|
+
RequestId?: string;
|
1811
1790
|
}
|
1812
1791
|
/**
|
1813
1792
|
* ModifyParamTemplate请求参数结构体
|
@@ -1945,6 +1924,50 @@ export interface DescribeProxyNodesRequest {
|
|
1945
1924
|
*/
|
1946
1925
|
Filters?: Array<QueryFilter>;
|
1947
1926
|
}
|
1927
|
+
/**
|
1928
|
+
* DescribeAuditLogs请求参数结构体
|
1929
|
+
*/
|
1930
|
+
export interface DescribeAuditLogsRequest {
|
1931
|
+
/**
|
1932
|
+
* 实例ID
|
1933
|
+
*/
|
1934
|
+
InstanceId: string;
|
1935
|
+
/**
|
1936
|
+
* 开始时间,格式为:"2017-07-12 10:29:20"。
|
1937
|
+
*/
|
1938
|
+
StartTime: string;
|
1939
|
+
/**
|
1940
|
+
* 结束时间,格式为:"2017-07-12 10:29:20"。
|
1941
|
+
*/
|
1942
|
+
EndTime: string;
|
1943
|
+
/**
|
1944
|
+
* 排序方式。支持值包括:"ASC" - 升序,"DESC" - 降序。
|
1945
|
+
*/
|
1946
|
+
Order?: string;
|
1947
|
+
/**
|
1948
|
+
* 排序字段。支持值包括:
|
1949
|
+
"timestamp" - 时间戳;
|
1950
|
+
"affectRows" - 影响行数;
|
1951
|
+
"execTime" - 执行时间。
|
1952
|
+
*/
|
1953
|
+
OrderBy?: string;
|
1954
|
+
/**
|
1955
|
+
* 已废弃。
|
1956
|
+
*/
|
1957
|
+
Filter?: AuditLogFilter;
|
1958
|
+
/**
|
1959
|
+
* 分页参数,单次返回的数据条数。默认值为100,最大值为100。
|
1960
|
+
*/
|
1961
|
+
Limit?: number;
|
1962
|
+
/**
|
1963
|
+
* 分页偏移量。
|
1964
|
+
*/
|
1965
|
+
Offset?: number;
|
1966
|
+
/**
|
1967
|
+
* 过滤条件。多个值之前是且的关系。
|
1968
|
+
*/
|
1969
|
+
LogFilter?: Array<InstanceAuditLogFilter>;
|
1970
|
+
}
|
1948
1971
|
/**
|
1949
1972
|
* InquirePriceCreate返回参数结构体
|
1950
1973
|
*/
|
@@ -2909,6 +2932,19 @@ export interface ParamTemplateListInfo {
|
|
2909
2932
|
*/
|
2910
2933
|
ParamInfoSet: Array<TemplateParamInfo>;
|
2911
2934
|
}
|
2935
|
+
/**
|
2936
|
+
* CloseProxyEndPoint请求参数结构体
|
2937
|
+
*/
|
2938
|
+
export interface CloseProxyEndPointRequest {
|
2939
|
+
/**
|
2940
|
+
* 集群ID
|
2941
|
+
*/
|
2942
|
+
ClusterId: string;
|
2943
|
+
/**
|
2944
|
+
* 数据库代理组ID
|
2945
|
+
*/
|
2946
|
+
ProxyGroupId: string;
|
2947
|
+
}
|
2912
2948
|
/**
|
2913
2949
|
* DescribeBinlogs返回参数结构体
|
2914
2950
|
*/
|
@@ -3012,6 +3048,15 @@ export interface CopyClusterPasswordComplexityResponse {
|
|
3012
3048
|
*/
|
3013
3049
|
RequestId?: string;
|
3014
3050
|
}
|
3051
|
+
/**
|
3052
|
+
* DescribeClusterTransparentEncryptInfo请求参数结构体
|
3053
|
+
*/
|
3054
|
+
export interface DescribeClusterTransparentEncryptInfoRequest {
|
3055
|
+
/**
|
3056
|
+
* 集群id
|
3057
|
+
*/
|
3058
|
+
ClusterId: string;
|
3059
|
+
}
|
3015
3060
|
/**
|
3016
3061
|
* DeleteParamTemplate请求参数结构体
|
3017
3062
|
*/
|
@@ -4361,6 +4406,24 @@ export interface DescribeBinlogSaveDaysRequest {
|
|
4361
4406
|
*/
|
4362
4407
|
ClusterId: string;
|
4363
4408
|
}
|
4409
|
+
/**
|
4410
|
+
* DescribeClusterTransparentEncryptInfo返回参数结构体
|
4411
|
+
*/
|
4412
|
+
export interface DescribeClusterTransparentEncryptInfoResponse {
|
4413
|
+
/**
|
4414
|
+
* 加密秘钥id
|
4415
|
+
*/
|
4416
|
+
KeyId?: string;
|
4417
|
+
/**
|
4418
|
+
* 加密秘钥地域
|
4419
|
+
|
4420
|
+
*/
|
4421
|
+
KeyRegion?: string;
|
4422
|
+
/**
|
4423
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4424
|
+
*/
|
4425
|
+
RequestId?: string;
|
4426
|
+
}
|
4364
4427
|
/**
|
4365
4428
|
* ActivateInstance返回参数结构体
|
4366
4429
|
*/
|
@@ -4776,6 +4839,27 @@ export interface DeleteAccountsRequest {
|
|
4776
4839
|
*/
|
4777
4840
|
Accounts?: Array<InputAccount>;
|
4778
4841
|
}
|
4842
|
+
/**
|
4843
|
+
* OpenClusterTransparentEncrypt请求参数结构体
|
4844
|
+
*/
|
4845
|
+
export interface OpenClusterTransparentEncryptRequest {
|
4846
|
+
/**
|
4847
|
+
* 集群id
|
4848
|
+
*/
|
4849
|
+
ClusterId: string;
|
4850
|
+
/**
|
4851
|
+
* 秘钥类型(cloud,custom)
|
4852
|
+
*/
|
4853
|
+
KeyType: string;
|
4854
|
+
/**
|
4855
|
+
* 秘钥Id
|
4856
|
+
*/
|
4857
|
+
KeyId?: string;
|
4858
|
+
/**
|
4859
|
+
* 秘钥地域
|
4860
|
+
*/
|
4861
|
+
KeyRegion?: string;
|
4862
|
+
}
|
4779
4863
|
/**
|
4780
4864
|
* ReloadBalanceProxyNode请求参数结构体
|
4781
4865
|
*/
|
@@ -5055,6 +5139,20 @@ export interface Module {
|
|
5055
5139
|
*/
|
5056
5140
|
ModuleName: string;
|
5057
5141
|
}
|
5142
|
+
/**
|
5143
|
+
* OpenClusterTransparentEncrypt返回参数结构体
|
5144
|
+
*/
|
5145
|
+
export interface OpenClusterTransparentEncryptResponse {
|
5146
|
+
/**
|
5147
|
+
* 异步任务id
|
5148
|
+
|
5149
|
+
*/
|
5150
|
+
TaskId?: number;
|
5151
|
+
/**
|
5152
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5153
|
+
*/
|
5154
|
+
RequestId?: string;
|
5155
|
+
}
|
5058
5156
|
/**
|
5059
5157
|
* TDSQL-C MySQL支持的proxy版本信息
|
5060
5158
|
*/
|
@@ -5096,6 +5194,19 @@ export interface DescribeClusterDatabasesRequest {
|
|
5096
5194
|
*/
|
5097
5195
|
Limit?: number;
|
5098
5196
|
}
|
5197
|
+
/**
|
5198
|
+
* RemoveClusterSlaveZone请求参数结构体
|
5199
|
+
*/
|
5200
|
+
export interface RemoveClusterSlaveZoneRequest {
|
5201
|
+
/**
|
5202
|
+
* 集群ID
|
5203
|
+
*/
|
5204
|
+
ClusterId: string;
|
5205
|
+
/**
|
5206
|
+
* 从可用区
|
5207
|
+
*/
|
5208
|
+
SlaveZone: string;
|
5209
|
+
}
|
5099
5210
|
/**
|
5100
5211
|
* 任务信息
|
5101
5212
|
*/
|
@@ -5353,48 +5464,21 @@ export interface CreateResourcePackageRequest {
|
|
5353
5464
|
PackageName?: string;
|
5354
5465
|
}
|
5355
5466
|
/**
|
5356
|
-
*
|
5467
|
+
* CloseProxyEndPoint返回参数结构体
|
5357
5468
|
*/
|
5358
|
-
export interface
|
5359
|
-
/**
|
5360
|
-
* 实例ID
|
5361
|
-
*/
|
5362
|
-
InstanceId: string;
|
5469
|
+
export interface CloseProxyEndPointResponse {
|
5363
5470
|
/**
|
5364
|
-
*
|
5365
|
-
*/
|
5366
|
-
StartTime: string;
|
5367
|
-
/**
|
5368
|
-
* 结束时间,格式为:"2017-07-12 10:29:20"。
|
5369
|
-
*/
|
5370
|
-
EndTime: string;
|
5371
|
-
/**
|
5372
|
-
* 排序方式。支持值包括:"ASC" - 升序,"DESC" - 降序。
|
5373
|
-
*/
|
5374
|
-
Order?: string;
|
5375
|
-
/**
|
5376
|
-
* 排序字段。支持值包括:
|
5377
|
-
"timestamp" - 时间戳;
|
5378
|
-
"affectRows" - 影响行数;
|
5379
|
-
"execTime" - 执行时间。
|
5380
|
-
*/
|
5381
|
-
OrderBy?: string;
|
5382
|
-
/**
|
5383
|
-
* 已废弃。
|
5384
|
-
*/
|
5385
|
-
Filter?: AuditLogFilter;
|
5386
|
-
/**
|
5387
|
-
* 分页参数,单次返回的数据条数。默认值为100,最大值为100。
|
5471
|
+
* 异步流程ID
|
5388
5472
|
*/
|
5389
|
-
|
5473
|
+
FlowId?: number;
|
5390
5474
|
/**
|
5391
|
-
*
|
5475
|
+
* 异步任务ID
|
5392
5476
|
*/
|
5393
|
-
|
5477
|
+
TaskId?: number;
|
5394
5478
|
/**
|
5395
|
-
*
|
5479
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5396
5480
|
*/
|
5397
|
-
|
5481
|
+
RequestId?: string;
|
5398
5482
|
}
|
5399
5483
|
/**
|
5400
5484
|
* DescribeBackupConfig请求参数结构体
|
@@ -8364,6 +8448,19 @@ export interface PackagePriority {
|
|
8364
8448
|
*/
|
8365
8449
|
DeductionPriority?: number;
|
8366
8450
|
}
|
8451
|
+
/**
|
8452
|
+
* DescribeInstancesWithinSameCluster请求参数结构体
|
8453
|
+
*/
|
8454
|
+
export interface DescribeInstancesWithinSameClusterRequest {
|
8455
|
+
/**
|
8456
|
+
* vpcId
|
8457
|
+
*/
|
8458
|
+
UniqVpcId: string;
|
8459
|
+
/**
|
8460
|
+
* vip
|
8461
|
+
*/
|
8462
|
+
Vip: string;
|
8463
|
+
}
|
8367
8464
|
/**
|
8368
8465
|
* 实例组信息
|
8369
8466
|
*/
|
@@ -9085,17 +9182,25 @@ export interface ParamItemDetail {
|
|
9085
9182
|
FuncPattern?: string;
|
9086
9183
|
}
|
9087
9184
|
/**
|
9088
|
-
*
|
9185
|
+
* GrantAccountPrivileges请求参数结构体
|
9089
9186
|
*/
|
9090
|
-
export interface
|
9187
|
+
export interface GrantAccountPrivilegesRequest {
|
9091
9188
|
/**
|
9092
|
-
*
|
9189
|
+
* 集群id
|
9093
9190
|
*/
|
9094
|
-
|
9191
|
+
ClusterId: string;
|
9095
9192
|
/**
|
9096
|
-
*
|
9193
|
+
* 账号信息
|
9097
9194
|
*/
|
9098
|
-
|
9195
|
+
Account: InputAccount;
|
9196
|
+
/**
|
9197
|
+
* 数据库表权限码数组
|
9198
|
+
*/
|
9199
|
+
DbTablePrivileges: Array<string>;
|
9200
|
+
/**
|
9201
|
+
* 数据库表信息
|
9202
|
+
*/
|
9203
|
+
DbTables: Array<DbTable>;
|
9099
9204
|
}
|
9100
9205
|
/**
|
9101
9206
|
* IsolateCluster返回参数结构体
|
@@ -9528,6 +9633,23 @@ export interface CreateBackupResponse {
|
|
9528
9633
|
*/
|
9529
9634
|
RequestId?: string;
|
9530
9635
|
}
|
9636
|
+
/**
|
9637
|
+
* DescribeInstancesWithinSameCluster返回参数结构体
|
9638
|
+
*/
|
9639
|
+
export interface DescribeInstancesWithinSameClusterResponse {
|
9640
|
+
/**
|
9641
|
+
* 实例个数
|
9642
|
+
*/
|
9643
|
+
TotalCount?: number;
|
9644
|
+
/**
|
9645
|
+
* 实例ID列表
|
9646
|
+
*/
|
9647
|
+
InstanceIds?: Array<string>;
|
9648
|
+
/**
|
9649
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9650
|
+
*/
|
9651
|
+
RequestId?: string;
|
9652
|
+
}
|
9531
9653
|
/**
|
9532
9654
|
* RollbackToNewCluster返回参数结构体
|
9533
9655
|
*/
|
@@ -10221,17 +10343,17 @@ export interface TablePrivileges {
|
|
10221
10343
|
Privileges: Array<string>;
|
10222
10344
|
}
|
10223
10345
|
/**
|
10224
|
-
*
|
10346
|
+
* DescribeBinlogSaveDays返回参数结构体
|
10225
10347
|
*/
|
10226
|
-
export interface
|
10348
|
+
export interface DescribeBinlogSaveDaysResponse {
|
10227
10349
|
/**
|
10228
|
-
*
|
10350
|
+
* Binlog保留天数
|
10229
10351
|
*/
|
10230
|
-
|
10352
|
+
BinlogSaveDays: number;
|
10231
10353
|
/**
|
10232
|
-
*
|
10354
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10233
10355
|
*/
|
10234
|
-
|
10356
|
+
RequestId?: string;
|
10235
10357
|
}
|
10236
10358
|
/**
|
10237
10359
|
* DeleteBackup请求参数结构体
|