tencentcloud-sdk-tdmq 1.0.291 → 1.0.292
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/v20200217/models.rb +33 -8
- metadata +1 -1
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 5f238ca71afc34d3d2265d9de73a4fc9f7867c88
         | 
| 4 | 
            +
              data.tar.gz: f0370a8b4b72f344616515114905f611da7863a5
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: e06470b32458391273f7913ae291b1926fd7791d579309634b76f1897a8a9840547ed663b7d4a352202285efa5234f3edde611cea391868ae76dac234b8db7be
         | 
| 7 | 
            +
              data.tar.gz: 0352311c57eaf798ec8341a145966557a833f36883da5274f03e99da2cf21489e27aa940b39af09d8de164e011a91eb30005dc6c6d27cd6813f38b575d3037aa
         | 
    
        data/lib/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1.0. | 
| 1 | 
            +
            1.0.292
         | 
    
        data/lib/v20200217/models.rb
    CHANGED
    
    | @@ -827,10 +827,13 @@ module TencentCloud | |
| 827 827 | 
             
                    # @param MaxMsgBacklogSize: 最大消息堆积大小(字节)
         | 
| 828 828 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 829 829 | 
             
                    # @type MaxMsgBacklogSize: Integer
         | 
| 830 | 
            +
                    # @param RetentionSizeInMB: 队列可回溯存储空间,取值范围1024MB - 10240MB,0表示不开启
         | 
| 831 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 832 | 
            +
                    # @type RetentionSizeInMB: Integer
         | 
| 830 833 |  | 
| 831 | 
            -
                    attr_accessor :QueueId, :QueueName, :Qps, :Bps, :MaxDelaySeconds, :MaxMsgHeapNum, :PollingWaitSeconds, :MsgRetentionSeconds, :VisibilityTimeout, :MaxMsgSize, :RewindSeconds, :CreateTime, :LastModifyTime, :ActiveMsgNum, :InactiveMsgNum, :DelayMsgNum, :RewindMsgNum, :MinMsgTime, :Transaction, :DeadLetterSource, :DeadLetterPolicy, :TransactionPolicy, :CreateUin, :Tags, :Trace, :TenantId, :NamespaceName, :Status, :MaxUnackedMsgNum, :MaxMsgBacklogSize
         | 
| 834 | 
            +
                    attr_accessor :QueueId, :QueueName, :Qps, :Bps, :MaxDelaySeconds, :MaxMsgHeapNum, :PollingWaitSeconds, :MsgRetentionSeconds, :VisibilityTimeout, :MaxMsgSize, :RewindSeconds, :CreateTime, :LastModifyTime, :ActiveMsgNum, :InactiveMsgNum, :DelayMsgNum, :RewindMsgNum, :MinMsgTime, :Transaction, :DeadLetterSource, :DeadLetterPolicy, :TransactionPolicy, :CreateUin, :Tags, :Trace, :TenantId, :NamespaceName, :Status, :MaxUnackedMsgNum, :MaxMsgBacklogSize, :RetentionSizeInMB
         | 
| 832 835 |  | 
| 833 | 
            -
                    def initialize(queueid=nil, queuename=nil, qps=nil, bps=nil, maxdelayseconds=nil, maxmsgheapnum=nil, pollingwaitseconds=nil, msgretentionseconds=nil, visibilitytimeout=nil, maxmsgsize=nil, rewindseconds=nil, createtime=nil, lastmodifytime=nil, activemsgnum=nil, inactivemsgnum=nil, delaymsgnum=nil, rewindmsgnum=nil, minmsgtime=nil, transaction=nil, deadlettersource=nil, deadletterpolicy=nil, transactionpolicy=nil, createuin=nil, tags=nil, trace=nil, tenantid=nil, namespacename=nil, status=nil, maxunackedmsgnum=nil, maxmsgbacklogsize=nil)
         | 
| 836 | 
            +
                    def initialize(queueid=nil, queuename=nil, qps=nil, bps=nil, maxdelayseconds=nil, maxmsgheapnum=nil, pollingwaitseconds=nil, msgretentionseconds=nil, visibilitytimeout=nil, maxmsgsize=nil, rewindseconds=nil, createtime=nil, lastmodifytime=nil, activemsgnum=nil, inactivemsgnum=nil, delaymsgnum=nil, rewindmsgnum=nil, minmsgtime=nil, transaction=nil, deadlettersource=nil, deadletterpolicy=nil, transactionpolicy=nil, createuin=nil, tags=nil, trace=nil, tenantid=nil, namespacename=nil, status=nil, maxunackedmsgnum=nil, maxmsgbacklogsize=nil, retentionsizeinmb=nil)
         | 
| 834 837 | 
             
                      @QueueId = queueid
         | 
| 835 838 | 
             
                      @QueueName = queuename
         | 
| 836 839 | 
             
                      @Qps = qps
         | 
