tencentcloud-sdk-nodejs-sqlserver 4.0.343 → 4.0.346
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.
|
@@ -277,7 +277,7 @@ export interface CreateBasicDBInstancesResponse {
|
|
|
277
277
|
/**
|
|
278
278
|
* 订单名称
|
|
279
279
|
*/
|
|
280
|
-
DealName
|
|
280
|
+
DealName: string
|
|
281
281
|
|
|
282
282
|
/**
|
|
283
283
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -672,7 +672,7 @@ export interface RunMigrationResponse {
|
|
|
672
672
|
/**
|
|
673
673
|
* 迁移流程启动后,返回流程ID
|
|
674
674
|
*/
|
|
675
|
-
FlowId
|
|
675
|
+
FlowId: number
|
|
676
676
|
|
|
677
677
|
/**
|
|
678
678
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -842,12 +842,12 @@ export interface DescribeRegionsResponse {
|
|
|
842
842
|
/**
|
|
843
843
|
* 返回地域信息总的条目
|
|
844
844
|
*/
|
|
845
|
-
TotalCount
|
|
845
|
+
TotalCount: number
|
|
846
846
|
|
|
847
847
|
/**
|
|
848
848
|
* 地域信息数组
|
|
849
849
|
*/
|
|
850
|
-
RegionSet
|
|
850
|
+
RegionSet: Array<RegionInfo>
|
|
851
851
|
|
|
852
852
|
/**
|
|
853
853
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -932,7 +932,7 @@ export interface ModifyDBInstanceProjectResponse {
|
|
|
932
932
|
/**
|
|
933
933
|
* 修改成功的实例个数
|
|
934
934
|
*/
|
|
935
|
-
Count
|
|
935
|
+
Count: number
|
|
936
936
|
|
|
937
937
|
/**
|
|
938
938
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1032,62 +1032,67 @@ export interface DescribeReadOnlyGroupByReadOnlyInstanceResponse {
|
|
|
1032
1032
|
/**
|
|
1033
1033
|
* 只读组ID
|
|
1034
1034
|
*/
|
|
1035
|
-
ReadOnlyGroupId
|
|
1035
|
+
ReadOnlyGroupId: string
|
|
1036
1036
|
|
|
1037
1037
|
/**
|
|
1038
1038
|
* 只读组名称
|
|
1039
1039
|
*/
|
|
1040
|
-
ReadOnlyGroupName
|
|
1040
|
+
ReadOnlyGroupName: string
|
|
1041
1041
|
|
|
1042
1042
|
/**
|
|
1043
1043
|
* 只读组的地域ID
|
|
1044
1044
|
*/
|
|
1045
|
-
RegionId
|
|
1045
|
+
RegionId: string
|
|
1046
1046
|
|
|
1047
1047
|
/**
|
|
1048
1048
|
* 只读组的可用区ID
|
|
1049
1049
|
*/
|
|
1050
|
-
ZoneId
|
|
1050
|
+
ZoneId: string
|
|
1051
1051
|
|
|
1052
1052
|
/**
|
|
1053
1053
|
* 是否启动超时剔除功能 ,0-不开启剔除功能,1-开启剔除功能
|
|
1054
1054
|
*/
|
|
1055
|
-
IsOfflineDelay
|
|
1055
|
+
IsOfflineDelay: number
|
|
1056
1056
|
|
|
1057
1057
|
/**
|
|
1058
1058
|
* 启动超时剔除功能后,使用的超时阈值,单位是秒
|
|
1059
1059
|
*/
|
|
1060
|
-
ReadOnlyMaxDelayTime
|
|
1060
|
+
ReadOnlyMaxDelayTime: number
|
|
1061
1061
|
|
|
1062
1062
|
/**
|
|
1063
1063
|
* 启动超时剔除功能后,只读组至少保留的只读副本数
|
|
1064
1064
|
*/
|
|
1065
|
-
MinReadOnlyInGroup
|
|
1065
|
+
MinReadOnlyInGroup: number
|
|
1066
1066
|
|
|
1067
1067
|
/**
|
|
1068
1068
|
* 只读组vip
|
|
1069
1069
|
*/
|
|
1070
|
-
Vip
|
|
1070
|
+
Vip: string
|
|
1071
1071
|
|
|
1072
1072
|
/**
|
|
1073
1073
|
* 只读组vport
|
|
1074
1074
|
*/
|
|
1075
|
-
Vport
|
|
1075
|
+
Vport: number
|
|
1076
1076
|
|
|
1077
1077
|
/**
|
|
1078
1078
|
* 只读组在私有网络ID
|
|
1079
1079
|
*/
|
|
1080
|
-
VpcId
|
|
1080
|
+
VpcId: string
|
|
1081
1081
|
|
|
1082
1082
|
/**
|
|
1083
1083
|
* 只读组在私有网络子网ID
|
|
1084
1084
|
*/
|
|
1085
|
-
SubnetId
|
|
1085
|
+
SubnetId: string
|
|
1086
1086
|
|
|
1087
1087
|
/**
|
|
1088
1088
|
* 主实例ID,形如mssql-sgeshe3th
|
|
1089
1089
|
*/
|
|
1090
|
-
MasterInstanceId
|
|
1090
|
+
MasterInstanceId: string
|
|
1091
|
+
|
|
1092
|
+
/**
|
|
1093
|
+
* 主实例的地域ID
|
|
1094
|
+
*/
|
|
1095
|
+
MasterRegionId: string
|
|
1091
1096
|
|
|
1092
1097
|
/**
|
|
1093
1098
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1575,7 +1580,7 @@ export interface CompleteMigrationResponse {
|
|
|
1575
1580
|
/**
|
|
1576
1581
|
* 完成迁移流程发起后,返回的流程id
|
|
1577
1582
|
*/
|
|
1578
|
-
FlowId
|
|
1583
|
+
FlowId: number
|
|
1579
1584
|
|
|
1580
1585
|
/**
|
|
1581
1586
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1605,7 +1610,7 @@ export interface StartMigrationCheckResponse {
|
|
|
1605
1610
|
/**
|
|
1606
1611
|
* 迁移检查流程发起后,返回的流程id
|
|
1607
1612
|
*/
|
|
1608
|
-
FlowId
|
|
1613
|
+
FlowId: number
|
|
1609
1614
|
|
|
1610
1615
|
/**
|
|
1611
1616
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1776,12 +1781,12 @@ export interface DescribeOrdersResponse {
|
|
|
1776
1781
|
/**
|
|
1777
1782
|
* 订单信息数组
|
|
1778
1783
|
*/
|
|
1779
|
-
Deals
|
|
1784
|
+
Deals: Array<DealInfo>
|
|
1780
1785
|
|
|
1781
1786
|
/**
|
|
1782
1787
|
* 返回多少个订单的信息
|
|
1783
1788
|
*/
|
|
1784
|
-
TotalCount
|
|
1789
|
+
TotalCount: number
|
|
1785
1790
|
|
|
1786
1791
|
/**
|
|
1787
1792
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1796,12 +1801,12 @@ export interface InquiryPriceCreateDBInstancesResponse {
|
|
|
1796
1801
|
/**
|
|
1797
1802
|
* 未打折前价格,其值除以100表示多少钱。例如10010表示100.10元
|
|
1798
1803
|
*/
|
|
1799
|
-
OriginalPrice
|
|
1804
|
+
OriginalPrice: number
|
|
1800
1805
|
|
|
1801
1806
|
/**
|
|
1802
1807
|
* 实际需要支付的价格,其值除以100表示多少钱。例如10010表示100.10元
|
|
1803
1808
|
*/
|
|
1804
|
-
Price
|
|
1809
|
+
Price: number
|
|
1805
1810
|
|
|
1806
1811
|
/**
|
|
1807
1812
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1881,7 +1886,7 @@ export interface ModifyMigrationResponse {
|
|
|
1881
1886
|
/**
|
|
1882
1887
|
* 迁移任务ID
|
|
1883
1888
|
*/
|
|
1884
|
-
MigrateId
|
|
1889
|
+
MigrateId: number
|
|
1885
1890
|
|
|
1886
1891
|
/**
|
|
1887
1892
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1896,7 +1901,7 @@ export interface RecycleReadOnlyGroupResponse {
|
|
|
1896
1901
|
/**
|
|
1897
1902
|
* 任务流ID
|
|
1898
1903
|
*/
|
|
1899
|
-
FlowId
|
|
1904
|
+
FlowId: number
|
|
1900
1905
|
|
|
1901
1906
|
/**
|
|
1902
1907
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1911,12 +1916,12 @@ export interface DescribeZonesResponse {
|
|
|
1911
1916
|
/**
|
|
1912
1917
|
* 返回多少个可用区信息
|
|
1913
1918
|
*/
|
|
1914
|
-
TotalCount
|
|
1919
|
+
TotalCount: number
|
|
1915
1920
|
|
|
1916
1921
|
/**
|
|
1917
1922
|
* 可用区数组
|
|
1918
1923
|
*/
|
|
1919
|
-
ZoneSet
|
|
1924
|
+
ZoneSet: Array<ZoneInfo>
|
|
1920
1925
|
|
|
1921
1926
|
/**
|
|
1922
1927
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2114,12 +2119,12 @@ export interface DescribeMigrationsResponse {
|
|
|
2114
2119
|
/**
|
|
2115
2120
|
* 查询结果的总数
|
|
2116
2121
|
*/
|
|
2117
|
-
TotalCount
|
|
2122
|
+
TotalCount: number
|
|
2118
2123
|
|
|
2119
2124
|
/**
|
|
2120
2125
|
* 查询结果的列表
|
|
2121
2126
|
*/
|
|
2122
|
-
MigrateTaskSet
|
|
2127
|
+
MigrateTaskSet: Array<MigrateTask>
|
|
2123
2128
|
|
|
2124
2129
|
/**
|
|
2125
2130
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2224,7 +2229,7 @@ export interface DescribeProjectSecurityGroupsResponse {
|
|
|
2224
2229
|
/**
|
|
2225
2230
|
* 安全组详情。
|
|
2226
2231
|
*/
|
|
2227
|
-
SecurityGroupSet
|
|
2232
|
+
SecurityGroupSet: Array<SecurityGroup>
|
|
2228
2233
|
|
|
2229
2234
|
/**
|
|
2230
2235
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2239,12 +2244,12 @@ export interface DescribeCrossRegionZoneResponse {
|
|
|
2239
2244
|
/**
|
|
2240
2245
|
* 备机所在地域的字符串ID,形如:ap-guangzhou
|
|
2241
2246
|
*/
|
|
2242
|
-
Region
|
|
2247
|
+
Region: string
|
|
2243
2248
|
|
|
2244
2249
|
/**
|
|
2245
2250
|
* 备机所在可用区的字符串ID,形如:ap-guangzhou-1
|
|
2246
2251
|
*/
|
|
2247
|
-
Zone
|
|
2252
|
+
Zone: string
|
|
2248
2253
|
|
|
2249
2254
|
/**
|
|
2250
2255
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2259,7 +2264,7 @@ export interface ModifyDBInstanceRenewFlagResponse {
|
|
|
2259
2264
|
/**
|
|
2260
2265
|
* 修改成功的个数
|
|
2261
2266
|
*/
|
|
2262
|
-
Count
|
|
2267
|
+
Count: number
|
|
2263
2268
|
|
|
2264
2269
|
/**
|
|
2265
2270
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2274,12 +2279,13 @@ export interface DescribeMigrationDatabasesResponse {
|
|
|
2274
2279
|
/**
|
|
2275
2280
|
* 数据库数量
|
|
2276
2281
|
*/
|
|
2277
|
-
Amount
|
|
2282
|
+
Amount: number
|
|
2278
2283
|
|
|
2279
2284
|
/**
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2285
|
+
* 数据库名称数组
|
|
2286
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2287
|
+
*/
|
|
2288
|
+
MigrateDBSet: Array<string>
|
|
2283
2289
|
|
|
2284
2290
|
/**
|
|
2285
2291
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2294,7 +2300,7 @@ export interface CompleteExpansionResponse {
|
|
|
2294
2300
|
/**
|
|
2295
2301
|
* 流程ID,可通过接口DescribeFlowStatus查询立即切换升级任务的状态。
|
|
2296
2302
|
*/
|
|
2297
|
-
FlowId
|
|
2303
|
+
FlowId: number
|
|
2298
2304
|
|
|
2299
2305
|
/**
|
|
2300
2306
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2479,7 +2485,7 @@ export interface DescribeFlowStatusResponse {
|
|
|
2479
2485
|
/**
|
|
2480
2486
|
* 流程状态,0:成功,1:失败,2:运行中
|
|
2481
2487
|
*/
|
|
2482
|
-
Status
|
|
2488
|
+
Status: number
|
|
2483
2489
|
|
|
2484
2490
|
/**
|
|
2485
2491
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2494,17 +2500,17 @@ export interface QueryMigrationCheckProcessResponse {
|
|
|
2494
2500
|
/**
|
|
2495
2501
|
* 总步骤数量
|
|
2496
2502
|
*/
|
|
2497
|
-
TotalStep
|
|
2503
|
+
TotalStep: number
|
|
2498
2504
|
|
|
2499
2505
|
/**
|
|
2500
2506
|
* 当前步骤编号,从1开始
|
|
2501
2507
|
*/
|
|
2502
|
-
CurrentStep
|
|
2508
|
+
CurrentStep: number
|
|
2503
2509
|
|
|
2504
2510
|
/**
|
|
2505
2511
|
* 所有步骤详情
|
|
2506
2512
|
*/
|
|
2507
|
-
StepDetails
|
|
2513
|
+
StepDetails: Array<StepDetail>
|
|
2508
2514
|
|
|
2509
2515
|
/**
|
|
2510
2516
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2859,7 +2865,7 @@ export interface CreateReadOnlyDBInstancesResponse {
|
|
|
2859
2865
|
/**
|
|
2860
2866
|
* 订单名称数组
|
|
2861
2867
|
*/
|
|
2862
|
-
DealNames
|
|
2868
|
+
DealNames: Array<string>
|
|
2863
2869
|
|
|
2864
2870
|
/**
|
|
2865
2871
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -3265,6 +3271,16 @@ SyncNormal:正常
|
|
|
3265
3271
|
* 只读副本隔离时间
|
|
3266
3272
|
*/
|
|
3267
3273
|
IsolateTime: string
|
|
3274
|
+
|
|
3275
|
+
/**
|
|
3276
|
+
* 只读副本所在地域
|
|
3277
|
+
*/
|
|
3278
|
+
RegionId: string
|
|
3279
|
+
|
|
3280
|
+
/**
|
|
3281
|
+
* 只读副本所在可用区
|
|
3282
|
+
*/
|
|
3283
|
+
ZoneId: string
|
|
3268
3284
|
}
|
|
3269
3285
|
|
|
3270
3286
|
/**
|
|
@@ -3685,6 +3701,16 @@ export interface AccountDetail {
|
|
|
3685
3701
|
* 是否为管理员账户
|
|
3686
3702
|
*/
|
|
3687
3703
|
IsAdmin: boolean
|
|
3704
|
+
|
|
3705
|
+
/**
|
|
3706
|
+
* win-windows鉴权,sql-sqlserver鉴权
|
|
3707
|
+
*/
|
|
3708
|
+
Authentication: string
|
|
3709
|
+
|
|
3710
|
+
/**
|
|
3711
|
+
* win-windows鉴权账户需要host
|
|
3712
|
+
*/
|
|
3713
|
+
Host: string
|
|
3688
3714
|
}
|
|
3689
3715
|
|
|
3690
3716
|
/**
|
|
@@ -4607,6 +4633,11 @@ export interface AccountCreateInfo {
|
|
|
4607
4633
|
* 是否为管理员账户,默认为否
|
|
4608
4634
|
*/
|
|
4609
4635
|
IsAdmin?: boolean
|
|
4636
|
+
|
|
4637
|
+
/**
|
|
4638
|
+
* win-windows鉴权,sql-sqlserver鉴权,不填模式兼容接口sqlserver鉴权
|
|
4639
|
+
*/
|
|
4640
|
+
Authentication?: string
|
|
4610
4641
|
}
|
|
4611
4642
|
|
|
4612
4643
|
/**
|
|
@@ -4656,72 +4687,72 @@ export interface DescribeReadOnlyGroupDetailsResponse {
|
|
|
4656
4687
|
/**
|
|
4657
4688
|
* 只读组ID
|
|
4658
4689
|
*/
|
|
4659
|
-
ReadOnlyGroupId
|
|
4690
|
+
ReadOnlyGroupId: string
|
|
4660
4691
|
|
|
4661
4692
|
/**
|
|
4662
4693
|
* 只读组名称
|
|
4663
4694
|
*/
|
|
4664
|
-
ReadOnlyGroupName
|
|
4695
|
+
ReadOnlyGroupName: string
|
|
4665
4696
|
|
|
4666
4697
|
/**
|
|
4667
4698
|
* 只读组的地域ID,与主实例相同
|
|
4668
4699
|
*/
|
|
4669
|
-
RegionId
|
|
4700
|
+
RegionId: string
|
|
4670
4701
|
|
|
4671
4702
|
/**
|
|
4672
4703
|
* 只读组的可用区ID,与主实例相同
|
|
4673
4704
|
*/
|
|
4674
|
-
ZoneId
|
|
4705
|
+
ZoneId: string
|
|
4675
4706
|
|
|
4676
4707
|
/**
|
|
4677
4708
|
* 是否启动超时剔除功能,0-不开启剔除功能,1-开启剔除功能
|
|
4678
4709
|
*/
|
|
4679
|
-
IsOfflineDelay
|
|
4710
|
+
IsOfflineDelay: number
|
|
4680
4711
|
|
|
4681
4712
|
/**
|
|
4682
4713
|
* 启动超时剔除功能后,使用的超时阈值
|
|
4683
4714
|
*/
|
|
4684
|
-
ReadOnlyMaxDelayTime
|
|
4715
|
+
ReadOnlyMaxDelayTime: number
|
|
4685
4716
|
|
|
4686
4717
|
/**
|
|
4687
4718
|
* 启动超时剔除功能后,至少只读组保留的只读副本数
|
|
4688
4719
|
*/
|
|
4689
|
-
MinReadOnlyInGroup
|
|
4720
|
+
MinReadOnlyInGroup: number
|
|
4690
4721
|
|
|
4691
4722
|
/**
|
|
4692
4723
|
* 只读组vip
|
|
4693
4724
|
*/
|
|
4694
|
-
Vip
|
|
4725
|
+
Vip: string
|
|
4695
4726
|
|
|
4696
4727
|
/**
|
|
4697
4728
|
* 只读组vport
|
|
4698
4729
|
*/
|
|
4699
|
-
Vport
|
|
4730
|
+
Vport: number
|
|
4700
4731
|
|
|
4701
4732
|
/**
|
|
4702
4733
|
* 只读组私有网络ID
|
|
4703
4734
|
*/
|
|
4704
|
-
VpcId
|
|
4735
|
+
VpcId: string
|
|
4705
4736
|
|
|
4706
4737
|
/**
|
|
4707
4738
|
* 只读组私有网络子网ID
|
|
4708
4739
|
*/
|
|
4709
|
-
SubnetId
|
|
4740
|
+
SubnetId: string
|
|
4710
4741
|
|
|
4711
4742
|
/**
|
|
4712
4743
|
* 只读实例副本集合
|
|
4713
4744
|
*/
|
|
4714
|
-
ReadOnlyInstanceSet
|
|
4745
|
+
ReadOnlyInstanceSet: Array<ReadOnlyInstance>
|
|
4715
4746
|
|
|
4716
4747
|
/**
|
|
4717
4748
|
* 只读组状态: 1-申请成功运行中,5-申请中
|
|
4718
4749
|
*/
|
|
4719
|
-
Status
|
|
4750
|
+
Status: number
|
|
4720
4751
|
|
|
4721
4752
|
/**
|
|
4722
4753
|
* 主实例ID,形如mssql-sgeshe3th
|
|
4723
4754
|
*/
|
|
4724
|
-
MasterInstanceId
|
|
4755
|
+
MasterInstanceId: string
|
|
4725
4756
|
|
|
4726
4757
|
/**
|
|
4727
4758
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5021,12 +5052,12 @@ export interface InquiryPriceUpgradeDBInstanceResponse {
|
|
|
5021
5052
|
/**
|
|
5022
5053
|
* 未打折的原价,其值除以100表示最终的价格。例如10094表示100.94元
|
|
5023
5054
|
*/
|
|
5024
|
-
OriginalPrice
|
|
5055
|
+
OriginalPrice: number
|
|
5025
5056
|
|
|
5026
5057
|
/**
|
|
5027
5058
|
* 实际需要支付价格,其值除以100表示最终的价格。例如10094表示100.94元
|
|
5028
5059
|
*/
|
|
5029
|
-
Price
|
|
5060
|
+
Price: number
|
|
5030
5061
|
|
|
5031
5062
|
/**
|
|
5032
5063
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5056,72 +5087,72 @@ export interface DescribeMigrationDetailResponse {
|
|
|
5056
5087
|
/**
|
|
5057
5088
|
* 迁移任务ID
|
|
5058
5089
|
*/
|
|
5059
|
-
MigrateId
|
|
5090
|
+
MigrateId: number
|
|
5060
5091
|
|
|
5061
5092
|
/**
|
|
5062
5093
|
* 迁移任务名称
|
|
5063
5094
|
*/
|
|
5064
|
-
MigrateName
|
|
5095
|
+
MigrateName: string
|
|
5065
5096
|
|
|
5066
5097
|
/**
|
|
5067
5098
|
* 迁移任务所属的用户ID
|
|
5068
5099
|
*/
|
|
5069
|
-
AppId
|
|
5100
|
+
AppId: number
|
|
5070
5101
|
|
|
5071
5102
|
/**
|
|
5072
5103
|
* 迁移任务所属的地域
|
|
5073
5104
|
*/
|
|
5074
|
-
Region
|
|
5105
|
+
Region: string
|
|
5075
5106
|
|
|
5076
5107
|
/**
|
|
5077
5108
|
* 迁移源的类型 1:TencentDB for SQLServer 2:云服务器自建SQLServer数据库 4:SQLServer备份还原 5:SQLServer备份还原(COS方式)
|
|
5078
5109
|
*/
|
|
5079
|
-
SourceType
|
|
5110
|
+
SourceType: number
|
|
5080
5111
|
|
|
5081
5112
|
/**
|
|
5082
5113
|
* 迁移任务的创建时间
|
|
5083
5114
|
*/
|
|
5084
|
-
CreateTime
|
|
5115
|
+
CreateTime: string
|
|
5085
5116
|
|
|
5086
5117
|
/**
|
|
5087
5118
|
* 迁移任务的开始时间
|
|
5088
5119
|
*/
|
|
5089
|
-
StartTime
|
|
5120
|
+
StartTime: string
|
|
5090
5121
|
|
|
5091
5122
|
/**
|
|
5092
5123
|
* 迁移任务的结束时间
|
|
5093
5124
|
*/
|
|
5094
|
-
EndTime
|
|
5125
|
+
EndTime: string
|
|
5095
5126
|
|
|
5096
5127
|
/**
|
|
5097
5128
|
* 迁移任务的状态(1:初始化,4:迁移中,5.迁移失败,6.迁移成功)
|
|
5098
5129
|
*/
|
|
5099
|
-
Status
|
|
5130
|
+
Status: number
|
|
5100
5131
|
|
|
5101
5132
|
/**
|
|
5102
5133
|
* 迁移任务当前进度
|
|
5103
5134
|
*/
|
|
5104
|
-
Progress
|
|
5135
|
+
Progress: number
|
|
5105
5136
|
|
|
5106
5137
|
/**
|
|
5107
5138
|
* 迁移类型(1:结构迁移 2:数据迁移 3:增量同步)
|
|
5108
5139
|
*/
|
|
5109
|
-
MigrateType
|
|
5140
|
+
MigrateType: number
|
|
5110
5141
|
|
|
5111
5142
|
/**
|
|
5112
5143
|
* 迁移源
|
|
5113
5144
|
*/
|
|
5114
|
-
Source
|
|
5145
|
+
Source: MigrateSource
|
|
5115
5146
|
|
|
5116
5147
|
/**
|
|
5117
5148
|
* 迁移目标
|
|
5118
5149
|
*/
|
|
5119
|
-
Target
|
|
5150
|
+
Target: MigrateTarget
|
|
5120
5151
|
|
|
5121
5152
|
/**
|
|
5122
5153
|
* 迁移DB对象 ,离线迁移(SourceType=4或SourceType=5)不使用。
|
|
5123
5154
|
*/
|
|
5124
|
-
MigrateDBSet
|
|
5155
|
+
MigrateDBSet: Array<MigrateDB>
|
|
5125
5156
|
|
|
5126
5157
|
/**
|
|
5127
5158
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5307,6 +5338,11 @@ export interface UpgradeDBInstanceRequest {
|
|
|
5307
5338
|
* 修改实例是否为跨可用区容灾,SameZones-修改为同可用区 MultiZones-修改为夸可用区
|
|
5308
5339
|
*/
|
|
5309
5340
|
MultiZones?: string
|
|
5341
|
+
|
|
5342
|
+
/**
|
|
5343
|
+
* 执行变配的方式,默认为 1。支持值包括:0 - 立刻执行,1 - 维护时间窗执行
|
|
5344
|
+
*/
|
|
5345
|
+
WaitSwitch?: number
|
|
5310
5346
|
}
|
|
5311
5347
|
|
|
5312
5348
|
/**
|
|
@@ -5376,12 +5412,12 @@ export interface InquiryPriceRenewDBInstanceResponse {
|
|
|
5376
5412
|
/**
|
|
5377
5413
|
* 未打折的原价,其值除以100表示最终的价格。例如10094表示100.94元
|
|
5378
5414
|
*/
|
|
5379
|
-
OriginalPrice
|
|
5415
|
+
OriginalPrice: number
|
|
5380
5416
|
|
|
5381
5417
|
/**
|
|
5382
5418
|
* 实际需要支付价格,其值除以100表示最终的价格。例如10094表示100.94元
|
|
5383
5419
|
*/
|
|
5384
|
-
Price
|
|
5420
|
+
Price: number
|
|
5385
5421
|
|
|
5386
5422
|
/**
|
|
5387
5423
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5672,7 +5708,7 @@ export interface StopMigrationResponse {
|
|
|
5672
5708
|
/**
|
|
5673
5709
|
* 中止迁移流程发起后,返回的流程id
|
|
5674
5710
|
*/
|
|
5675
|
-
FlowId
|
|
5711
|
+
FlowId: number
|
|
5676
5712
|
|
|
5677
5713
|
/**
|
|
5678
5714
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5712,7 +5748,7 @@ export interface CreatePublishSubscribeResponse {
|
|
|
5712
5748
|
/**
|
|
5713
5749
|
* 流程ID,可通过接口DescribeFlowStatus查询立即切换升级任务的状态。
|
|
5714
5750
|
*/
|
|
5715
|
-
FlowId
|
|
5751
|
+
FlowId: number
|
|
5716
5752
|
|
|
5717
5753
|
/**
|
|
5718
5754
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5777,7 +5813,7 @@ export interface UpgradeDBInstanceResponse {
|
|
|
5777
5813
|
/**
|
|
5778
5814
|
* 订单名称
|
|
5779
5815
|
*/
|
|
5780
|
-
DealName
|
|
5816
|
+
DealName: string
|
|
5781
5817
|
|
|
5782
5818
|
/**
|
|
5783
5819
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5912,12 +5948,12 @@ export interface CreateDBInstancesResponse {
|
|
|
5912
5948
|
/**
|
|
5913
5949
|
* 订单名称
|
|
5914
5950
|
*/
|
|
5915
|
-
DealName
|
|
5951
|
+
DealName: string
|
|
5916
5952
|
|
|
5917
5953
|
/**
|
|
5918
5954
|
* 订单名称数组
|
|
5919
5955
|
*/
|
|
5920
|
-
DealNames
|
|
5956
|
+
DealNames: Array<string>
|
|
5921
5957
|
|
|
5922
5958
|
/**
|
|
5923
5959
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|