tencentcloud-sdk-sqlserver 3.0.1074 → 3.0.1077

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180328/models.rb +29 -17
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a34e7ff6a3a2c14408dcfdf65254f2ff07ad952f
4
- data.tar.gz: 98dc637cb92e65d9a09e5f2a2ad5fafa839b9338
3
+ metadata.gz: 193a9670277d697956761c6f63c70831cff89868
4
+ data.tar.gz: 69206dfbd047d993fa924597a3aa79b1cf3ef37a
5
5
  SHA512:
6
- metadata.gz: ad06bad4d23f389225157f2f209cdba5ce2f16cd480f3c912cfe962e5ba54bcec19fffe53b283f6e3959521d09f59d07c93d7b233d9737aad481e106209fb37b
7
- data.tar.gz: e5f580f5c72dc3f93a6237be4fef14880357e0ebd1906b7264252a0df800dac507ee96bf1eb998ef968925e5a27e2dcfb73abd1c54eab03fa5b5febed264e75a
6
+ metadata.gz: 74b98236254e88c701c21fb062df9b88d68c4ac7b5b02131be1d6fe681a8d6e9509fb0f62d9af3a3dd77edcbd093fd0821c013b5a64800eea6576d1921d41d96
7
+ data.tar.gz: ae88099b33574f4960771c1a94b47ee79ae574be27a922455576818dcbc9c71138f96b4f1c44050bc0e608a017002ef5c7eb982f52f4c5ca603a9444e98ac9c4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1074
1
+ 3.0.1077
@@ -2675,8 +2675,8 @@ module TencentCloud
2675
2675
 
2676
2676
  attr_accessor :IsSubscribed, :CollationName, :IsAutoCleanupOn, :IsBrokerEnabled, :IsCdcEnabled, :IsDbChainingOn, :IsEncrypted, :IsFulltextEnabled, :IsMirroring, :IsPublished, :IsReadCommittedSnapshotOn, :IsTrustworthyOn, :MirroringState, :Name, :RecoveryModelDesc, :RetentionPeriod, :StateDesc, :UserAccessDesc, :CreateTime, :IsFullTextEnabled
2677
2677
  extend Gem::Deprecate
2678
- deprecate :IsFulltextEnabled, :none, 2025, 5
2679
- deprecate :IsFulltextEnabled=, :none, 2025, 5
2678
+ deprecate :IsFulltextEnabled, :none, 2025, 6
2679
+ deprecate :IsFulltextEnabled=, :none, 2025, 6
2680
2680
 
2681
2681
  def initialize(issubscribed=nil, collationname=nil, isautocleanupon=nil, isbrokerenabled=nil, iscdcenabled=nil, isdbchainingon=nil, isencrypted=nil, ismirroring=nil, ispublished=nil, isreadcommittedsnapshoton=nil, istrustworthyon=nil, mirroringstate=nil, name=nil, recoverymodeldesc=nil, retentionperiod=nil, statedesc=nil, useraccessdesc=nil, createtime=nil, isfulltextenabled=nil)
2682
2682
  @IsSubscribed = issubscribed
@@ -3420,18 +3420,21 @@ module TencentCloud
3420
3420
  # @type Offset: Integer
3421
3421
  # @param DatabaseName: 按照备份的库名称筛选,不填则不筛选此项
3422
3422
  # @type DatabaseName: String
3423
- # @param OrderBy: 列表项排序,目前只按照备份大小排序(desc-降序,asc-升序),默认desc
3423
+ # @param OrderBy: 列表项排序,desc-降序、asc-升序,按size排序默认desc,按database排序默认asc
3424
3424
  # @type OrderBy: String
3425
+ # @param OrderByType: 排序字段(Size-按备份大小排序,DBs-按数据库名称排序),默认size
3426
+ # @type OrderByType: String
3425
3427
 
3426
- attr_accessor :InstanceId, :GroupId, :Limit, :Offset, :DatabaseName, :OrderBy
3428
+ attr_accessor :InstanceId, :GroupId, :Limit, :Offset, :DatabaseName, :OrderBy, :OrderByType
3427
3429
 