| @@ -861,6 +864,7 @@ module TencentCloud | |
| 861 864 | 
             
                      @Status = status
         | 
| 862 865 | 
             
                      @MaxUnackedMsgNum = maxunackedmsgnum
         | 
| 863 866 | 
             
                      @MaxMsgBacklogSize = maxmsgbacklogsize
         | 
| 867 | 
            +
                      @RetentionSizeInMB = retentionsizeinmb
         | 
| 864 868 | 
             
                    end
         | 
| 865 869 |  | 
| 866 870 | 
             
                    def deserialize(params)
         | 
| @@ -914,6 +918,7 @@ module TencentCloud | |
| 914 918 | 
             
                      @Status = params['Status']
         | 
| 915 919 | 
             
                      @MaxUnackedMsgNum = params['MaxUnackedMsgNum']
         | 
| 916 920 | 
             
                      @MaxMsgBacklogSize = params['MaxMsgBacklogSize']
         | 
| 921 | 
            +
                      @RetentionSizeInMB = params['RetentionSizeInMB']
         | 
| 917 922 | 
             
                    end
         | 
| 918 923 | 
             
                  end
         | 
| 919 924 |  | 
| @@ -1039,10 +1044,13 @@ module TencentCloud | |
| 1039 1044 | 
             
                    # @param NamespaceName: 命名空间名称
         | 
| 1040 1045 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1041 1046 | 
             
                    # @type NamespaceName: String
         | 
| 1047 | 
            +
                    # @param Status: 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
         | 
| 1048 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1049 | 
            +
                    # @type Status: Integer
         | 
| 1042 1050 |  | 
| 1043 | 
            -
                    attr_accessor :TopicId, :TopicName, :MsgRetentionSeconds, :MaxMsgSize, :Qps, :FilterType, :CreateTime, :LastModifyTime, :MsgCount, :CreateUin, :Tags, :Trace, :TenantId, :NamespaceName
         | 
| 1051 | 
            +
                    attr_accessor :TopicId, :TopicName, :MsgRetentionSeconds, :MaxMsgSize, :Qps, :FilterType, :CreateTime, :LastModifyTime, :MsgCount, :CreateUin, :Tags, :Trace, :TenantId, :NamespaceName, :Status
         | 
| 1044 1052 |  | 
| 1045 | 
            -
                    def initialize(topicid=nil, topicname=nil, msgretentionseconds=nil, maxmsgsize=nil, qps=nil, filtertype=nil, createtime=nil, lastmodifytime=nil, msgcount=nil, createuin=nil, tags=nil, trace=nil, tenantid=nil, namespacename=nil)
         | 
| 1053 | 
            +
                    def initialize(topicid=nil, topicname=nil, msgretentionseconds=nil, maxmsgsize=nil, qps=nil, filtertype=nil, createtime=nil, lastmodifytime=nil, msgcount=nil, createuin=nil, tags=nil, trace=nil, tenantid=nil, namespacename=nil, status=nil)
         | 
| 1046 1054 | 
             
                      @TopicId = topicid
         | 
| 1047 1055 | 
             
                      @TopicName = topicname
         | 
| 1048 1056 | 
             
                      @MsgRetentionSeconds = msgretentionseconds
         | 
| @@ -1057,6 +1065,7 @@ module TencentCloud | |
| 1057 1065 | 
             
                      @Trace = trace
         | 
| 1058 1066 | 
             
                      @TenantId = tenantid
         | 
| 1059 1067 | 
             
                      @NamespaceName = namespacename
         | 
| 1068 | 
            +
                      @Status = status
         | 
| 1060 1069 | 
             
                    end
         | 
| 1061 1070 |  | 
| 1062 1071 | 
             
                    def deserialize(params)
         | 
| @@ -1081,6 +1090,7 @@ module TencentCloud | |
| 1081 1090 | 
             
                      @Trace = params['Trace']
         | 
| 1082 1091 | 
             
                      @TenantId = params['TenantId']
         | 
| 1083 1092 | 
             
                      @NamespaceName = params['NamespaceName']
         | 
| 1093 | 
            +
                      @Status = params['Status']
         | 
| 1084 1094 | 
             
                    end
         | 
| 1085 1095 | 
             
                  end
         | 
| 1086 1096 |  | 
| @@ -6647,10 +6657,13 @@ module TencentCloud | |
| 6647 6657 | 
             
                    # @type PublicEndPoint: String
         | 
| 6648 6658 | 
             
                    # @param VpcEndPoint: VPC接入地址
         | 
| 6649 6659 | 
             
                    # @type VpcEndPoint: String
         | 
| 6660 | 
            +
                    # @param SupportNamespaceEndpoint: 是否支持命名空间接入点
         | 
| 6661 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6662 | 
            +
                    # @type SupportNamespaceEndpoint: Boolean
         | 
