tencentcloud-sdk-sqlserver 3.0.1144 → 3.0.1160
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180328/models.rb +28 -16
- metadata +3 -3
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 08ddc1e27cdac39706e492f1ae3c5b99dc757b70
         | 
| 4 | 
            +
              data.tar.gz: a5eaaf74d168037b1a80558056b760b0885ca2bb
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: c374bf9aa73686f4cfca8513da73dca3d3e4ad97e5a1b635acd7b622ccf1ae729de93c90c23517e4d67ece0dd0b37bb80b9b2377db93056efa4bc0120cdb221d
         | 
| 7 | 
            +
              data.tar.gz: a59a44df874f11e11a861a934ff79a53638f498b3efb4d6d28d9cda9372b78cb19e55480653749e5971edda9457b72bca3e1183493b77e1cc759ba1dc4d3d05e
         | 
    
        data/lib/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            3.0. | 
| 1 | 
            +
            3.0.1160
         | 
    
        data/lib/v20180328/models.rb
    CHANGED
    
    | @@ -2672,13 +2672,17 @@ module TencentCloud | |
| 2672 2672 | 
             
                    # @type CreateTime: String
         | 
| 2673 2673 | 
             
                    # @param IsFullTextEnabled: 是否全文启用 0:否 1:是
         | 
| 2674 2674 | 
             
                    # @type IsFullTextEnabled: String
         | 
| 2675 | 
            +
                    # @param IsAvailabilityGroups: 是否是可用性组 0:否 1:是
         | 
| 2676 | 
            +
                    # @type IsAvailabilityGroups: String
         | 
| 2677 | 
            +
                    # @param AGSyncState: AG组数据库同步状态
         | 
| 2678 | 
            +
                    # @type AGSyncState: String
         | 
| 2675 2679 |  | 
| 2676 | 
            -
                    attr_accessor :IsSubscribed, :CollationName, :IsAutoCleanupOn, :IsBrokerEnabled, :IsCdcEnabled, :IsDbChainingOn, :IsEncrypted, :IsFulltextEnabled, :IsMirroring, :IsPublished, :IsReadCommittedSnapshotOn, :IsTrustworthyOn, :MirroringState, :Name, :RecoveryModelDesc, :RetentionPeriod, :StateDesc, :UserAccessDesc, :CreateTime, :IsFullTextEnabled
         | 
| 2680 | 
            +
                    attr_accessor :IsSubscribed, :CollationName, :IsAutoCleanupOn, :IsBrokerEnabled, :IsCdcEnabled, :IsDbChainingOn, :IsEncrypted, :IsFulltextEnabled, :IsMirroring, :IsPublished, :IsReadCommittedSnapshotOn, :IsTrustworthyOn, :MirroringState, :Name, :RecoveryModelDesc, :RetentionPeriod, :StateDesc, :UserAccessDesc, :CreateTime, :IsFullTextEnabled, :IsAvailabilityGroups, :AGSyncState
         | 
| 2677 2681 | 
             
                    extend Gem::Deprecate
         | 
| 2678 | 
            -
                    deprecate :IsFulltextEnabled, :none, 2025,  | 
| 2679 | 
            -
                    deprecate :IsFulltextEnabled=, :none, 2025,  | 
| 2682 | 
            +
                    deprecate :IsFulltextEnabled, :none, 2025, 10
         | 
| 2683 | 
            +
                    deprecate :IsFulltextEnabled=, :none, 2025, 10
         | 
| 2680 2684 |  | 
| 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)
         | 
| 2685 | 
            +
                    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, isavailabilitygroups=nil, agsyncstate=nil)
         | 
| 2682 2686 | 
             
                      @IsSubscribed = issubscribed
         | 
| 2683 2687 | 
             
                      @CollationName = collationname
         | 
| 2684 2688 | 
             
                      @IsAutoCleanupOn = isautocleanupon
         | 
| @@ -2698,6 +2702,8 @@ module TencentCloud | |
| 2698 2702 | 
             
                      @UserAccessDesc = useraccessdesc
         | 
| 2699 2703 | 
             
                      @CreateTime = createtime
         | 
| 2700 2704 | 
             
                      @IsFullTextEnabled = isfulltextenabled
         | 
| 2705 | 
            +
                      @IsAvailabilityGroups = isavailabilitygroups
         | 
| 2706 | 
            +
                      @AGSyncState = agsyncstate
         | 
| 2701 2707 | 
             
                    end
         | 
| 2702 2708 |  | 
| 2703 2709 | 
             
                    def deserialize(params)
         | 
| @@ -2720,6 +2726,8 @@ module TencentCloud | |
| 2720 2726 | 
             
                      @UserAccessDesc = params['UserAccessDesc']
         | 
| 2721 2727 | 
             
                      @CreateTime = params['CreateTime']
         | 
| 2722 2728 | 
             
                      @IsFullTextEnabled = params['IsFullTextEnabled']
         | 