3428
- def initialize(instanceid=nil, groupid=nil, limit=nil, offset=nil, databasename=nil, orderby=nil)
3430
+ def initialize(instanceid=nil, groupid=nil, limit=nil, offset=nil, databasename=nil, orderby=nil, orderbytype=nil)
3429
3431
  @InstanceId = instanceid
3430
3432
  @GroupId = groupid
3431
3433
  @Limit = limit
3432
3434
  @Offset = offset
3433
3435
  @DatabaseName = databasename
3434
3436
  @OrderBy = orderby
3437
+ @OrderByType = orderbytype
3435
3438
  end
3436
3439
 
3437
3440
  def deserialize(params)
@@ -3441,6 +3444,7 @@ module TencentCloud
3441
3444
  @Offset = params['Offset']
3442
3445
  @DatabaseName = params['DatabaseName']
3443
3446
  @OrderBy = params['OrderBy']
3447
+ @OrderByType = params['OrderByType']
3444
3448
  end
3445
3449
  end
3446
3450
 
@@ -4800,16 +4804,19 @@ module TencentCloud
4800
4804
  # @type OrderByType: String
4801
4805
  # @param Encryption: 是否已开启TDE加密,enable-已加密,disable-未加密
4802
4806
  # @type Encryption: String
4807
+ # @param OrderBy: 排序字段(Name-按名称排序,CreateTime-按创建时间排序),默认CreateTime
4808
+ # @type OrderBy: String
4803
4809
 
4804
- attr_accessor :InstanceIdSet, :Limit, :Offset, :Name, :OrderByType, :Encryption
4810
+ attr_accessor :InstanceIdSet, :Limit, :Offset, :Name, :OrderByType, :Encryption, :OrderBy
4805
4811
 
4806
- def initialize(instanceidset=nil, limit=nil, offset=nil, name=nil, orderbytype=nil, encryption=nil)
4812
+ def initialize(instanceidset=nil, limit=nil, offset=nil, name=nil, orderbytype=nil, encryption=nil, orderby=nil)
4807
4813
  @InstanceIdSet = instanceidset
4808
4814
  @Limit = limit
4809
4815
  @Offset = offset
4810
4816
  @Name = name
4811
4817
  @OrderByType = orderbytype
4812
4818
  @Encryption = encryption
4819
+ @OrderBy = orderby
4813
4820
  end
4814
4821
 
4815
4822
  def deserialize(params)
@@ -4819,6 +4826,7 @@ module TencentCloud
4819
4826
  @Name = params['Name']
4820
4827
  @OrderByType = params['OrderByType']
4821
4828
  @Encryption = params['Encryption']
4829
+ @OrderBy = params['OrderBy']
4822
4830
  end
4823
4831
  end
4824
4832
 
@@ -4958,16 +4966,19 @@ module TencentCloud
4958
4966
  # @type OrderByType: String
4959
4967
  # @param Encryption: 是否已开启TDE加密,enable-已加密,disable-未加密
4960
4968
  # @type Encryption: String
4969
+ # @param OrderBy: 排序字段(Name-按名称排序,CreateTime-按创建时间排序),默认CreateTime
4970
+ # @type OrderBy: String
4961
4971
 
4962
- attr_accessor :InstanceIdSet, :Limit, :Offset, :Name, :OrderByType, :Encryption
4972
+ attr_accessor :InstanceIdSet, :Limit, :Offset, :Name, :OrderByType, :Encryption, :OrderBy
4963
4973
 
4964
- def initialize(instanceidset=nil, limit=nil, offset=nil, name=nil, orderbytype=nil, encryption=nil)
4974
+ def initialize(instanceidset=nil, limit=nil, offset=nil, name=nil, orderbytype=nil, encryption=nil, orderby=nil)
4965
4975
  @InstanceIdSet = instanceidset
4966
4976
  @Limit = limit
4967
4977
  @Offset = offset
