tencentcloud-sdk-nodejs-sqlserver 4.0.721 → 4.0.723
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 +246 -0
- package/SERVICE_CHANGELOG.md +229 -110
- package/package.json +1 -1
- package/products.md +23 -23
- package/src/services/sqlserver/v20180328/sqlserver_client.ts +5 -4
- package/src/services/sqlserver/v20180328/sqlserver_models.ts +108 -43
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_client.d.ts +4 -4
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_client.js +3 -3
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +107 -43
|
@@ -577,12 +577,17 @@ export interface ModifyReadOnlyGroupDetailsResponse {
|
|
|
577
577
|
export interface ModifyBackupStrategyResponse {
|
|
578
578
|
/**
|
|
579
579
|
* 返回错误码
|
|
580
|
+
* @deprecated
|
|
580
581
|
*/
|
|
581
|
-
Errno
|
|
582
|
+
Errno?: number;
|
|
582
583
|
/**
|
|
583
584
|
* 返回错误信息
|
|
584
585
|
*/
|
|
585
|
-
Msg
|
|
586
|
+
Msg?: string;
|
|
587
|
+
/**
|
|
588
|
+
* 返回错误码
|
|
589
|
+
*/
|
|
590
|
+
Code?: number;
|
|
586
591
|
/**
|
|
587
592
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
588
593
|
*/
|
|
@@ -3074,35 +3079,40 @@ export interface DescribeUploadIncrementalInfoResponse {
|
|
|
3074
3079
|
/**
|
|
3075
3080
|
* 存储桶名称
|
|
3076
3081
|
*/
|
|
3077
|
-
BucketName
|
|
3082
|
+
BucketName?: string;
|
|
3078
3083
|
/**
|
|
3079
3084
|
* 存储桶地域信息
|
|
3080
3085
|
*/
|
|
3081
|
-
Region
|
|
3086
|
+
Region?: string;
|
|
3082
3087
|
/**
|
|
3083
3088
|
* 存储路径
|
|
3084
3089
|
*/
|
|
3085
|
-
Path
|
|
3090
|
+
Path?: string;
|
|
3086
3091
|
/**
|
|
3087
3092
|
* 临时密钥ID
|
|
3088
3093
|
*/
|
|
3089
|
-
TmpSecretId
|
|
3094
|
+
TmpSecretId?: string;
|
|
3090
3095
|
/**
|
|
3091
3096
|
* 临时密钥Key
|
|
3092
3097
|
*/
|
|
3093
|
-
TmpSecretKey
|
|
3098
|
+
TmpSecretKey?: string;
|
|
3094
3099
|
/**
|
|
3095
3100
|
* 临时密钥Token
|
|
3101
|
+
* @deprecated
|
|
3096
3102
|
*/
|
|
3097
|
-
XCosSecurityToken
|
|
3103
|
+
XCosSecurityToken?: string;
|
|
3098
3104
|
/**
|
|
3099
3105
|
* 临时密钥开始时间
|
|
3100
3106
|
*/
|
|
3101
|
-
StartTime
|
|
3107
|
+
StartTime?: string;
|
|
3102
3108
|
/**
|
|
3103
3109
|
* 临时密钥到期时间
|
|
3104
3110
|
*/
|
|
3105
|
-
ExpiredTime
|
|
3111
|
+
ExpiredTime?: string;
|
|
3112
|
+
/**
|
|
3113
|
+
* 临时密钥Token
|
|
3114
|
+
*/
|
|
3115
|
+
CosSecurityToken?: string;
|
|
3106
3116
|
/**
|
|
3107
3117
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3108
3118
|
*/
|
|
@@ -3795,7 +3805,7 @@ export interface ModifyDatabaseMdfResponse {
|
|
|
3795
3805
|
/**
|
|
3796
3806
|
* 流程ID
|
|
3797
3807
|
*/
|
|
3798
|
-
FlowId
|
|
3808
|
+
FlowId?: number;
|
|
3799
3809
|
/**
|
|
3800
3810
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3801
3811
|
*/
|
|
@@ -4095,35 +4105,40 @@ export interface DescribeUploadBackupInfoResponse {
|
|
|
4095
4105
|
/**
|
|
4096
4106
|
* 存储桶名称
|
|
4097
4107
|
*/
|
|
4098
|
-
BucketName
|
|
4108
|
+
BucketName?: string;
|
|
4099
4109
|
/**
|
|
4100
4110
|
* 存储桶地域信息
|
|
4101
4111
|
*/
|
|
4102
|
-
Region
|
|
4112
|
+
Region?: string;
|
|
4103
4113
|
/**
|
|
4104
4114
|
* 存储路径
|
|
4105
4115
|
*/
|
|
4106
|
-
Path
|
|
4116
|
+
Path?: string;
|
|
4107
4117
|
/**
|
|
4108
4118
|
* 临时密钥ID
|
|
4109
4119
|
*/
|
|
4110
|
-
TmpSecretId
|
|
4120
|
+
TmpSecretId?: string;
|
|
4111
4121
|
/**
|
|
4112
4122
|
* 临时密钥Key
|
|
4113
4123
|
*/
|
|
4114
|
-
TmpSecretKey
|
|
4124
|
+
TmpSecretKey?: string;
|
|
4115
4125
|
/**
|
|
4116
4126
|
* 临时密钥Token
|
|
4127
|
+
* @deprecated
|
|
4117
4128
|
*/
|
|
4118
|
-
XCosSecurityToken
|
|
4129
|
+
XCosSecurityToken?: string;
|
|
4119
4130
|
/**
|
|
4120
4131
|
* 临时密钥开始时间
|
|
4121
4132
|
*/
|
|
4122
|
-
StartTime
|
|
4133
|
+
StartTime?: string;
|
|
4123
4134
|
/**
|
|
4124
4135
|
* 临时密钥到期时间
|
|
4125
4136
|
*/
|
|
4126
|
-
ExpiredTime
|
|
4137
|
+
ExpiredTime?: string;
|
|
4138
|
+
/**
|
|
4139
|
+
* 临时密钥Token
|
|
4140
|
+
*/
|
|
4141
|
+
CosSecurityToken?: string;
|
|
4127
4142
|
/**
|
|
4128
4143
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4129
4144
|
*/
|
|
@@ -4397,79 +4412,85 @@ export interface DbNormalDetail {
|
|
|
4397
4412
|
/**
|
|
4398
4413
|
* 是否已订阅 0:否 1:是
|
|
4399
4414
|
*/
|
|
4400
|
-
IsSubscribed
|
|
4415
|
+
IsSubscribed?: string;
|
|
4401
4416
|
/**
|
|
4402
4417
|
* 数据库排序规则
|
|
4403
4418
|
*/
|
|
4404
|
-
CollationName
|
|
4419
|
+
CollationName?: string;
|
|
4405
4420
|
/**
|
|
4406
4421
|
* 开启CT之后是否自动清理 0:否 1:是
|
|
4407
4422
|
*/
|
|
4408
|
-
IsAutoCleanupOn
|
|
4423
|
+
IsAutoCleanupOn?: string;
|
|
4409
4424
|
/**
|
|
4410
4425
|
* 是否已启用代理 0:否 1:是
|
|
4411
4426
|
*/
|
|
4412
|
-
IsBrokerEnabled
|
|
4427
|
+
IsBrokerEnabled?: string;
|
|
4413
4428
|
/**
|
|
4414
4429
|
* 是否已开启/关闭CDC 0:关闭 1:开启
|
|
4415
4430
|
*/
|
|
4416
|
-
IsCdcEnabled
|
|
4431
|
+
IsCdcEnabled?: string;
|
|
4417
4432
|
/**
|
|
4418
4433
|
* 是否已启用/ 禁用CT 0:禁用 1:启用
|
|
4419
4434
|
*/
|
|
4420
|
-
IsDbChainingOn
|
|
4435
|
+
IsDbChainingOn?: string;
|
|
4421
4436
|
/**
|
|
4422
4437
|
* 是否加密 0:否 1:是
|
|
4423
4438
|
*/
|
|
4424
|
-
IsEncrypted
|
|
4439
|
+
IsEncrypted?: string;
|
|
4425
4440
|
/**
|
|
4426
4441
|
* 是否全文启用 0:否 1:是
|
|
4442
|
+
* @deprecated
|
|
4427
4443
|
*/
|
|
4428
|
-
IsFulltextEnabled
|
|
4444
|
+
IsFulltextEnabled?: string;
|
|
4429
4445
|
/**
|
|
4430
4446
|
* 是否是镜像 0:否 1:是
|
|
4431
4447
|
*/
|
|
4432
|
-
IsMirroring
|
|
4448
|
+
IsMirroring?: string;
|
|
4433
4449
|
/**
|
|
4434
4450
|
* 是否已发布 0:否 1:是
|
|
4435
4451
|
*/
|
|
4436
|
-
IsPublished
|
|
4452
|
+
IsPublished?: string;
|
|
4437
4453
|
/**
|
|
4438
4454
|
* 是否开启快照 0:否 1:是
|
|
4439
4455
|
*/
|
|
4440
|
-
IsReadCommittedSnapshotOn
|
|
4456
|
+
IsReadCommittedSnapshotOn?: string;
|
|
4441
4457
|
/**
|
|
4442
4458
|
* 是否可信任 0:否 1:是
|
|
4443
4459
|
*/
|
|
4444
|
-
IsTrustworthyOn
|
|
4460
|
+
IsTrustworthyOn?: string;
|
|
4445
4461
|
/**
|
|
4446
4462
|
* 镜像状态
|
|
4447
4463
|
*/
|
|
4448
|
-
MirroringState
|
|
4464
|
+
MirroringState?: string;
|
|
4449
4465
|
/**
|
|
4450
4466
|
* 数据库名称
|
|
4451
4467
|
*/
|
|
4452
|
-
Name
|
|
4468
|
+
Name?: string;
|
|
4453
4469
|
/**
|
|
4454
4470
|
* 恢复模式
|
|
4455
4471
|
*/
|
|
4456
|
-
RecoveryModelDesc
|
|
4472
|
+
RecoveryModelDesc?: string;
|
|
4457
4473
|
/**
|
|
4458
4474
|
* 保留天数
|
|
4459
4475
|
*/
|
|
4460
|
-
RetentionPeriod
|
|
4476
|
+
RetentionPeriod?: string;
|
|
4461
4477
|
/**
|
|
4462
4478
|
* 数据库状态
|
|
4463
4479
|
*/
|
|
4464
|
-
StateDesc
|
|
4480
|
+
StateDesc?: string;
|
|
4465
4481
|
/**
|
|
4466
4482
|
* 用户类型
|
|
4467
4483
|
*/
|
|
4468
|
-
UserAccessDesc
|
|
4484
|
+
UserAccessDesc?: string;
|
|
4469
4485
|
/**
|
|
4470
4486
|
* 数据库创建时间
|
|
4471
4487
|
*/
|
|
4472
4488
|
CreateTime?: string;
|
|
4489
|
+
/**
|
|
4490
|
+
* 是否全文启用 0:否 1:是
|
|
4491
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4492
|
+
*/
|
|
4493
|
+
IsFullTextEnabled?: string;
|
|
4473
4494
|
}
|
|
4474
4495
|
/**
|
|
4475
4496
|
* TDE透明数据加密配置
|
|
@@ -5440,6 +5461,19 @@ export interface ModifyPublishSubscribeNameResponse {
|
|
|
5440
5461
|
*/
|
|
5441
5462
|
RequestId?: string;
|
|
5442
5463
|
}
|
|
5464
|
+
/**
|
|
5465
|
+
* StopMigration返回参数结构体
|
|
5466
|
+
*/
|
|
5467
|
+
export interface StopMigrationResponse {
|
|
5468
|
+
/**
|
|
5469
|
+
* 中止迁移流程发起后,返回的流程id
|
|
5470
|
+
*/
|
|
5471
|
+
FlowId: number;
|
|
5472
|
+
/**
|
|
5473
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5474
|
+
*/
|
|
5475
|
+
RequestId?: string;
|
|
5476
|
+
}
|
|
5443
5477
|
/**
|
|
5444
5478
|
* CreateAccount返回参数结构体
|
|
5445
5479
|
*/
|
|
@@ -5677,8 +5711,13 @@ export interface DescribeSlowlogsResponse {
|
|
|
5677
5711
|
TotalCount?: number;
|
|
5678
5712
|
/**
|
|
5679
5713
|
* 慢查询日志信息列表
|
|
5714
|
+
* @deprecated
|
|
5680
5715
|
*/
|
|
5681
5716
|
Slowlogs?: Array<SlowlogInfo>;
|
|
5717
|
+
/**
|
|
5718
|
+
* 慢查询日志信息列表
|
|
5719
|
+
*/
|
|
5720
|
+
SlowLogs?: Array<SlowLog>;
|
|
5682
5721
|
/**
|
|
5683
5722
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5684
5723
|
*/
|
|
@@ -5887,17 +5926,42 @@ export interface ModifyBackupNameRequest {
|
|
|
5887
5926
|
GroupId?: string;
|
|
5888
5927
|
}
|
|
5889
5928
|
/**
|
|
5890
|
-
*
|
|
5929
|
+
* 慢查询日志文件信息
|
|
5891
5930
|
*/
|
|
5892
|
-
export interface
|
|
5931
|
+
export interface SlowLog {
|
|
5893
5932
|
/**
|
|
5894
|
-
*
|
|
5933
|
+
* 慢查询日志文件唯一标识
|
|
5895
5934
|
*/
|
|
5896
|
-
|
|
5935
|
+
Id: number;
|
|
5897
5936
|
/**
|
|
5898
|
-
*
|
|
5937
|
+
* 文件生成的开始时间
|
|
5899
5938
|
*/
|
|
5900
|
-
|
|
5939
|
+
StartTime: string;
|
|
5940
|
+
/**
|
|
5941
|
+
* 文件生成的结束时间
|
|
5942
|
+
*/
|
|
5943
|
+
EndTime: string;
|
|
5944
|
+
/**
|
|
5945
|
+
* 文件大小(KB)
|
|
5946
|
+
*/
|
|
5947
|
+
Size: number;
|
|
5948
|
+
/**
|
|
5949
|
+
* 文件中log条数
|
|
5950
|
+
*/
|
|
5951
|
+
Count: number;
|
|
5952
|
+
/**
|
|
5953
|
+
* 内网下载地址
|
|
5954
|
+
*/
|
|
5955
|
+
InternalAddr: string;
|
|
5956
|
+
/**
|
|
5957
|
+
* 外网下载地址
|
|
5958
|
+
*/
|
|
5959
|
+
ExternalAddr: string;
|
|
5960
|
+
/**
|
|
5961
|
+
* 状态(1成功 2失败)
|
|
5962
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5963
|
+
*/
|
|
5964
|
+
Status: number;
|
|
5901
5965
|
}
|
|
5902
5966
|
/**
|
|
5903
5967
|
* 数据库重命名返回参数
|