tencentcloud-sdk-nodejs-sqlserver 4.0.341 → 4.0.344
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/CHANGELOG.md +535 -0
- package/SERVICE_CHANGELOG.md +715 -148
- package/package.json +1 -1
- package/products.md +32 -32
- package/src/services/sqlserver/v20180328/sqlserver_models.ts +107 -81
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +102 -81
|
@@ -216,7 +216,7 @@ export interface CreateBasicDBInstancesResponse {
|
|
|
216
216
|
/**
|
|
217
217
|
* 订单名称
|
|
218
218
|
*/
|
|
219
|
-
DealName
|
|
219
|
+
DealName: string;
|
|
220
220
|
/**
|
|
221
221
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
222
222
|
*/
|
|
@@ -554,7 +554,7 @@ export interface RunMigrationResponse {
|
|
|
554
554
|
/**
|
|
555
555
|
* 迁移流程启动后,返回流程ID
|
|
556
556
|
*/
|
|
557
|
-
FlowId
|
|
557
|
+
FlowId: number;
|
|
558
558
|
/**
|
|
559
559
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
560
560
|
*/
|
|
@@ -701,11 +701,11 @@ export interface DescribeRegionsResponse {
|
|
|
701
701
|
/**
|
|
702
702
|
* 返回地域信息总的条目
|
|
703
703
|
*/
|
|
704
|
-
TotalCount
|
|
704
|
+
TotalCount: number;
|
|
705
705
|
/**
|
|
706
706
|
* 地域信息数组
|
|
707
707
|
*/
|
|
708
|
-
RegionSet
|
|
708
|
+
RegionSet: Array<RegionInfo>;
|
|
709
709
|
/**
|
|
710
710
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
711
711
|
*/
|
|
@@ -775,7 +775,7 @@ export interface ModifyDBInstanceProjectResponse {
|
|
|
775
775
|
/**
|
|
776
776
|
* 修改成功的实例个数
|
|
777
777
|
*/
|
|
778
|
-
Count
|
|
778
|
+
Count: number;
|
|
779
779
|
/**
|
|
780
780
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
781
781
|
*/
|
|
@@ -859,51 +859,51 @@ export interface DescribeReadOnlyGroupByReadOnlyInstanceResponse {
|
|
|
859
859
|
/**
|
|
860
860
|
* 只读组ID
|
|
861
861
|
*/
|
|
862
|
-
ReadOnlyGroupId
|
|
862
|
+
ReadOnlyGroupId: string;
|
|
863
863
|
/**
|
|
864
864
|
* 只读组名称
|
|
865
865
|
*/
|
|
866
|
-
ReadOnlyGroupName
|
|
866
|
+
ReadOnlyGroupName: string;
|
|
867
867
|
/**
|
|
868
868
|
* 只读组的地域ID
|
|
869
869
|
*/
|
|
870
|
-
RegionId
|
|
870
|
+
RegionId: string;
|
|
871
871
|
/**
|
|
872
872
|
* 只读组的可用区ID
|
|
873
873
|
*/
|
|
874
|
-
ZoneId
|
|
874
|
+
ZoneId: string;
|
|
875
875
|
/**
|
|
876
876
|
* 是否启动超时剔除功能 ,0-不开启剔除功能,1-开启剔除功能
|
|
877
877
|
*/
|
|
878
|
-
IsOfflineDelay
|
|
878
|
+
IsOfflineDelay: number;
|
|
879
879
|
/**
|
|
880
880
|
* 启动超时剔除功能后,使用的超时阈值,单位是秒
|
|
881
881
|
*/
|
|
882
|
-
ReadOnlyMaxDelayTime
|
|
882
|
+
ReadOnlyMaxDelayTime: number;
|
|
883
883
|
/**
|
|
884
884
|
* 启动超时剔除功能后,只读组至少保留的只读副本数
|
|
885
885
|
*/
|
|
886
|
-
MinReadOnlyInGroup
|
|
886
|
+
MinReadOnlyInGroup: number;
|
|
887
887
|
/**
|
|
888
888
|
* 只读组vip
|
|
889
889
|
*/
|
|
890
|
-
Vip
|
|
890
|
+
Vip: string;
|
|
891
891
|
/**
|
|
892
892
|
* 只读组vport
|
|
893
893
|
*/
|
|
894
|
-
Vport
|
|
894
|
+
Vport: number;
|
|
895
895
|
/**
|
|
896
896
|
* 只读组在私有网络ID
|
|
897
897
|
*/
|
|
898
|
-
VpcId
|
|
898
|
+
VpcId: string;
|
|
899
899
|
/**
|
|
900
900
|
* 只读组在私有网络子网ID
|
|
901
901
|
*/
|
|
902
|
-
SubnetId
|
|
902
|
+
SubnetId: string;
|
|
903
903
|
/**
|
|
904
904
|
* 主实例ID,形如mssql-sgeshe3th
|
|
905
905
|
*/
|
|
906
|
-
MasterInstanceId
|
|
906
|
+
MasterInstanceId: string;
|
|
907
907
|
/**
|
|
908
908
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
909
909
|
*/
|
|
@@ -1309,7 +1309,7 @@ export interface CompleteMigrationResponse {
|
|
|
1309
1309
|
/**
|
|
1310
1310
|
* 完成迁移流程发起后,返回的流程id
|
|
1311
1311
|
*/
|
|
1312
|
-
FlowId
|
|
1312
|
+
FlowId: number;
|
|
1313
1313
|
/**
|
|
1314
1314
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1315
1315
|
*/
|
|
@@ -1335,7 +1335,7 @@ export interface StartMigrationCheckResponse {
|
|
|
1335
1335
|
/**
|
|
1336
1336
|
* 迁移检查流程发起后,返回的流程id
|
|
1337
1337
|
*/
|
|
1338
|
-
FlowId
|
|
1338
|
+
FlowId: number;
|
|
1339
1339
|
/**
|
|
1340
1340
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1341
1341
|
*/
|
|
@@ -1475,11 +1475,11 @@ export interface DescribeOrdersResponse {
|
|
|
1475
1475
|
/**
|
|
1476
1476
|
* 订单信息数组
|
|
1477
1477
|
*/
|
|
1478
|
-
Deals
|
|
1478
|
+
Deals: Array<DealInfo>;
|
|
1479
1479
|
/**
|
|
1480
1480
|
* 返回多少个订单的信息
|
|
1481
1481
|
*/
|
|
1482
|
-
TotalCount
|
|
1482
|
+
TotalCount: number;
|
|
1483
1483
|
/**
|
|
1484
1484
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1485
1485
|
*/
|
|
@@ -1492,11 +1492,11 @@ export interface InquiryPriceCreateDBInstancesResponse {
|
|
|
1492
1492
|
/**
|
|
1493
1493
|
* 未打折前价格,其值除以100表示多少钱。例如10010表示100.10元
|
|
1494
1494
|
*/
|
|
1495
|
-
OriginalPrice
|
|
1495
|
+
OriginalPrice: number;
|
|
1496
1496
|
/**
|
|
1497
1497
|
* 实际需要支付的价格,其值除以100表示多少钱。例如10010表示100.10元
|
|
1498
1498
|
*/
|
|
1499
|
-
Price
|
|
1499
|
+
Price: number;
|
|
1500
1500
|
/**
|
|
1501
1501
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1502
1502
|
*/
|
|
@@ -1565,7 +1565,7 @@ export interface ModifyMigrationResponse {
|
|
|
1565
1565
|
/**
|
|
1566
1566
|
* 迁移任务ID
|
|
1567
1567
|
*/
|
|
1568
|
-
MigrateId
|
|
1568
|
+
MigrateId: number;
|
|
1569
1569
|
/**
|
|
1570
1570
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1571
1571
|
*/
|
|
@@ -1578,7 +1578,7 @@ export interface RecycleReadOnlyGroupResponse {
|
|
|
1578
1578
|
/**
|
|
1579
1579
|
* 任务流ID
|
|
1580
1580
|
*/
|
|
1581
|
-
FlowId
|
|
1581
|
+
FlowId: number;
|
|
1582
1582
|
/**
|
|
1583
1583
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1584
1584
|
*/
|
|
@@ -1591,11 +1591,11 @@ export interface DescribeZonesResponse {
|
|
|
1591
1591
|
/**
|
|
1592
1592
|
* 返回多少个可用区信息
|
|
1593
1593
|
*/
|
|
1594
|
-
TotalCount
|
|
1594
|
+
TotalCount: number;
|
|
1595
1595
|
/**
|
|
1596
1596
|
* 可用区数组
|
|
1597
1597
|
*/
|
|
1598
|
-
ZoneSet
|
|
1598
|
+
ZoneSet: Array<ZoneInfo>;
|
|
1599
1599
|
/**
|
|
1600
1600
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1601
1601
|
*/
|
|
@@ -1762,11 +1762,11 @@ export interface DescribeMigrationsResponse {
|
|
|
1762
1762
|
/**
|
|
1763
1763
|
* 查询结果的总数
|
|
1764
1764
|
*/
|
|
1765
|
-
TotalCount
|
|
1765
|
+
TotalCount: number;
|
|
1766
1766
|
/**
|
|
1767
1767
|
* 查询结果的列表
|
|
1768
1768
|
*/
|
|
1769
|
-
MigrateTaskSet
|
|
1769
|
+
MigrateTaskSet: Array<MigrateTask>;
|
|
1770
1770
|
/**
|
|
1771
1771
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1772
1772
|
*/
|
|
@@ -1855,7 +1855,7 @@ export interface DescribeProjectSecurityGroupsResponse {
|
|
|
1855
1855
|
/**
|
|
1856
1856
|
* 安全组详情。
|
|
1857
1857
|
*/
|
|
1858
|
-
SecurityGroupSet
|
|
1858
|
+
SecurityGroupSet: Array<SecurityGroup>;
|
|
1859
1859
|
/**
|
|
1860
1860
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1861
1861
|
*/
|
|
@@ -1868,11 +1868,11 @@ export interface DescribeCrossRegionZoneResponse {
|
|
|
1868
1868
|
/**
|
|
1869
1869
|
* 备机所在地域的字符串ID,形如:ap-guangzhou
|
|
1870
1870
|
*/
|
|
1871
|
-
Region
|
|
1871
|
+
Region: string;
|
|
1872
1872
|
/**
|
|
1873
1873
|
* 备机所在可用区的字符串ID,形如:ap-guangzhou-1
|
|
1874
1874
|
*/
|
|
1875
|
-
Zone
|
|
1875
|
+
Zone: string;
|
|
1876
1876
|
/**
|
|
1877
1877
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1878
1878
|
*/
|
|
@@ -1885,7 +1885,7 @@ export interface ModifyDBInstanceRenewFlagResponse {
|
|
|
1885
1885
|
/**
|
|
1886
1886
|
* 修改成功的个数
|
|
1887
1887
|
*/
|
|
1888
|
-
Count
|
|
1888
|
+
Count: number;
|
|
1889
1889
|
/**
|
|
1890
1890
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1891
1891
|
*/
|
|
@@ -1898,11 +1898,12 @@ export interface DescribeMigrationDatabasesResponse {
|
|
|
1898
1898
|
/**
|
|
1899
1899
|
* 数据库数量
|
|
1900
1900
|
*/
|
|
1901
|
-
Amount
|
|
1901
|
+
Amount: number;
|
|
1902
1902
|
/**
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1903
|
+
* 数据库名称数组
|
|
1904
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1905
|
+
*/
|
|
1906
|
+
MigrateDBSet: Array<string>;
|
|
1906
1907
|
/**
|
|
1907
1908
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1908
1909
|
*/
|
|
@@ -1915,7 +1916,7 @@ export interface CompleteExpansionResponse {
|
|
|
1915
1916
|
/**
|
|
1916
1917
|
* 流程ID,可通过接口DescribeFlowStatus查询立即切换升级任务的状态。
|
|
1917
1918
|
*/
|
|
1918
|
-
FlowId
|
|
1919
|
+
FlowId: number;
|
|
1919
1920
|
/**
|
|
1920
1921
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1921
1922
|
*/
|
|
@@ -2068,7 +2069,7 @@ export interface DescribeFlowStatusResponse {
|
|
|
2068
2069
|
/**
|
|
2069
2070
|
* 流程状态,0:成功,1:失败,2:运行中
|
|
2070
2071
|
*/
|
|
2071
|
-
Status
|
|
2072
|
+
Status: number;
|
|
2072
2073
|
/**
|
|
2073
2074
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2074
2075
|
*/
|
|
@@ -2081,15 +2082,15 @@ export interface QueryMigrationCheckProcessResponse {
|
|
|
2081
2082
|
/**
|
|
2082
2083
|
* 总步骤数量
|
|
2083
2084
|
*/
|
|
2084
|
-
TotalStep
|
|
2085
|
+
TotalStep: number;
|
|
2085
2086
|
/**
|
|
2086
2087
|
* 当前步骤编号,从1开始
|
|
2087
2088
|
*/
|
|
2088
|
-
CurrentStep
|
|
2089
|
+
CurrentStep: number;
|
|
2089
2090
|
/**
|
|
2090
2091
|
* 所有步骤详情
|
|
2091
2092
|
*/
|
|
2092
|
-
StepDetails
|
|
2093
|
+
StepDetails: Array<StepDetail>;
|
|
2093
2094
|
/**
|
|
2094
2095
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2095
2096
|
*/
|
|
@@ -2389,7 +2390,7 @@ export interface CreateReadOnlyDBInstancesResponse {
|
|
|
2389
2390
|
/**
|
|
2390
2391
|
* 订单名称数组
|
|
2391
2392
|
*/
|
|
2392
|
-
DealNames
|
|
2393
|
+
DealNames: Array<string>;
|
|
2393
2394
|
/**
|
|
2394
2395
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2395
2396
|
*/
|
|
@@ -3090,6 +3091,14 @@ export interface AccountDetail {
|
|
|
3090
3091
|
* 是否为管理员账户
|
|
3091
3092
|
*/
|
|
3092
3093
|
IsAdmin: boolean;
|
|
3094
|
+
/**
|
|
3095
|
+
* win-windows鉴权,sql-sqlserver鉴权
|
|
3096
|
+
*/
|
|
3097
|
+
Authentication: string;
|
|
3098
|
+
/**
|
|
3099
|
+
* win-windows鉴权账户需要host
|
|
3100
|
+
*/
|
|
3101
|
+
Host: string;
|
|
3093
3102
|
}
|
|
3094
3103
|
/**
|
|
3095
3104
|
* ModifyDatabaseMdf返回参数结构体
|
|
@@ -3807,6 +3816,10 @@ export interface AccountPrivilegeModifyInfo {
|
|
|
3807
3816
|
* 账号权限变更信息
|
|
3808
3817
|
*/
|
|
3809
3818
|
DBPrivileges: Array<DBPrivilegeModifyInfo>;
|
|
3819
|
+
/**
|
|
3820
|
+
* 是否为管理员账户
|
|
3821
|
+
*/
|
|
3822
|
+
IsAdmin?: boolean;
|
|
3810
3823
|
}
|
|
3811
3824
|
/**
|
|
3812
3825
|
* DescribeBackupMigration返回参数结构体
|
|
@@ -3849,6 +3862,10 @@ export interface AccountCreateInfo {
|
|
|
3849
3862
|
* 是否为管理员账户,默认为否
|
|
3850
3863
|
*/
|
|
3851
3864
|
IsAdmin?: boolean;
|
|
3865
|
+
/**
|
|
3866
|
+
* win-windows鉴权,sql-sqlserver鉴权,不填模式兼容接口sqlserver鉴权
|
|
3867
|
+
*/
|
|
3868
|
+
Authentication?: string;
|
|
3852
3869
|
}
|
|
3853
3870
|
/**
|
|
3854
3871
|
* RenewDBInstance返回参数结构体
|
|
@@ -3892,59 +3909,59 @@ export interface DescribeReadOnlyGroupDetailsResponse {
|
|
|
3892
3909
|
/**
|
|
3893
3910
|
* 只读组ID
|
|
3894
3911
|
*/
|
|
3895
|
-
ReadOnlyGroupId
|
|
3912
|
+
ReadOnlyGroupId: string;
|
|
3896
3913
|
/**
|
|
3897
3914
|
* 只读组名称
|
|
3898
3915
|
*/
|
|
3899
|
-
ReadOnlyGroupName
|
|
3916
|
+
ReadOnlyGroupName: string;
|
|
3900
3917
|
/**
|
|
3901
3918
|
* 只读组的地域ID,与主实例相同
|
|
3902
3919
|
*/
|
|
3903
|
-
RegionId
|
|
3920
|
+
RegionId: string;
|
|
3904
3921
|
/**
|
|
3905
3922
|
* 只读组的可用区ID,与主实例相同
|
|
3906
3923
|
*/
|
|
3907
|
-
ZoneId
|
|
3924
|
+
ZoneId: string;
|
|
3908
3925
|
/**
|
|
3909
3926
|
* 是否启动超时剔除功能,0-不开启剔除功能,1-开启剔除功能
|
|
3910
3927
|
*/
|
|
3911
|
-
IsOfflineDelay
|
|
3928
|
+
IsOfflineDelay: number;
|
|
3912
3929
|
/**
|
|
3913
3930
|
* 启动超时剔除功能后,使用的超时阈值
|
|
3914
3931
|
*/
|
|
3915
|
-
ReadOnlyMaxDelayTime
|
|
3932
|
+
ReadOnlyMaxDelayTime: number;
|
|
3916
3933
|
/**
|
|
3917
3934
|
* 启动超时剔除功能后,至少只读组保留的只读副本数
|
|
3918
3935
|
*/
|
|
3919
|
-
MinReadOnlyInGroup
|
|
3936
|
+
MinReadOnlyInGroup: number;
|
|
3920
3937
|
/**
|
|
3921
3938
|
* 只读组vip
|
|
3922
3939
|
*/
|
|
3923
|
-
Vip
|
|
3940
|
+
Vip: string;
|
|
3924
3941
|
/**
|
|
3925
3942
|
* 只读组vport
|
|
3926
3943
|
*/
|
|
3927
|
-
Vport
|
|
3944
|
+
Vport: number;
|
|
3928
3945
|
/**
|
|
3929
3946
|
* 只读组私有网络ID
|
|
3930
3947
|
*/
|
|
3931
|
-
VpcId
|
|
3948
|
+
VpcId: string;
|
|
3932
3949
|
/**
|
|
3933
3950
|
* 只读组私有网络子网ID
|
|
3934
3951
|
*/
|
|
3935
|
-
SubnetId
|
|
3952
|
+
SubnetId: string;
|
|
3936
3953
|
/**
|
|
3937
3954
|
* 只读实例副本集合
|
|
3938
3955
|
*/
|
|
3939
|
-
ReadOnlyInstanceSet
|
|
3956
|
+
ReadOnlyInstanceSet: Array<ReadOnlyInstance>;
|
|
3940
3957
|
/**
|
|
3941
3958
|
* 只读组状态: 1-申请成功运行中,5-申请中
|
|
3942
3959
|
*/
|
|
3943
|
-
Status
|
|
3960
|
+
Status: number;
|
|
3944
3961
|
/**
|
|
3945
3962
|
* 主实例ID,形如mssql-sgeshe3th
|
|
3946
3963
|
*/
|
|
3947
|
-
MasterInstanceId
|
|
3964
|
+
MasterInstanceId: string;
|
|
3948
3965
|
/**
|
|
3949
3966
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3950
3967
|
*/
|
|
@@ -4000,7 +4017,7 @@ export interface RecycleDBInstanceResponse {
|
|
|
4000
4017
|
/**
|
|
4001
4018
|
* 流程id
|
|
4002
4019
|
*/
|
|
4003
|
-
FlowId
|
|
4020
|
+
FlowId: number;
|
|
4004
4021
|
/**
|
|
4005
4022
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4006
4023
|
*/
|
|
@@ -4201,11 +4218,11 @@ export interface InquiryPriceUpgradeDBInstanceResponse {
|
|
|
4201
4218
|
/**
|
|
4202
4219
|
* 未打折的原价,其值除以100表示最终的价格。例如10094表示100.94元
|
|
4203
4220
|
*/
|
|
4204
|
-
OriginalPrice
|
|
4221
|
+
OriginalPrice: number;
|
|
4205
4222
|
/**
|
|
4206
4223
|
* 实际需要支付价格,其值除以100表示最终的价格。例如10094表示100.94元
|
|
4207
4224
|
*/
|
|
4208
|
-
Price
|
|
4225
|
+
Price: number;
|
|
4209
4226
|
/**
|
|
4210
4227
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4211
4228
|
*/
|
|
@@ -4231,59 +4248,59 @@ export interface DescribeMigrationDetailResponse {
|
|
|
4231
4248
|
/**
|
|
4232
4249
|
* 迁移任务ID
|
|
4233
4250
|
*/
|
|
4234
|
-
MigrateId
|
|
4251
|
+
MigrateId: number;
|
|
4235
4252
|
/**
|
|
4236
4253
|
* 迁移任务名称
|
|
4237
4254
|
*/
|
|
4238
|
-
MigrateName
|
|
4255
|
+
MigrateName: string;
|
|
4239
4256
|
/**
|
|
4240
4257
|
* 迁移任务所属的用户ID
|
|
4241
4258
|
*/
|
|
4242
|
-
AppId
|
|
4259
|
+
AppId: number;
|
|
4243
4260
|
/**
|
|
4244
4261
|
* 迁移任务所属的地域
|
|
4245
4262
|
*/
|
|
4246
|
-
Region
|
|
4263
|
+
Region: string;
|
|
4247
4264
|
/**
|
|
4248
4265
|
* 迁移源的类型 1:TencentDB for SQLServer 2:云服务器自建SQLServer数据库 4:SQLServer备份还原 5:SQLServer备份还原(COS方式)
|
|
4249
4266
|
*/
|
|
4250
|
-
SourceType
|
|
4267
|
+
SourceType: number;
|
|
4251
4268
|
/**
|
|
4252
4269
|
* 迁移任务的创建时间
|
|
4253
4270
|
*/
|
|
4254
|
-
CreateTime
|
|
4271
|
+
CreateTime: string;
|
|
4255
4272
|
/**
|
|
4256
4273
|
* 迁移任务的开始时间
|
|
4257
4274
|
*/
|
|
4258
|
-
StartTime
|
|
4275
|
+
StartTime: string;
|
|
4259
4276
|
/**
|
|
4260
4277
|
* 迁移任务的结束时间
|
|
4261
4278
|
*/
|
|
4262
|
-
EndTime
|
|
4279
|
+
EndTime: string;
|
|
4263
4280
|
/**
|
|
4264
4281
|
* 迁移任务的状态(1:初始化,4:迁移中,5.迁移失败,6.迁移成功)
|
|
4265
4282
|
*/
|
|
4266
|
-
Status
|
|
4283
|
+
Status: number;
|
|
4267
4284
|
/**
|
|
4268
4285
|
* 迁移任务当前进度
|
|
4269
4286
|
*/
|
|
4270
|
-
Progress
|
|
4287
|
+
Progress: number;
|
|
4271
4288
|
/**
|
|
4272
4289
|
* 迁移类型(1:结构迁移 2:数据迁移 3:增量同步)
|
|
4273
4290
|
*/
|
|
4274
|
-
MigrateType
|
|
4291
|
+
MigrateType: number;
|
|
4275
4292
|
/**
|
|
4276
4293
|
* 迁移源
|
|
4277
4294
|
*/
|
|
4278
|
-
Source
|
|
4295
|
+
Source: MigrateSource;
|
|
4279
4296
|
/**
|
|
4280
4297
|
* 迁移目标
|
|
4281
4298
|
*/
|
|
4282
|
-
Target
|
|
4299
|
+
Target: MigrateTarget;
|
|
4283
4300
|
/**
|
|
4284
4301
|
* 迁移DB对象 ,离线迁移(SourceType=4或SourceType=5)不使用。
|
|
4285
4302
|
*/
|
|
4286
|
-
MigrateDBSet
|
|
4303
|
+
MigrateDBSet: Array<MigrateDB>;
|
|
4287
4304
|
/**
|
|
4288
4305
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4289
4306
|
*/
|
|
@@ -4440,6 +4457,10 @@ export interface UpgradeDBInstanceRequest {
|
|
|
4440
4457
|
* 修改实例是否为跨可用区容灾,SameZones-修改为同可用区 MultiZones-修改为夸可用区
|
|
4441
4458
|
*/
|
|
4442
4459
|
MultiZones?: string;
|
|
4460
|
+
/**
|
|
4461
|
+
* 执行变配的方式,默认为 1。支持值包括:0 - 立刻执行,1 - 维护时间窗执行
|
|
4462
|
+
*/
|
|
4463
|
+
WaitSwitch?: number;
|
|
4443
4464
|
}
|
|
4444
4465
|
/**
|
|
4445
4466
|
* CreateAccount请求参数结构体
|
|
@@ -4500,11 +4521,11 @@ export interface InquiryPriceRenewDBInstanceResponse {
|
|
|
4500
4521
|
/**
|
|
4501
4522
|
* 未打折的原价,其值除以100表示最终的价格。例如10094表示100.94元
|
|
4502
4523
|
*/
|
|
4503
|
-
OriginalPrice
|
|
4524
|
+
OriginalPrice: number;
|
|
4504
4525
|
/**
|
|
4505
4526
|
* 实际需要支付价格,其值除以100表示最终的价格。例如10094表示100.94元
|
|
4506
4527
|
*/
|
|
4507
|
-
Price
|
|
4528
|
+
Price: number;
|
|
4508
4529
|
/**
|
|
4509
4530
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4510
4531
|
*/
|
|
@@ -4749,7 +4770,7 @@ export interface StopMigrationResponse {
|
|
|
4749
4770
|
/**
|
|
4750
4771
|
* 中止迁移流程发起后,返回的流程id
|
|
4751
4772
|
*/
|
|
4752
|
-
FlowId
|
|
4773
|
+
FlowId: number;
|
|
4753
4774
|
/**
|
|
4754
4775
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4755
4776
|
*/
|
|
@@ -4783,7 +4804,7 @@ export interface CreatePublishSubscribeResponse {
|
|
|
4783
4804
|
/**
|
|
4784
4805
|
* 流程ID,可通过接口DescribeFlowStatus查询立即切换升级任务的状态。
|
|
4785
4806
|
*/
|
|
4786
|
-
FlowId
|
|
4807
|
+
FlowId: number;
|
|
4787
4808
|
/**
|
|
4788
4809
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4789
4810
|
*/
|
|
@@ -4839,7 +4860,7 @@ export interface UpgradeDBInstanceResponse {
|
|
|
4839
4860
|
/**
|
|
4840
4861
|
* 订单名称
|
|
4841
4862
|
*/
|
|
4842
|
-
DealName
|
|
4863
|
+
DealName: string;
|
|
4843
4864
|
/**
|
|
4844
4865
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4845
4866
|
*/
|
|
@@ -4956,11 +4977,11 @@ export interface CreateDBInstancesResponse {
|
|
|
4956
4977
|
/**
|
|
4957
4978
|
* 订单名称
|
|
4958
4979
|
*/
|
|
4959
|
-
DealName
|
|
4980
|
+
DealName: string;
|
|
4960
4981
|
/**
|
|
4961
4982
|
* 订单名称数组
|
|
4962
4983
|
*/
|
|
4963
|
-
DealNames
|
|
4984
|
+
DealNames: Array<string>;
|
|
4964
4985
|
/**
|
|
4965
4986
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4966
4987
|
*/
|