tencentcloud-sdk-nodejs-sqlserver 4.0.342 → 4.0.345
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
|
/**
|
|
@@ -4552,6 +4578,11 @@ export interface AccountPrivilegeModifyInfo {
|
|
|
4552
4578
|
* 账号权限变更信息
|
|
4553
4579
|
*/
|
|
4554
4580
|
DBPrivileges: Array<DBPrivilegeModifyInfo>
|
|
4581
|
+
|
|
4582
|
+
/**
|
|
4583
|
+
* 是否为管理员账户
|
|
4584
|
+
*/
|
|
4585
|
+
IsAdmin?: boolean
|
|
4555
4586
|
}
|
|
4556
4587
|
|
|
4557
4588
|
/**
|
|
@@ -4602,6 +4633,11 @@ export interface AccountCreateInfo {
|
|
|
4602
4633
|
* 是否为管理员账户,默认为否
|
|
4603
4634
|
*/
|
|
4604
4635
|
IsAdmin?: boolean
|
|
4636
|
+
|
|
4637
|
+
/**
|
|
4638
|
+
* win-windows鉴权,sql-sqlserver鉴权,不填模式兼容接口sqlserver鉴权
|
|
4639
|
+
*/
|
|
4640
|
+
Authentication?: string
|
|
4605
4641
|
}
|
|
4606
4642
|
|
|
4607
4643
|
/**
|
|
@@ -4651,72 +4687,72 @@ export interface DescribeReadOnlyGroupDetailsResponse {
|
|
|
4651
4687
|
/**
|
|
4652
4688
|
* 只读组ID
|
|
4653
4689
|
*/
|
|
4654
|
-
ReadOnlyGroupId
|
|
4690
|
+
ReadOnlyGroupId: string
|
|
4655
4691
|
|
|
4656
4692
|
/**
|
|
4657
4693
|
* 只读组名称
|
|
4658
4694
|
*/
|
|
4659
|
-
ReadOnlyGroupName
|
|
4695
|
+
ReadOnlyGroupName: string
|
|
4660
4696
|
|
|
4661
4697
|
/**
|
|
4662
4698
|
* 只读组的地域ID,与主实例相同
|
|
4663
4699
|
*/
|
|
4664
|
-
RegionId
|
|
4700
|
+
RegionId: string
|
|
4665
4701
|
|
|
4666
4702
|
/**
|
|
4667
4703
|
* 只读组的可用区ID,与主实例相同
|
|
4668
4704
|
*/
|
|
4669
|
-
ZoneId
|
|
4705
|
+
ZoneId: string
|
|
4670
4706
|
|
|
4671
4707
|
/**
|
|
4672
4708
|
* 是否启动超时剔除功能,0-不开启剔除功能,1-开启剔除功能
|
|
4673
4709
|
*/
|
|
4674
|
-
IsOfflineDelay
|
|
4710
|
+
IsOfflineDelay: number
|
|
4675
4711
|
|
|
4676
4712
|
/**
|
|
4677
4713
|
* 启动超时剔除功能后,使用的超时阈值
|
|
4678
4714
|
*/
|
|
4679
|
-
ReadOnlyMaxDelayTime
|
|
4715
|
+
ReadOnlyMaxDelayTime: number
|
|
4680
4716
|
|
|
4681
4717
|
/**
|
|
4682
4718
|
* 启动超时剔除功能后,至少只读组保留的只读副本数
|
|
4683
4719
|
*/
|
|
4684
|
-
MinReadOnlyInGroup
|
|
4720
|
+
MinReadOnlyInGroup: number
|
|
4685
4721
|
|
|
4686
4722
|
/**
|
|
4687
4723
|
* 只读组vip
|
|
4688
4724
|
*/
|
|
4689
|
-
Vip
|
|
4725
|
+
Vip: string
|
|
4690
4726
|
|
|
4691
4727
|
/**
|
|
4692
4728
|
* 只读组vport
|
|
4693
4729
|
*/
|
|
4694
|
-
Vport
|
|
4730
|
+
Vport: number
|
|
4695
4731
|
|
|
4696
4732
|
/**
|
|
4697
4733
|
* 只读组私有网络ID
|
|
4698
4734
|
*/
|
|
4699
|
-
VpcId
|
|
4735
|
+
VpcId: string
|
|
4700
4736
|
|
|
4701
4737
|
/**
|
|
4702
4738
|
* 只读组私有网络子网ID
|
|
4703
4739
|
*/
|
|
4704
|
-
SubnetId
|
|
4740
|
+
SubnetId: string
|
|
4705
4741
|
|
|
4706
4742
|
/**
|
|
4707
4743
|
* 只读实例副本集合
|
|
4708
4744
|
*/
|
|
4709
|
-
ReadOnlyInstanceSet
|
|
4745
|
+
ReadOnlyInstanceSet: Array<ReadOnlyInstance>
|
|
4710
4746
|
|
|
4711
4747
|
/**
|
|
4712
4748
|
* 只读组状态: 1-申请成功运行中,5-申请中
|
|
4713
4749
|
*/
|
|
4714
|
-
Status
|
|
4750
|
+
Status: number
|
|
4715
4751
|
|
|
4716
4752
|
/**
|
|
4717
4753
|
* 主实例ID,形如mssql-sgeshe3th
|
|
4718
4754
|
*/
|
|
4719
|
-
MasterInstanceId
|
|
4755
|
+
MasterInstanceId: string
|
|
4720
4756
|
|
|
4721
4757
|
/**
|
|
4722
4758
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -4781,7 +4817,7 @@ export interface RecycleDBInstanceResponse {
|
|
|
4781
4817
|
/**
|
|
4782
4818
|
* 流程id
|
|
4783
4819
|
*/
|
|
4784
|
-
FlowId
|
|
4820
|
+
FlowId: number
|
|
4785
4821
|
|
|
4786
4822
|
/**
|
|
4787
4823
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5016,12 +5052,12 @@ export interface InquiryPriceUpgradeDBInstanceResponse {
|
|
|
5016
5052
|
/**
|
|
5017
5053
|
* 未打折的原价,其值除以100表示最终的价格。例如10094表示100.94元
|
|
5018
5054
|
*/
|
|
5019
|
-
OriginalPrice
|
|
5055
|
+
OriginalPrice: number
|
|
5020
5056
|
|
|
5021
5057
|
/**
|
|
5022
5058
|
* 实际需要支付价格,其值除以100表示最终的价格。例如10094表示100.94元
|
|
5023
5059
|
*/
|
|
5024
|
-
Price
|
|
5060
|
+
Price: number
|
|
5025
5061
|
|
|
5026
5062
|
/**
|
|
5027
5063
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5051,72 +5087,72 @@ export interface DescribeMigrationDetailResponse {
|
|
|
5051
5087
|
/**
|
|
5052
5088
|
* 迁移任务ID
|
|
5053
5089
|
*/
|
|
5054
|
-
MigrateId
|
|
5090
|
+
MigrateId: number
|
|
5055
5091
|
|
|
5056
5092
|
/**
|
|
5057
5093
|
* 迁移任务名称
|
|
5058
5094
|
*/
|
|
5059
|
-
MigrateName
|
|
5095
|
+
MigrateName: string
|
|
5060
5096
|
|
|
5061
5097
|
/**
|
|
5062
5098
|
* 迁移任务所属的用户ID
|
|
5063
5099
|
*/
|
|
5064
|
-
AppId
|
|
5100
|
+
AppId: number
|
|
5065
5101
|
|
|
5066
5102
|
/**
|
|
5067
5103
|
* 迁移任务所属的地域
|
|
5068
5104
|
*/
|
|
5069
|
-
Region
|
|
5105
|
+
Region: string
|
|
5070
5106
|
|
|
5071
5107
|
/**
|
|
5072
5108
|
* 迁移源的类型 1:TencentDB for SQLServer 2:云服务器自建SQLServer数据库 4:SQLServer备份还原 5:SQLServer备份还原(COS方式)
|
|
5073
5109
|
*/
|
|
5074
|
-
SourceType
|
|
5110
|
+
SourceType: number
|
|
5075
5111
|
|
|
5076
5112
|
/**
|
|
5077
5113
|
* 迁移任务的创建时间
|
|
5078
5114
|
*/
|
|
5079
|
-
CreateTime
|
|
5115
|
+
CreateTime: string
|
|
5080
5116
|
|
|
5081
5117
|
/**
|
|
5082
5118
|
* 迁移任务的开始时间
|
|
5083
5119
|
*/
|
|
5084
|
-
StartTime
|
|
5120
|
+
StartTime: string
|
|
5085
5121
|
|
|
5086
5122
|
/**
|
|
5087
5123
|
* 迁移任务的结束时间
|
|
5088
5124
|
*/
|
|
5089
|
-
EndTime
|
|
5125
|
+
EndTime: string
|
|
5090
5126
|
|
|
5091
5127
|
/**
|
|
5092
5128
|
* 迁移任务的状态(1:初始化,4:迁移中,5.迁移失败,6.迁移成功)
|
|
5093
5129
|
*/
|
|
5094
|
-
Status
|
|
5130
|
+
Status: number
|
|
5095
5131
|
|
|
5096
5132
|
/**
|
|
5097
5133
|
* 迁移任务当前进度
|
|
5098
5134
|
*/
|
|
5099
|
-
Progress
|
|
5135
|
+
Progress: number
|
|
5100
5136
|
|
|
5101
5137
|
/**
|
|
5102
5138
|
* 迁移类型(1:结构迁移 2:数据迁移 3:增量同步)
|
|
5103
5139
|
*/
|
|
5104
|
-
MigrateType
|
|
5140
|
+
MigrateType: number
|
|
5105
5141
|
|
|
5106
5142
|
/**
|
|
5107
5143
|
* 迁移源
|
|
5108
5144
|
*/
|
|
5109
|
-
Source
|
|
5145
|
+
Source: MigrateSource
|
|
5110
5146
|
|
|
5111
5147
|
/**
|
|
5112
5148
|
* 迁移目标
|
|
5113
5149
|
*/
|
|
5114
|
-
Target
|
|
5150
|
+
Target: MigrateTarget
|
|
5115
5151
|
|
|
5116
5152
|
/**
|
|
5117
5153
|
* 迁移DB对象 ,离线迁移(SourceType=4或SourceType=5)不使用。
|
|
5118
5154
|
*/
|
|
5119
|
-
MigrateDBSet
|
|
5155
|
+
MigrateDBSet: Array<MigrateDB>
|
|
5120
5156
|
|
|
5121
5157
|
/**
|
|
5122
5158
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5302,6 +5338,11 @@ export interface UpgradeDBInstanceRequest {
|
|
|
5302
5338
|
* 修改实例是否为跨可用区容灾,SameZones-修改为同可用区 MultiZones-修改为夸可用区
|
|
5303
5339
|
*/
|
|
5304
5340
|
MultiZones?: string
|
|
5341
|
+
|
|
5342
|
+
/**
|
|
5343
|
+
* 执行变配的方式,默认为 1。支持值包括:0 - 立刻执行,1 - 维护时间窗执行
|
|
5344
|
+
*/
|
|
5345
|
+
WaitSwitch?: number
|
|
5305
5346
|
}
|
|
5306
5347
|
|
|
5307
5348
|
/**
|
|
@@ -5371,12 +5412,12 @@ export interface InquiryPriceRenewDBInstanceResponse {
|
|
|
5371
5412
|
/**
|
|
5372
5413
|
* 未打折的原价,其值除以100表示最终的价格。例如10094表示100.94元
|
|
5373
5414
|
*/
|
|
5374
|
-
OriginalPrice
|
|
5415
|
+
OriginalPrice: number
|
|
5375
5416
|
|
|
5376
5417
|
/**
|
|
5377
5418
|
* 实际需要支付价格,其值除以100表示最终的价格。例如10094表示100.94元
|
|
5378
5419
|
*/
|
|
5379
|
-
Price
|
|
5420
|
+
Price: number
|
|
5380
5421
|
|
|
5381
5422
|
/**
|
|
5382
5423
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5667,7 +5708,7 @@ export interface StopMigrationResponse {
|
|
|
5667
5708
|
/**
|
|
5668
5709
|
* 中止迁移流程发起后,返回的流程id
|
|
5669
5710
|
*/
|
|
5670
|
-
FlowId
|
|
5711
|
+
FlowId: number
|
|
5671
5712
|
|
|
5672
5713
|
/**
|
|
5673
5714
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5707,7 +5748,7 @@ export interface CreatePublishSubscribeResponse {
|
|
|
5707
5748
|
/**
|
|
5708
5749
|
* 流程ID,可通过接口DescribeFlowStatus查询立即切换升级任务的状态。
|
|
5709
5750
|
*/
|
|
5710
|
-
FlowId
|
|
5751
|
+
FlowId: number
|
|
5711
5752
|
|
|
5712
5753
|
/**
|
|
5713
5754
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5772,7 +5813,7 @@ export interface UpgradeDBInstanceResponse {
|
|
|
5772
5813
|
/**
|
|
5773
5814
|
* 订单名称
|
|
5774
5815
|
*/
|
|
5775
|
-
DealName
|
|
5816
|
+
DealName: string
|
|
5776
5817
|
|
|
5777
5818
|
/**
|
|
5778
5819
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5907,12 +5948,12 @@ export interface CreateDBInstancesResponse {
|
|
|
5907
5948
|
/**
|
|
5908
5949
|
* 订单名称
|
|
5909
5950
|
*/
|
|
5910
|
-
DealName
|
|
5951
|
+
DealName: string
|
|
5911
5952
|
|
|
5912
5953
|
/**
|
|
5913
5954
|
* 订单名称数组
|
|
5914
5955
|
*/
|
|
5915
|
-
DealNames
|
|
5956
|
+
DealNames: Array<string>
|
|
5916
5957
|
|
|
5917
5958
|
/**
|
|
5918
5959
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|