tencentcloud-sdk-nodejs-cynosdb 4.0.851 → 4.0.853
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 +24 -24
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +9 -7
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +356 -195
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +6 -6
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +354 -195
@@ -37,6 +37,16 @@ export interface UpgradeProxyVersionResponse {
|
|
37
37
|
* DescribeInstanceCLSLogDelivery返回参数结构体
|
38
38
|
*/
|
39
39
|
export interface DescribeInstanceCLSLogDeliveryResponse {
|
40
|
+
/**
|
41
|
+
* 总数量
|
42
|
+
|
43
|
+
*/
|
44
|
+
TotalCount?: number
|
45
|
+
/**
|
46
|
+
* 实例投递信息
|
47
|
+
|
48
|
+
*/
|
49
|
+
InstanceCLSDeliveryInfos?: Array<InstanceCLSDeliveryInfo>
|
40
50
|
/**
|
41
51
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
42
52
|
*/
|
@@ -530,7 +540,16 @@ export interface UserHostPrivilege {
|
|
530
540
|
/**
|
531
541
|
* StopCLSDelivery请求参数结构体
|
532
542
|
*/
|
533
|
-
export
|
543
|
+
export interface StopCLSDeliveryRequest {
|
544
|
+
/**
|
545
|
+
* 实例id
|
546
|
+
*/
|
547
|
+
InstanceId: string
|
548
|
+
/**
|
549
|
+
* 日志主题id
|
550
|
+
*/
|
551
|
+
CLSTopicIds: Array<string>
|
552
|
+
}
|
534
553
|
|
535
554
|
/**
|
536
555
|
* DescribeClusters请求参数结构体
|
@@ -1560,6 +1579,10 @@ export interface ModifyAccountPrivilegesRequest {
|
|
1560
1579
|
* StartCLSDelivery返回参数结构体
|
1561
1580
|
*/
|
1562
1581
|
export interface StartCLSDeliveryResponse {
|
1582
|
+
/**
|
1583
|
+
* 异步任务id
|
1584
|
+
*/
|
1585
|
+
TaskId?: number
|
1563
1586
|
/**
|
1564
1587
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1565
1588
|
*/
|
@@ -1872,13 +1895,195 @@ export interface InquirePriceCreateResponse {
|
|
1872
1895
|
}
|
1873
1896
|
|
1874
1897
|
/**
|
1875
|
-
*
|
1898
|
+
* CreateClusters请求参数结构体
|
1876
1899
|
*/
|
1877
|
-
export interface
|
1900
|
+
export interface CreateClustersRequest {
|
1878
1901
|
/**
|
1879
|
-
*
|
1902
|
+
* 可用区
|
1880
1903
|
*/
|
1881
|
-
|
1904
|
+
Zone: string
|
1905
|
+
/**
|
1906
|
+
* 所属VPC网络ID
|
1907
|
+
*/
|
1908
|
+
VpcId: string
|
1909
|
+
/**
|
1910
|
+
* 所属子网ID
|
1911
|
+
*/
|
1912
|
+
SubnetId: string
|
1913
|
+
/**
|
1914
|
+
* 数据库类型,取值范围:
|
1915
|
+
<li> MYSQL </li>
|
1916
|
+
*/
|
1917
|
+
DbType: string
|
1918
|
+
/**
|
1919
|
+
* 数据库版本,取值范围:
|
1920
|
+
<li> MYSQL可选值:5.7,8.0 </li>
|
1921
|
+
*/
|
1922
|
+
DbVersion: string
|
1923
|
+
/**
|
1924
|
+
* 所属项目ID
|
1925
|
+
*/
|
1926
|
+
ProjectId?: number
|
1927
|
+
/**
|
1928
|
+
* 当DbMode为NORMAL或不填时必选
|
1929
|
+
普通实例Cpu核数
|
1930
|
+
*/
|
1931
|
+
Cpu?: number
|
1932
|
+
/**
|
1933
|
+
* 当DbMode为NORMAL或不填时必选
|
1934
|
+
普通实例内存,单位GB
|
1935
|
+
*/
|
1936
|
+
Memory?: number
|
1937
|
+
/**
|
1938
|
+
* 该参数无实际意义,已废弃。
|
1939
|
+
存储大小,单位GB。
|
1940
|
+
*/
|
1941
|
+
Storage?: number
|
1942
|
+
/**
|
1943
|
+
* 集群名称,长度小于64个字符,每个字符取值范围:大/小写字母,数字,特殊符号('-','_','.')
|
1944
|
+
*/
|
1945
|
+
ClusterName?: string
|
1946
|
+
/**
|
1947
|
+
* 账号密码(8-64个字符,包含大小写英文字母、数字和符号~!@#$%^&*_-+=`|\(){}[]:;'<>,.?/中的任意三种)
|
1948
|
+
*/
|
1949
|
+
AdminPassword?: string
|
1950
|
+
/**
|
1951
|
+
* 端口,默认3306,取值范围[0, 65535)
|
1952
|
+
*/
|
1953
|
+
Port?: number
|
1954
|
+
/**
|
1955
|
+
* 计费模式,按量计费:0,包年包月:1。默认按量计费。
|
1956
|
+
*/
|
1957
|
+
PayMode?: number
|
1958
|
+
/**
|
1959
|
+
* 购买集群数,可选值范围[1,50],默认为1
|
1960
|
+
*/
|
1961
|
+
Count?: number
|
1962
|
+
/**
|
1963
|
+
* 回档类型:
|
1964
|
+
noneRollback:不回档;
|
1965
|
+
snapRollback,快照回档;
|
1966
|
+
timeRollback,时间点回档
|
1967
|
+
*/
|
1968
|
+
RollbackStrategy?: string
|
1969
|
+
/**
|
1970
|
+
* 快照回档,表示snapshotId;时间点回档,表示queryId,为0,表示需要判断时间点是否有效
|
1971
|
+
*/
|
1972
|
+
RollbackId?: number
|
1973
|
+
/**
|
1974
|
+
* 回档时,传入源集群ID,用于查找源poolId
|
1975
|
+
*/
|
1976
|
+
OriginalClusterId?: string
|
1977
|
+
/**
|
1978
|
+
* 时间点回档,指定时间;快照回档,快照时间
|
1979
|
+
*/
|
1980
|
+
ExpectTime?: string
|
1981
|
+
/**
|
1982
|
+
* 该参数无实际意义,已废弃。
|
1983
|
+
时间点回档,指定时间允许范围
|
1984
|
+
*/
|
1985
|
+
ExpectTimeThresh?: number
|
1986
|
+
/**
|
1987
|
+
* 普通实例存储上限,单位GB
|
1988
|
+
当DbType为MYSQL,且存储计费模式为预付费时,该参数需不大于cpu与memory对应存储规格上限
|
1989
|
+
*/
|
1990
|
+
StorageLimit?: number
|
1991
|
+
/**
|
1992
|
+
* 实例数量,数量范围为(0,16]
|
1993
|
+
*/
|
1994
|
+
InstanceCount?: number
|
1995
|
+
/**
|
1996
|
+
* 包年包月购买时长
|
1997
|
+
*/
|
1998
|
+
TimeSpan?: number
|
1999
|
+
/**
|
2000
|
+
* 包年包月购买时长单位,['s','d','m','y']
|
2001
|
+
*/
|
2002
|
+
TimeUnit?: string
|
2003
|
+
/**
|
2004
|
+
* 包年包月购买是否自动续费,默认为0。
|
2005
|
+
0标识默认续费方式,1表示自动续费,2表示手不自动续费。
|
2006
|
+
*/
|
2007
|
+
AutoRenewFlag?: number
|
2008
|
+
/**
|
2009
|
+
* 是否自动选择代金券 1是 0否 默认为0
|
2010
|
+
*/
|
2011
|
+
AutoVoucher?: number
|
2012
|
+
/**
|
2013
|
+
* 实例数量(该参数已不再使用,只做存量兼容处理)
|
2014
|
+
*/
|
2015
|
+
HaCount?: number
|
2016
|
+
/**
|
2017
|
+
* 订单来源
|
2018
|
+
*/
|
2019
|
+
OrderSource?: string
|
2020
|
+
/**
|
2021
|
+
* 集群创建需要绑定的tag数组信息
|
2022
|
+
*/
|
2023
|
+
ResourceTags?: Array<Tag>
|
2024
|
+
/**
|
2025
|
+
* Db类型
|
2026
|
+
当DbType为MYSQL时可选(默认NORMAL):
|
2027
|
+
<li>NORMAL</li>
|
2028
|
+
<li>SERVERLESS</li>
|
2029
|
+
*/
|
2030
|
+
DbMode?: string
|
2031
|
+
/**
|
2032
|
+
* 当DbMode为SERVERLESS时必填
|
2033
|
+
cpu最小值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
2034
|
+
*/
|
2035
|
+
MinCpu?: number
|
2036
|
+
/**
|
2037
|
+
* 当DbMode为SERVERLESS时必填:
|
2038
|
+
cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
2039
|
+
*/
|
2040
|
+
MaxCpu?: number
|
2041
|
+
/**
|
2042
|
+
* 当DbMode为SERVERLESS时,指定集群是否自动暂停,可选范围
|
2043
|
+
<li>yes</li>
|
2044
|
+
<li>no</li>
|
2045
|
+
默认值:yes
|
2046
|
+
*/
|
2047
|
+
AutoPause?: string
|
2048
|
+
/**
|
2049
|
+
* 当DbMode为SERVERLESS时,指定集群自动暂停的延迟,单位秒,可选范围[600,691200]
|
2050
|
+
默认值:600
|
2051
|
+
*/
|
2052
|
+
AutoPauseDelay?: number
|
2053
|
+
/**
|
2054
|
+
* 集群存储计费模式,按量计费:0,包年包月:1。默认按量计费
|
2055
|
+
当DbType为MYSQL时,在集群计算计费模式为后付费(包括DbMode为SERVERLESS)时,存储计费模式仅可为按量计费
|
2056
|
+
回档与克隆均不支持包年包月存储
|
2057
|
+
*/
|
2058
|
+
StoragePayMode?: number
|
2059
|
+
/**
|
2060
|
+
* 安全组id数组
|
2061
|
+
*/
|
2062
|
+
SecurityGroupIds?: Array<string>
|
2063
|
+
/**
|
2064
|
+
* 告警策略Id数组
|
2065
|
+
*/
|
2066
|
+
AlarmPolicyIds?: Array<string>
|
2067
|
+
/**
|
2068
|
+
* 参数数组,暂时支持character_set_server (utf8|latin1|gbk|utf8mb4) ,lower_case_table_names,1-大小写不敏感,0-大小写敏感
|
2069
|
+
*/
|
2070
|
+
ClusterParams?: Array<ParamItem>
|
2071
|
+
/**
|
2072
|
+
* 交易模式,0-下单且支付,1-下单
|
2073
|
+
*/
|
2074
|
+
DealMode?: number
|
2075
|
+
/**
|
2076
|
+
* 参数模板ID,可以通过查询参数模板信息DescribeParamTemplates获得参数模板ID
|
2077
|
+
*/
|
2078
|
+
ParamTemplateId?: number
|
2079
|
+
/**
|
2080
|
+
* 多可用区地址
|
2081
|
+
*/
|
2082
|
+
SlaveZone?: string
|
2083
|
+
/**
|
2084
|
+
* 实例初始化配置信息,主要用于购买集群时选不同规格实例
|
2085
|
+
*/
|
2086
|
+
InstanceInitInfos?: Array<InstanceInitInfo>
|
1882
2087
|
}
|
1883
2088
|
|
1884
2089
|
/**
|
@@ -2059,6 +2264,58 @@ export interface ModifyClusterDatabaseRequest {
|
|
2059
2264
|
OldUserHostPrivileges?: Array<UserHostPrivilege>
|
2060
2265
|
}
|
2061
2266
|
|
2267
|
+
/**
|
2268
|
+
* 实例日志投递信息
|
2269
|
+
*/
|
2270
|
+
export interface InstanceCLSDeliveryInfo {
|
2271
|
+
/**
|
2272
|
+
* 实例id
|
2273
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2274
|
+
*/
|
2275
|
+
InstanceId?: string
|
2276
|
+
/**
|
2277
|
+
* 实例name
|
2278
|
+
|
2279
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2280
|
+
*/
|
2281
|
+
InstanceName?: string
|
2282
|
+
/**
|
2283
|
+
* 日志主题id
|
2284
|
+
|
2285
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2286
|
+
*/
|
2287
|
+
TopicId?: string
|
2288
|
+
/**
|
2289
|
+
* 日志主题name
|
2290
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2291
|
+
*/
|
2292
|
+
TopicName?: string
|
2293
|
+
/**
|
2294
|
+
* 日志集id
|
2295
|
+
|
2296
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2297
|
+
*/
|
2298
|
+
GroupId?: string
|
2299
|
+
/**
|
2300
|
+
* 日志集name
|
2301
|
+
|
2302
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2303
|
+
*/
|
2304
|
+
GroupName?: string
|
2305
|
+
/**
|
2306
|
+
* 日志投递地域
|
2307
|
+
|
2308
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2309
|
+
*/
|
2310
|
+
Region?: string
|
2311
|
+
/**
|
2312
|
+
* 投递状态creating,running,offlining,offlined
|
2313
|
+
|
2314
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2315
|
+
*/
|
2316
|
+
Status?: string
|
2317
|
+
}
|
2318
|
+
|
2062
2319
|
/**
|
2063
2320
|
* ModifyMaintainPeriodConfig返回参数结构体
|
2064
2321
|
*/
|
@@ -2161,12 +2418,25 @@ export interface DescribeAccountAllGrantPrivilegesRequest {
|
|
2161
2418
|
/**
|
2162
2419
|
* DeleteCLSDelivery请求参数结构体
|
2163
2420
|
*/
|
2164
|
-
export
|
2421
|
+
export interface DeleteCLSDeliveryRequest {
|
2422
|
+
/**
|
2423
|
+
* 实例id
|
2424
|
+
*/
|
2425
|
+
InstanceId: string
|
2426
|
+
/**
|
2427
|
+
* 日志主题id
|
2428
|
+
*/
|
2429
|
+
CLSTopicIds: Array<string>
|
2430
|
+
}
|
2165
2431
|
|
2166
2432
|
/**
|
2167
2433
|
* CreateCLSDelivery返回参数结构体
|
2168
2434
|
*/
|
2169
2435
|
export interface CreateCLSDeliveryResponse {
|
2436
|
+
/**
|
2437
|
+
* 异步任务id
|
2438
|
+
*/
|
2439
|
+
TaskId?: number
|
2170
2440
|
/**
|
2171
2441
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2172
2442
|
*/
|
@@ -3105,6 +3375,11 @@ export interface RuleTemplateInfo {
|
|
3105
3375
|
* StopCLSDelivery返回参数结构体
|
3106
3376
|
*/
|
3107
3377
|
export interface StopCLSDeliveryResponse {
|
3378
|
+
/**
|
3379
|
+
* 异步任务id
|
3380
|
+
|
3381
|
+
*/
|
3382
|
+
TaskId?: number
|
3108
3383
|
/**
|
3109
3384
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3110
3385
|
*/
|
@@ -3196,195 +3471,13 @@ export interface SetRenewFlagResponse {
|
|
3196
3471
|
}
|
3197
3472
|
|
3198
3473
|
/**
|
3199
|
-
*
|
3474
|
+
* CreateClusterDatabase返回参数结构体
|
3200
3475
|
*/
|
3201
|
-
export interface
|
3202
|
-
/**
|
3203
|
-
* 可用区
|
3204
|
-
*/
|
3205
|
-
Zone: string
|
3206
|
-
/**
|
3207
|
-
* 所属VPC网络ID
|
3208
|
-
*/
|
3209
|
-
VpcId: string
|
3210
|
-
/**
|
3211
|
-
* 所属子网ID
|
3212
|
-
*/
|
3213
|
-
SubnetId: string
|
3214
|
-
/**
|
3215
|
-
* 数据库类型,取值范围:
|
3216
|
-
<li> MYSQL </li>
|
3217
|
-
*/
|
3218
|
-
DbType: string
|
3219
|
-
/**
|
3220
|
-
* 数据库版本,取值范围:
|
3221
|
-
<li> MYSQL可选值:5.7,8.0 </li>
|
3222
|
-
*/
|
3223
|
-
DbVersion: string
|
3224
|
-
/**
|
3225
|
-
* 所属项目ID
|
3226
|
-
*/
|
3227
|
-
ProjectId?: number
|
3228
|
-
/**
|
3229
|
-
* 当DbMode为NORMAL或不填时必选
|
3230
|
-
普通实例Cpu核数
|
3231
|
-
*/
|
3232
|
-
Cpu?: number
|
3233
|
-
/**
|
3234
|
-
* 当DbMode为NORMAL或不填时必选
|
3235
|
-
普通实例内存,单位GB
|
3236
|
-
*/
|
3237
|
-
Memory?: number
|
3238
|
-
/**
|
3239
|
-
* 该参数无实际意义,已废弃。
|
3240
|
-
存储大小,单位GB。
|
3241
|
-
*/
|
3242
|
-
Storage?: number
|
3243
|
-
/**
|
3244
|
-
* 集群名称,长度小于64个字符,每个字符取值范围:大/小写字母,数字,特殊符号('-','_','.')
|
3245
|
-
*/
|
3246
|
-
ClusterName?: string
|
3247
|
-
/**
|
3248
|
-
* 账号密码(8-64个字符,包含大小写英文字母、数字和符号~!@#$%^&*_-+=`|\(){}[]:;'<>,.?/中的任意三种)
|
3249
|
-
*/
|
3250
|
-
AdminPassword?: string
|
3251
|
-
/**
|
3252
|
-
* 端口,默认3306,取值范围[0, 65535)
|
3253
|
-
*/
|
3254
|
-
Port?: number
|
3255
|
-
/**
|
3256
|
-
* 计费模式,按量计费:0,包年包月:1。默认按量计费。
|
3257
|
-
*/
|
3258
|
-
PayMode?: number
|
3259
|
-
/**
|
3260
|
-
* 购买集群数,可选值范围[1,50],默认为1
|
3261
|
-
*/
|
3262
|
-
Count?: number
|
3263
|
-
/**
|
3264
|
-
* 回档类型:
|
3265
|
-
noneRollback:不回档;
|
3266
|
-
snapRollback,快照回档;
|
3267
|
-
timeRollback,时间点回档
|
3268
|
-
*/
|
3269
|
-
RollbackStrategy?: string
|
3270
|
-
/**
|
3271
|
-
* 快照回档,表示snapshotId;时间点回档,表示queryId,为0,表示需要判断时间点是否有效
|
3272
|
-
*/
|
3273
|
-
RollbackId?: number
|
3274
|
-
/**
|
3275
|
-
* 回档时,传入源集群ID,用于查找源poolId
|
3276
|
-
*/
|
3277
|
-
OriginalClusterId?: string
|
3278
|
-
/**
|
3279
|
-
* 时间点回档,指定时间;快照回档,快照时间
|
3280
|
-
*/
|
3281
|
-
ExpectTime?: string
|
3282
|
-
/**
|
3283
|
-
* 该参数无实际意义,已废弃。
|
3284
|
-
时间点回档,指定时间允许范围
|
3285
|
-
*/
|
3286
|
-
ExpectTimeThresh?: number
|
3287
|
-
/**
|
3288
|
-
* 普通实例存储上限,单位GB
|
3289
|
-
当DbType为MYSQL,且存储计费模式为预付费时,该参数需不大于cpu与memory对应存储规格上限
|
3290
|
-
*/
|
3291
|
-
StorageLimit?: number
|
3292
|
-
/**
|
3293
|
-
* 实例数量,数量范围为(0,16]
|
3294
|
-
*/
|
3295
|
-
InstanceCount?: number
|
3296
|
-
/**
|
3297
|
-
* 包年包月购买时长
|
3298
|
-
*/
|
3299
|
-
TimeSpan?: number
|
3300
|
-
/**
|
3301
|
-
* 包年包月购买时长单位,['s','d','m','y']
|
3302
|
-
*/
|
3303
|
-
TimeUnit?: string
|
3304
|
-
/**
|
3305
|
-
* 包年包月购买是否自动续费,默认为0。
|
3306
|
-
0标识默认续费方式,1表示自动续费,2表示手不自动续费。
|
3307
|
-
*/
|
3308
|
-
AutoRenewFlag?: number
|
3309
|
-
/**
|
3310
|
-
* 是否自动选择代金券 1是 0否 默认为0
|
3311
|
-
*/
|
3312
|
-
AutoVoucher?: number
|
3313
|
-
/**
|
3314
|
-
* 实例数量(该参数已不再使用,只做存量兼容处理)
|
3315
|
-
*/
|
3316
|
-
HaCount?: number
|
3317
|
-
/**
|
3318
|
-
* 订单来源
|
3319
|
-
*/
|
3320
|
-
OrderSource?: string
|
3321
|
-
/**
|
3322
|
-
* 集群创建需要绑定的tag数组信息
|
3323
|
-
*/
|
3324
|
-
ResourceTags?: Array<Tag>
|
3325
|
-
/**
|
3326
|
-
* Db类型
|
3327
|
-
当DbType为MYSQL时可选(默认NORMAL):
|
3328
|
-
<li>NORMAL</li>
|
3329
|
-
<li>SERVERLESS</li>
|
3330
|
-
*/
|
3331
|
-
DbMode?: string
|
3332
|
-
/**
|
3333
|
-
* 当DbMode为SERVERLESS时必填
|
3334
|
-
cpu最小值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
3335
|
-
*/
|
3336
|
-
MinCpu?: number
|
3337
|
-
/**
|
3338
|
-
* 当DbMode为SERVERLESS时必填:
|
3339
|
-
cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
3340
|
-
*/
|
3341
|
-
MaxCpu?: number
|
3342
|
-
/**
|
3343
|
-
* 当DbMode为SERVERLESS时,指定集群是否自动暂停,可选范围
|
3344
|
-
<li>yes</li>
|
3345
|
-
<li>no</li>
|
3346
|
-
默认值:yes
|
3347
|
-
*/
|
3348
|
-
AutoPause?: string
|
3349
|
-
/**
|
3350
|
-
* 当DbMode为SERVERLESS时,指定集群自动暂停的延迟,单位秒,可选范围[600,691200]
|
3351
|
-
默认值:600
|
3352
|
-
*/
|
3353
|
-
AutoPauseDelay?: number
|
3354
|
-
/**
|
3355
|
-
* 集群存储计费模式,按量计费:0,包年包月:1。默认按量计费
|
3356
|
-
当DbType为MYSQL时,在集群计算计费模式为后付费(包括DbMode为SERVERLESS)时,存储计费模式仅可为按量计费
|
3357
|
-
回档与克隆均不支持包年包月存储
|
3358
|
-
*/
|
3359
|
-
StoragePayMode?: number
|
3360
|
-
/**
|
3361
|
-
* 安全组id数组
|
3362
|
-
*/
|
3363
|
-
SecurityGroupIds?: Array<string>
|
3364
|
-
/**
|
3365
|
-
* 告警策略Id数组
|
3366
|
-
*/
|
3367
|
-
AlarmPolicyIds?: Array<string>
|
3368
|
-
/**
|
3369
|
-
* 参数数组,暂时支持character_set_server (utf8|latin1|gbk|utf8mb4) ,lower_case_table_names,1-大小写不敏感,0-大小写敏感
|
3370
|
-
*/
|
3371
|
-
ClusterParams?: Array<ParamItem>
|
3372
|
-
/**
|
3373
|
-
* 交易模式,0-下单且支付,1-下单
|
3374
|
-
*/
|
3375
|
-
DealMode?: number
|
3376
|
-
/**
|
3377
|
-
* 参数模板ID,可以通过查询参数模板信息DescribeParamTemplates获得参数模板ID
|
3378
|
-
*/
|
3379
|
-
ParamTemplateId?: number
|
3380
|
-
/**
|
3381
|
-
* 多可用区地址
|
3382
|
-
*/
|
3383
|
-
SlaveZone?: string
|
3476
|
+
export interface CreateClusterDatabaseResponse {
|
3384
3477
|
/**
|
3385
|
-
*
|
3478
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3386
3479
|
*/
|
3387
|
-
|
3480
|
+
RequestId?: string
|
3388
3481
|
}
|
3389
3482
|
|
3390
3483
|
/**
|
@@ -4031,7 +4124,16 @@ export interface SwitchProxyVpcResponse {
|
|
4031
4124
|
/**
|
4032
4125
|
* StartCLSDelivery请求参数结构体
|
4033
4126
|
*/
|
4034
|
-
export
|
4127
|
+
export interface StartCLSDeliveryRequest {
|
4128
|
+
/**
|
4129
|
+
* 实例id
|
4130
|
+
*/
|
4131
|
+
InstanceId: string
|
4132
|
+
/**
|
4133
|
+
* 开通的日志主题id
|
4134
|
+
*/
|
4135
|
+
CLSTopicIds: Array<string>
|
4136
|
+
}
|
4035
4137
|
|
4036
4138
|
/**
|
4037
4139
|
* 可用区属性项
|
@@ -4067,6 +4169,46 @@ export interface DescribeChangedParamsAfterUpgradeRequest {
|
|
4067
4169
|
DstMem: number
|
4068
4170
|
}
|
4069
4171
|
|
4172
|
+
/**
|
4173
|
+
* CLS日志投递配置
|
4174
|
+
*/
|
4175
|
+
export interface CLSInfo {
|
4176
|
+
/**
|
4177
|
+
* 日志主题操作:可选create,reuse。
|
4178
|
+
create:新增日志主题,使用TopicName创建日志主题。
|
4179
|
+
reuse:使用已有日志主题,使用TopicId指定日志主题。
|
4180
|
+
不允许使用已有日志主题且新建日志集的组合。
|
4181
|
+
*/
|
4182
|
+
TopicOperation: string
|
4183
|
+
/**
|
4184
|
+
* 日志集操作:可选create,reuse。
|
4185
|
+
create:新增日志集,使用GroupName创建日志集。
|
4186
|
+
reuse:使用已有日志集,使用GroupId指定日志集。
|
4187
|
+
不允许使用已有日志主题且新建日志集的组合。
|
4188
|
+
*/
|
4189
|
+
GroupOperation: string
|
4190
|
+
/**
|
4191
|
+
* 日志投递地域
|
4192
|
+
*/
|
4193
|
+
Region: string
|
4194
|
+
/**
|
4195
|
+
* 日志主题id
|
4196
|
+
*/
|
4197
|
+
TopicId?: string
|
4198
|
+
/**
|
4199
|
+
* 日志主题name
|
4200
|
+
*/
|
4201
|
+
TopicName?: string
|
4202
|
+
/**
|
4203
|
+
* 日志集id
|
4204
|
+
*/
|
4205
|
+
GroupId?: string
|
4206
|
+
/**
|
4207
|
+
* 日志集name
|
4208
|
+
*/
|
4209
|
+
GroupName?: string
|
4210
|
+
}
|
4211
|
+
|
4070
4212
|
/**
|
4071
4213
|
* SwitchProxyVpc请求参数结构体
|
4072
4214
|
*/
|
@@ -6990,7 +7132,16 @@ export interface CreateBackupRequest {
|
|
6990
7132
|
/**
|
6991
7133
|
* CreateCLSDelivery请求参数结构体
|
6992
7134
|
*/
|
6993
|
-
export
|
7135
|
+
export interface CreateCLSDeliveryRequest {
|
7136
|
+
/**
|
7137
|
+
* 实例id
|
7138
|
+
*/
|
7139
|
+
InstanceId: string
|
7140
|
+
/**
|
7141
|
+
* 日志投递配置
|
7142
|
+
*/
|
7143
|
+
CLSInfoList: Array<CLSInfo>
|
7144
|
+
}
|
6994
7145
|
|
6995
7146
|
/**
|
6996
7147
|
* DescribeMaintainPeriod返回参数结构体
|
@@ -9097,7 +9248,12 @@ export interface ModifyAccountDescriptionRequest {
|
|
9097
9248
|
/**
|
9098
9249
|
* DescribeInstanceCLSLogDelivery请求参数结构体
|
9099
9250
|
*/
|
9100
|
-
export
|
9251
|
+
export interface DescribeInstanceCLSLogDeliveryRequest {
|
9252
|
+
/**
|
9253
|
+
* 实例id
|
9254
|
+
*/
|
9255
|
+
InstanceId: string
|
9256
|
+
}
|
9101
9257
|
|
9102
9258
|
/**
|
9103
9259
|
* UpgradeInstance返回参数结构体
|
@@ -9792,6 +9948,11 @@ export interface ZoneStockInfo {
|
|
9792
9948
|
* DeleteCLSDelivery返回参数结构体
|
9793
9949
|
*/
|
9794
9950
|
export interface DeleteCLSDeliveryResponse {
|
9951
|
+
/**
|
9952
|
+
* 异步任务id
|
9953
|
+
|
9954
|
+
*/
|
9955
|
+
TaskId?: number
|
9795
9956
|
/**
|
9796
9957
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9797
9958
|
*/
|