| 6650 6663 |  | 
| 6651 | 
            -
                    attr_accessor :ClusterId, :ClusterName, :Region, :CreateTime, :Remark, :PublicEndPoint, :VpcEndPoint
         | 
| 6664 | 
            +
                    attr_accessor :ClusterId, :ClusterName, :Region, :CreateTime, :Remark, :PublicEndPoint, :VpcEndPoint, :SupportNamespaceEndpoint
         | 
| 6652 6665 |  | 
| 6653 | 
            -
                    def initialize(clusterid=nil, clustername=nil, region=nil, createtime=nil, remark=nil, publicendpoint=nil, vpcendpoint=nil)
         | 
| 6666 | 
            +
                    def initialize(clusterid=nil, clustername=nil, region=nil, createtime=nil, remark=nil, publicendpoint=nil, vpcendpoint=nil, supportnamespaceendpoint=nil)
         | 
| 6654 6667 | 
             
                      @ClusterId = clusterid
         | 
| 6655 6668 | 
             
                      @ClusterName = clustername
         | 
| 6656 6669 | 
             
                      @Region = region
         | 
| @@ -6658,6 +6671,7 @@ module TencentCloud | |
| 6658 6671 | 
             
                      @Remark = remark
         | 
| 6659 6672 | 
             
                      @PublicEndPoint = publicendpoint
         | 
| 6660 6673 | 
             
                      @VpcEndPoint = vpcendpoint
         | 
| 6674 | 
            +
                      @SupportNamespaceEndpoint = supportnamespaceendpoint
         | 
| 6661 6675 | 
             
                    end
         | 
| 6662 6676 |  | 
| 6663 6677 | 
             
                    def deserialize(params)
         | 
| @@ -6668,6 +6682,7 @@ module TencentCloud | |
| 6668 6682 | 
             
                      @Remark = params['Remark']
         | 
| 6669 6683 | 
             
                      @PublicEndPoint = params['PublicEndPoint']
         | 
| 6670 6684 | 
             
                      @VpcEndPoint = params['VpcEndPoint']
         | 
| 6685 | 
            +
                      @SupportNamespaceEndpoint = params['SupportNamespaceEndpoint']
         | 
| 6671 6686 | 
             
                    end
         | 
| 6672 6687 | 
             
                  end
         | 
| 6673 6688 |  | 
| @@ -6777,14 +6792,22 @@ module TencentCloud | |
| 6777 6792 | 
             
                    # @param Remark: 说明
         | 
| 6778 6793 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6779 6794 | 
             
                    # @type Remark: String
         | 
| 6795 | 
            +
                    # @param PublicEndpoint: 公网接入点地址
         | 
| 6796 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6797 | 
            +
                    # @type PublicEndpoint: String
         | 
| 6798 | 
            +
                    # @param VpcEndpoint: VPC接入点地址
         | 
| 6799 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6800 | 
            +
                    # @type VpcEndpoint: String
         | 
| 6780 6801 |  | 
| 6781 | 
            -
                    attr_accessor :NamespaceId, :Ttl, :RetentionTime, :Remark
         | 
| 6802 | 
            +
                    attr_accessor :NamespaceId, :Ttl, :RetentionTime, :Remark, :PublicEndpoint, :VpcEndpoint
         | 
| 6782 6803 |  | 
| 6783 | 
            -
                    def initialize(namespaceid=nil, ttl=nil, retentiontime=nil, remark=nil)
         | 
| 6804 | 
            +
                    def initialize(namespaceid=nil, ttl=nil, retentiontime=nil, remark=nil, publicendpoint=nil, vpcendpoint=nil)
         | 
| 6784 6805 | 
             
                      @NamespaceId = namespaceid
         | 
| 6785 6806 | 
             
                      @Ttl = ttl
         | 
| 6786 6807 | 
             
                      @RetentionTime = retentiontime
         | 
| 6787 6808 | 
             
                      @Remark = remark
         | 
| 6809 | 
            +
                      @PublicEndpoint = publicendpoint
         | 
| 6810 | 
            +
                      @VpcEndpoint = vpcendpoint
         | 
| 6788 6811 | 
             
                    end
         | 
| 6789 6812 |  | 
| 6790 6813 | 
             
                    def deserialize(params)
         | 
| @@ -6792,6 +6815,8 @@ module TencentCloud | |
| 6792 6815 | 
             
                      @Ttl = params['Ttl']
         | 
| 6793 6816 | 
             
                      @RetentionTime = params['RetentionTime']
         | 
| 6794 6817 | 
             
                      @Remark = params['Remark']
         | 
| 6818 | 
            +
                      @PublicEndpoint = params['PublicEndpoint']
         | 
| 6819 | 
            +
                      @VpcEndpoint = params['VpcEndpoint']
         | 
| 6795 6820 | 
             
                    end
         | 
| 6796 6821 | 
             
                  end
         | 
| 6797 6822 |  |