| 2729 | 
            +
                      @IsAvailabilityGroups = params['IsAvailabilityGroups']
         | 
| 2730 | 
            +
                      @AGSyncState = params['AGSyncState']
         | 
| 2723 2731 | 
             
                    end
         | 
| 2724 2732 | 
             
                  end
         | 
| 2725 2733 |  | 
| @@ -6811,8 +6819,8 @@ module TencentCloud | |
| 6811 6819 |  | 
| 6812 6820 | 
             
                    attr_accessor :TotalCount, :Slowlogs, :SlowLogs, :RequestId
         | 
| 6813 6821 | 
             
                    extend Gem::Deprecate
         | 
| 6814 | 
            -
                    deprecate :Slowlogs, :none, 2025,  | 
| 6815 | 
            -
                    deprecate :Slowlogs=, :none, 2025,  | 
| 6822 | 
            +
                    deprecate :Slowlogs, :none, 2025, 10
         | 
| 6823 | 
            +
                    deprecate :Slowlogs=, :none, 2025, 10
         | 
| 6816 6824 |  | 
| 6817 6825 | 
             
                    def initialize(totalcount=nil, slowlogs=nil, requestid=nil)
         | 
| 6818 6826 | 
             
                      @TotalCount = totalcount
         | 
| @@ -7032,8 +7040,8 @@ module TencentCloud | |
| 7032 7040 |  | 
| 7033 7041 | 
             
                    attr_accessor :BucketName, :Region, :Path, :TmpSecretId, :TmpSecretKey, :XCosSecurityToken, :StartTime, :ExpiredTime, :CosSecurityToken, :RequestId
         | 
| 7034 7042 | 
             
                    extend Gem::Deprecate
         | 
| 7035 | 
            -
                    deprecate :XCosSecurityToken, :none, 2025,  | 
| 7036 | 
            -
                    deprecate :XCosSecurityToken=, :none, 2025,  | 
| 7043 | 
            +
                    deprecate :XCosSecurityToken, :none, 2025, 10
         | 
| 7044 | 
            +
                    deprecate :XCosSecurityToken=, :none, 2025, 10
         | 
| 7037 7045 |  | 
| 7038 7046 | 
             
                    def initialize(bucketname=nil, region=nil, path=nil, tmpsecretid=nil, tmpsecretkey=nil, xcossecuritytoken=nil, starttime=nil, expiredtime=nil, cossecuritytoken=nil, requestid=nil)
         | 
| 7039 7047 | 
             
                      @BucketName = bucketname
         | 
| @@ -7111,8 +7119,8 @@ module TencentCloud | |
| 7111 7119 |  | 
| 7112 7120 | 
             
                    attr_accessor :BucketName, :Region, :Path, :TmpSecretId, :TmpSecretKey, :XCosSecurityToken, :StartTime, :ExpiredTime, :CosSecurityToken, :RequestId
         | 
| 7113 7121 | 
             
                    extend Gem::Deprecate
         | 
| 7114 | 
            -
                    deprecate :XCosSecurityToken, :none, 2025,  | 
| 7115 | 
            -
                    deprecate :XCosSecurityToken=, :none, 2025,  | 
| 7122 | 
            +
                    deprecate :XCosSecurityToken, :none, 2025, 10
         | 
| 7123 | 
            +
                    deprecate :XCosSecurityToken=, :none, 2025, 10
         | 
| 7116 7124 |  | 
| 7117 7125 | 
             
                    def initialize(bucketname=nil, region=nil, path=nil, tmpsecretid=nil, tmpsecretkey=nil, xcossecuritytoken=nil, starttime=nil, expiredtime=nil, cossecuritytoken=nil, requestid=nil)
         | 
| 7118 7126 | 
             
                      @BucketName = bucketname
         | 
| @@ -7397,11 +7405,11 @@ module TencentCloud | |
| 7397 7405 | 
             
                    # @type Size: Integer
         | 
| 7398 7406 | 
             
                    # @param EventType: 事件类型,slow-慢SQL事件,blocked-阻塞事件,deadlock-死锁事件
         | 
| 7399 7407 | 
             
                    # @type EventType: String
         | 
| 7400 | 
            -
                    # @param Status: 事件记录状态,1-成功,2 | 
| 7408 | 
            +
                    # @param Status: 事件记录状态,1-成功,2-失败,3-文件待删除,4-写入中
         | 
| 7401 7409 | 
             
                    # @type Status: Integer
         | 
| 7402 7410 | 
             
                    # @param StartTime: 扩展文件生成开始时间
         | 
| 7403 7411 | 
             
                    # @type StartTime: String
         | 
| 7404 | 
            -
                    # @param EndTime:  | 
| 7412 | 
            +
                    # @param EndTime: 扩展文件最后更新时间
         | 
| 7405 7413 | 
             
                    # @type EndTime: String
         | 
| 7406 7414 | 
             
                    # @param InternalAddr: 内网下载地址
         | 
| 7407 7415 | 
             
                    # @type InternalAddr: String
         | 
