tencentcloud-sdk-mps 3.0.861 → 3.0.863
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/v20190612/models.rb +14 -4
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 0270b168e06cd5e01d58efc2d7eea0ce6d850a01
         | 
| 4 | 
            +
              data.tar.gz: 63b25d441b22eed5827075ce78624b143d35c362
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 8254f295e360dac79efe487b4bd57cc12219e9bc5e5eea31b51b849253e00ad8798bf1848039c0107db1ea5fe2820a63578d962876a5d3db6642f6edb7ca49e8
         | 
| 7 | 
            +
              data.tar.gz: 70438fa21e3b016443c6a026961ebf228f9a28bdeac9f58925fd9a218ecb368c8e16bd30927db1391642e539f2c63cd2334a1068298c4f2b0b18f074a5334441
         | 
    
        data/lib/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            3.0. | 
| 1 | 
            +
            3.0.863
         | 
    
        data/lib/v20190612/models.rb
    CHANGED
    
    | @@ -13499,15 +13499,19 @@ module TencentCloud | |
| 13499 13499 | 
             
                    # @type Confidence: Float
         | 
| 13500 13500 | 
             
                    # @param AreaCoordSet: 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
         | 
| 13501 13501 | 
             
                    # @type AreaCoordSet: Array
         | 
| 13502 | 
            +
                    # @param Url: 截图链接。
         | 
| 13503 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 13504 | 
            +
                    # @type Url: String
         | 
| 13502 13505 |  | 
| 13503 | 
            -
                    attr_accessor :Name, :StartPtsOffset, :EndPtsOffset, :Confidence, :AreaCoordSet
         | 
| 13506 | 
            +
                    attr_accessor :Name, :StartPtsOffset, :EndPtsOffset, :Confidence, :AreaCoordSet, :Url
         | 
| 13504 13507 |  | 
| 13505 | 
            -
                    def initialize(name=nil, startptsoffset=nil, endptsoffset=nil, confidence=nil, areacoordset=nil)
         | 
| 13508 | 
            +
                    def initialize(name=nil, startptsoffset=nil, endptsoffset=nil, confidence=nil, areacoordset=nil, url=nil)
         | 
| 13506 13509 | 
             
                      @Name = name
         | 
| 13507 13510 | 
             
                      @StartPtsOffset = startptsoffset
         | 
| 13508 13511 | 
             
                      @EndPtsOffset = endptsoffset
         | 
| 13509 13512 | 
             
                      @Confidence = confidence
         | 
| 13510 13513 | 
             
                      @AreaCoordSet = areacoordset
         | 
| 13514 | 
            +
                      @Url = url
         | 
| 13511 13515 | 
             
                    end
         | 
| 13512 13516 |  | 
| 13513 13517 | 
             
                    def deserialize(params)
         | 
| @@ -13516,6 +13520,7 @@ module TencentCloud | |
| 13516 13520 | 
             
                      @EndPtsOffset = params['EndPtsOffset']
         | 
| 13517 13521 | 
             
                      @Confidence = params['Confidence']
         | 
| 13518 13522 | 
             
                      @AreaCoordSet = params['AreaCoordSet']
         | 
| 13523 | 
            +
                      @Url = params['Url']
         | 
| 13519 13524 | 
             
                    end
         | 
| 13520 13525 | 
             
                  end
         | 
| 13521 13526 |  | 
| @@ -13714,16 +13719,20 @@ module TencentCloud | |
| 13714 13719 | 
             
                    # @type TopicName: String
         | 
| 13715 13720 | 
             
                    # @param NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
         | 
| 13716 13721 | 
             
                    # @type NotifyUrl: String
         | 
| 13722 | 
            +
                    # @param NotifyKey: 用于生成回调签名的 Key。
         | 
| 13723 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 13724 | 
            +
                    # @type NotifyKey: String
         | 
| 13717 13725 |  | 
| 13718 | 
            -
                    attr_accessor :NotifyType, :CmqModel, :CmqRegion, :QueueName, :TopicName, :NotifyUrl
         | 
| 13726 | 
            +
                    attr_accessor :NotifyType, :CmqModel, :CmqRegion, :QueueName, :TopicName, :NotifyUrl, :NotifyKey
         | 
| 13719 13727 |  | 
| 13720 | 
            -
                    def initialize(notifytype=nil, cmqmodel=nil, cmqregion=nil, queuename=nil, topicname=nil, notifyurl=nil)
         | 
| 13728 | 
            +
                    def initialize(notifytype=nil, cmqmodel=nil, cmqregion=nil, queuename=nil, topicname=nil, notifyurl=nil, notifykey=nil)
         | 
| 13721 13729 | 
             
                      @NotifyType = notifytype
         | 
| 13722 13730 | 
             
                      @CmqModel = cmqmodel
         | 
| 13723 13731 | 
             
                      @CmqRegion = cmqregion
         | 
| 13724 13732 | 
             
                      @QueueName = queuename
         | 
| 13725 13733 | 
             
                      @TopicName = topicname
         | 
| 13726 13734 | 
             
                      @NotifyUrl = notifyurl
         | 
| 13735 | 
            +
                      @NotifyKey = notifykey
         | 
| 13727 13736 | 
             
                    end
         | 
| 13728 13737 |  | 
| 13729 13738 | 
             
                    def deserialize(params)
         | 
| @@ -13733,6 +13742,7 @@ module TencentCloud | |
| 13733 13742 | 
             
                      @QueueName = params['QueueName']
         | 
| 13734 13743 | 
             
                      @TopicName = params['TopicName']
         | 
| 13735 13744 | 
             
                      @NotifyUrl = params['NotifyUrl']
         | 
| 13745 | 
            +
                      @NotifyKey = params['NotifyKey']
         | 
| 13736 13746 | 
             
                    end
         | 
| 13737 13747 | 
             
                  end
         | 
| 13738 13748 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: tencentcloud-sdk-mps
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 3.0. | 
| 4 | 
            +
              version: 3.0.863
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Tencent Cloud
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2024-07- | 
| 11 | 
            +
            date: 2024-07-11 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: tencentcloud-sdk-common
         |