4968
4978
  @Name = name
4969
4979
  @OrderByType = orderbytype
4970
4980
  @Encryption = encryption
4981
+ @OrderBy = orderby
4971
4982
  end
4972
4983
 
4973
4984
  def deserialize(params)
@@ -4977,6 +4988,7 @@ module TencentCloud
4977
4988
  @Name = params['Name']
4978
4989
  @OrderByType = params['OrderByType']
4979
4990
  @Encryption = params['Encryption']
4991
+ @OrderBy = params['OrderBy']
4980
4992
  end
4981
4993
  end
4982
4994
 
@@ -6786,8 +6798,8 @@ module TencentCloud
6786
6798
 
6787
6799
  attr_accessor :TotalCount, :Slowlogs, :SlowLogs, :RequestId
6788
6800
  extend Gem::Deprecate
6789
- deprecate :Slowlogs, :none, 2025, 5
6790
- deprecate :Slowlogs=, :none, 2025, 5
6801
+ deprecate :Slowlogs, :none, 2025, 6
6802
+ deprecate :Slowlogs=, :none, 2025, 6
6791
6803
 
6792
6804
  def initialize(totalcount=nil, slowlogs=nil, requestid=nil)
6793
6805
  @TotalCount = totalcount
@@ -7007,8 +7019,8 @@ module TencentCloud
7007
7019
 
7008
7020
  attr_accessor :BucketName, :Region, :Path, :TmpSecretId, :TmpSecretKey, :XCosSecurityToken, :StartTime, :ExpiredTime, :CosSecurityToken, :RequestId
7009
7021
  extend Gem::Deprecate
7010
- deprecate :XCosSecurityToken, :none, 2025, 5
7011
- deprecate :XCosSecurityToken=, :none, 2025, 5
7022
+ deprecate :XCosSecurityToken, :none, 2025, 6
7023
+ deprecate :XCosSecurityToken=, :none, 2025, 6
7012
7024
 
7013
7025
  def initialize(bucketname=nil, region=nil, path=nil, tmpsecretid=nil, tmpsecretkey=nil, xcossecuritytoken=nil, starttime=nil, expiredtime=nil, cossecuritytoken=nil, requestid=nil)
7014
7026
  @BucketName = bucketname
@@ -7086,8 +7098,8 @@ module TencentCloud
7086
7098
 
7087
7099
  attr_accessor :BucketName, :Region, :Path, :TmpSecretId, :TmpSecretKey, :XCosSecurityToken, :StartTime, :ExpiredTime, :CosSecurityToken, :RequestId
7088
7100
  extend Gem::Deprecate
7089
- deprecate :XCosSecurityToken, :none, 2025, 5
7090
- deprecate :XCosSecurityToken=, :none, 2025, 5
7101
+ deprecate :XCosSecurityToken, :none, 2025, 6
7102
+ deprecate :XCosSecurityToken=, :none, 2025, 6
7091
7103
 
7092
7104
  def initialize(bucketname=nil, region=nil, path=nil, tmpsecretid=nil, tmpsecretkey=nil, xcossecuritytoken=nil, starttime=nil, expiredtime=nil, cossecuritytoken=nil, requestid=nil)
7093
7105
  @BucketName = bucketname
@@ -8415,8 +8427,8 @@ module TencentCloud
8415
8427
 
8416
8428
  attr_accessor :Errno, :Msg, :Code, :RequestId
8417
8429
  extend Gem::Deprecate
8418
- deprecate :Errno, :none, 2025, 5
8419
- deprecate :Errno=, :none, 2025, 5
8430
+ deprecate :Errno, :none, 2025, 6
8431
+ deprecate :Errno=, :none, 2025, 6
8420
8432
 
8421
8433
  def initialize(errno=nil, msg=nil, code=nil, requestid=nil)
8422
8434
  @Errno = errno
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-sqlserver
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1074
4
+ version: 3.0.1077
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-04 00:00:00.000000000 Z
11
+ date: 2025-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common