| @@ -8440,8 +8448,8 @@ module TencentCloud | |
| 8440 8448 |  | 
| 8441 8449 | 
             
                    attr_accessor :Errno, :Msg, :Code, :RequestId
         | 
| 8442 8450 | 
             
                    extend Gem::Deprecate
         | 
| 8443 | 
            -
                    deprecate :Errno, :none, 2025,  | 
| 8444 | 
            -
                    deprecate :Errno=, :none, 2025,  | 
| 8451 | 
            +
                    deprecate :Errno, :none, 2025, 10
         | 
| 8452 | 
            +
                    deprecate :Errno=, :none, 2025, 10
         | 
| 8445 8453 |  | 
| 8446 8454 | 
             
                    def initialize(errno=nil, msg=nil, code=nil, requestid=nil)
         | 
| 8447 8455 | 
             
                      @Errno = errno
         | 
| @@ -11786,10 +11794,12 @@ module TencentCloud | |
| 11786 11794 | 
             
                    # @type WaitSwitch: Integer
         | 
| 11787 11795 | 
             
                    # @param DrZones: 多节点架构实例的备节点可用区,默认为空。如果需要在变配的同时修改指定备节点的可用区时必传,当MultiZones = MultiZones时主节点和备节点可用区不能全部相同。备机可用区集合最小为2个,最大不超过5个。
         | 
| 11788 11796 | 
             
                    # @type DrZones: Array
         | 
| 11797 | 
            +
                    # @param UpgradeCompatLevel: 是否自动升级数据库的兼容性级别,默认0。0-否,1-是
         | 
| 11798 | 
            +
                    # @type UpgradeCompatLevel: Integer
         | 
| 11789 11799 |  | 
| 11790 | 
            -
                    attr_accessor :InstanceId, :Memory, :Storage, :AutoVoucher, :VoucherIds, :Cpu, :DBVersion, :HAType, :MultiZones, :WaitSwitch, :DrZones
         | 
| 11800 | 
            +
                    attr_accessor :InstanceId, :Memory, :Storage, :AutoVoucher, :VoucherIds, :Cpu, :DBVersion, :HAType, :MultiZones, :WaitSwitch, :DrZones, :UpgradeCompatLevel
         | 
| 11791 11801 |  | 
| 11792 | 
            -
                    def initialize(instanceid=nil, memory=nil, storage=nil, autovoucher=nil, voucherids=nil, cpu=nil, dbversion=nil, hatype=nil, multizones=nil, waitswitch=nil, drzones=nil)
         | 
| 11802 | 
            +
                    def initialize(instanceid=nil, memory=nil, storage=nil, autovoucher=nil, voucherids=nil, cpu=nil, dbversion=nil, hatype=nil, multizones=nil, waitswitch=nil, drzones=nil, upgradecompatlevel=nil)
         | 
| 11793 11803 | 
             
                      @InstanceId = instanceid
         | 
| 11794 11804 | 
             
                      @Memory = memory
         | 
| 11795 11805 | 
             
                      @Storage = storage
         | 
| @@ -11801,6 +11811,7 @@ module TencentCloud | |
| 11801 11811 | 
             
                      @MultiZones = multizones
         | 
| 11802 11812 | 
             
                      @WaitSwitch = waitswitch
         | 
| 11803 11813 | 
             
                      @DrZones = drzones
         | 
| 11814 | 
            +
                      @UpgradeCompatLevel = upgradecompatlevel
         | 
| 11804 11815 | 
             
                    end
         | 
| 11805 11816 |  | 
| 11806 11817 | 
             
                    def deserialize(params)
         | 
| @@ -11822,6 +11833,7 @@ module TencentCloud | |
| 11822 11833 | 
             
                          @DrZones << drzoneinfo_tmp
         | 
| 11823 11834 | 
             
                        end
         | 
| 11824 11835 | 
             
                      end
         | 
| 11836 | 
            +
                      @UpgradeCompatLevel = params['UpgradeCompatLevel']
         | 
| 11825 11837 | 
             
                    end
         | 
| 11826 11838 | 
             
                  end
         | 
| 11827 11839 |  | 
    
        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. | 
| 4 | 
            +
              version: 3.0.1160
         | 
| 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- | 
| 11 | 
            +
            date: 2025-10-28 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: tencentcloud-sdk-common
         | 
| @@ -33,8 +33,8 @@ executables: [] | |
| 33 33 | 
             
            extensions: []
         | 
| 34 34 | 
             
            extra_rdoc_files: []
         | 
| 35 35 | 
             
            files:
         | 
| 36 | 
            -
            - lib/v20180328/client.rb
         | 
| 37 36 | 
             
            - lib/v20180328/models.rb
         | 
| 37 | 
            +
            - lib/v20180328/client.rb
         | 
| 38 38 | 
             
            - lib/tencentcloud-sdk-sqlserver.rb
         | 
| 39 39 | 
             
            - lib/VERSION
         | 
| 40 40 | 
             
            homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
         |