tencentcloud-sdk-rum 3.0.552 → 3.0.553
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/v20210622/client.rb +96 -0
- data/lib/v20210622/models.rb +280 -0
- 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: c8b16d83c24a59aca9bbee78e217e6fecc27fb08
         | 
| 4 | 
            +
              data.tar.gz: 7dad6e78db364ecf904a01aac200221af22ddc2a
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: e9fd679dfbc392f33d2bd0dd0e1a5630fb4f9f4434a731f8d482d06a9baa1581212fa2536f8c242082a14454b5337eaace993b86fc7ef36684caf0368edf9761
         | 
| 7 | 
            +
              data.tar.gz: 2fbf871ac4d6a3f9724bcfff01f4524e12ee285afca8f9d19aa6b0f8f0774a8498ccbe86a3f38dd627f7196a0aef4cd16ecb906394ed80d706b0aaf753e13fb1
         | 
    
        data/lib/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            3.0. | 
| 1 | 
            +
            3.0.553
         | 
    
        data/lib/v20210622/client.rb
    CHANGED
    
    | @@ -397,6 +397,102 @@ module TencentCloud | |
| 397 397 | 
             
                      raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
         | 
| 398 398 | 
             
                    end
         | 
| 399 399 |  | 
| 400 | 
            +
                    # 用于查询 app 监控多维分析数据
         | 
| 401 | 
            +
             | 
| 402 | 
            +
                    # @param request: Request instance for DescribeAppDimensionMetrics.
         | 
| 403 | 
            +
                    # @type request: :class:`Tencentcloud::rum::V20210622::DescribeAppDimensionMetricsRequest`
         | 
| 404 | 
            +
                    # @rtype: :class:`Tencentcloud::rum::V20210622::DescribeAppDimensionMetricsResponse`
         | 
| 405 | 
            +
                    def DescribeAppDimensionMetrics(request)
         | 
| 406 | 
            +
                      body = send_request('DescribeAppDimensionMetrics', request.serialize)
         | 
| 407 | 
            +
                      response = JSON.parse(body)
         | 
| 408 | 
            +
                      if response['Response'].key?('Error') == false
         | 
| 409 | 
            +
                        model = DescribeAppDimensionMetricsResponse.new
         | 
| 410 | 
            +
                        model.deserialize(response['Response'])
         | 
| 411 | 
            +
                        model
         | 
| 412 | 
            +
                      else
         | 
| 413 | 
            +
                        code = response['Response']['Error']['Code']
         | 
| 414 | 
            +
                        message = response['Response']['Error']['Message']
         | 
| 415 | 
            +
                        reqid = response['Response']['RequestId']
         | 
| 416 | 
            +
                        raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
         | 
| 417 | 
            +
                      end
         | 
| 418 | 
            +
                    rescue TencentCloud::Common::TencentCloudSDKException => e
         | 
| 419 | 
            +
                      raise e
         | 
| 420 | 
            +
                    rescue StandardError => e
         | 
| 421 | 
            +
                      raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
         | 
| 422 | 
            +
                    end
         | 
| 423 | 
            +
             | 
| 424 | 
            +
                    # 获取 app 监控指标数据
         | 
| 425 | 
            +
             | 
| 426 | 
            +
                    # @param request: Request instance for DescribeAppMetricsData.
         | 
| 427 | 
            +
                    # @type request: :class:`Tencentcloud::rum::V20210622::DescribeAppMetricsDataRequest`
         | 
| 428 | 
            +
                    # @rtype: :class:`Tencentcloud::rum::V20210622::DescribeAppMetricsDataResponse`
         | 
| 429 | 
            +
                    def DescribeAppMetricsData(request)
         | 
| 430 | 
            +
                      body = send_request('DescribeAppMetricsData', request.serialize)
         | 
| 431 | 
            +
                      response = JSON.parse(body)
         | 
| 432 | 
            +
                      if response['Response'].key?('Error') == false
         | 
| 433 | 
            +
                        model = DescribeAppMetricsDataResponse.new
         | 
| 434 | 
            +
                        model.deserialize(response['Response'])
         | 
| 435 | 
            +
                        model
         | 
| 436 | 
            +
                      else
         | 
| 437 | 
            +
                        code = response['Response']['Error']['Code']
         | 
| 438 | 
            +
                        message = response['Response']['Error']['Message']
         | 
| 439 | 
            +
                        reqid = response['Response']['RequestId']
         | 
| 440 | 
            +
                        raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
         | 
| 441 | 
            +
                      end
         | 
| 442 | 
            +
                    rescue TencentCloud::Common::TencentCloudSDKException => e
         | 
| 443 | 
            +
                      raise e
         | 
| 444 | 
            +
                    rescue StandardError => e
         | 
| 445 | 
            +
                      raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
         | 
| 446 | 
            +
                    end
         | 
| 447 | 
            +
             | 
| 448 | 
            +
                    # 查询 app 监控个例样本详情列表
         | 
| 449 | 
            +
             | 
| 450 | 
            +
                    # @param request: Request instance for DescribeAppSingleCaseDetailList.
         | 
| 451 | 
            +
                    # @type request: :class:`Tencentcloud::rum::V20210622::DescribeAppSingleCaseDetailListRequest`
         | 
| 452 | 
            +
                    # @rtype: :class:`Tencentcloud::rum::V20210622::DescribeAppSingleCaseDetailListResponse`
         | 
| 453 | 
            +
                    def DescribeAppSingleCaseDetailList(request)
         | 
| 454 | 
            +
                      body = send_request('DescribeAppSingleCaseDetailList', request.serialize)
         | 
| 455 | 
            +
                      response = JSON.parse(body)
         | 
| 456 | 
            +
                      if response['Response'].key?('Error') == false
         | 
| 457 | 
            +
                        model = DescribeAppSingleCaseDetailListResponse.new
         | 
| 458 | 
            +
                        model.deserialize(response['Response'])
         | 
| 459 | 
            +
                        model
         | 
| 460 | 
            +
                      else
         | 
| 461 | 
            +
                        code = response['Response']['Error']['Code']
         | 
| 462 | 
            +
                        message = response['Response']['Error']['Message']
         | 
| 463 | 
            +
                        reqid = response['Response']['RequestId']
         | 
| 464 | 
            +
                        raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
         | 
| 465 | 
            +
                      end
         | 
| 466 | 
            +
                    rescue TencentCloud::Common::TencentCloudSDKException => e
         | 
| 467 | 
            +
                      raise e
         | 
| 468 | 
            +
                    rescue StandardError => e
         | 
| 469 | 
            +
                      raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
         | 
| 470 | 
            +
                    end
         | 
| 471 | 
            +
             | 
| 472 | 
            +
                    # 查询 app 监控个例聚合列表
         | 
| 473 | 
            +
             | 
| 474 | 
            +
                    # @param request: Request instance for DescribeAppSingleCaseList.
         | 
| 475 | 
            +
                    # @type request: :class:`Tencentcloud::rum::V20210622::DescribeAppSingleCaseListRequest`
         | 
| 476 | 
            +
                    # @rtype: :class:`Tencentcloud::rum::V20210622::DescribeAppSingleCaseListResponse`
         | 
| 477 | 
            +
                    def DescribeAppSingleCaseList(request)
         | 
| 478 | 
            +
                      body = send_request('DescribeAppSingleCaseList', request.serialize)
         | 
| 479 | 
            +
                      response = JSON.parse(body)
         | 
| 480 | 
            +
                      if response['Response'].key?('Error') == false
         | 
| 481 | 
            +
                        model = DescribeAppSingleCaseListResponse.new
         | 
| 482 | 
            +
                        model.deserialize(response['Response'])
         | 
| 483 | 
            +
                        model
         | 
| 484 | 
            +
                      else
         | 
| 485 | 
            +
                        code = response['Response']['Error']['Code']
         | 
| 486 | 
            +
                        message = response['Response']['Error']['Message']
         | 
| 487 | 
            +
                        reqid = response['Response']['RequestId']
         | 
| 488 | 
            +
                        raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
         | 
| 489 | 
            +
                      end
         | 
| 490 | 
            +
                    rescue TencentCloud::Common::TencentCloudSDKException => e
         | 
| 491 | 
            +
                      raise e
         | 
| 492 | 
            +
                    rescue StandardError => e
         | 
| 493 | 
            +
                      raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
         | 
| 494 | 
            +
                    end
         | 
| 495 | 
            +
             | 
| 400 496 | 
             
                    # 转发monitor查询
         | 
| 401 497 |  | 
| 402 498 | 
             
                    # @param request: Request instance for DescribeData.
         | 
    
        data/lib/v20210622/models.rb
    CHANGED
    
    | @@ -718,6 +718,286 @@ module TencentCloud | |
| 718 718 | 
             
                    end
         | 
| 719 719 | 
             
                  end
         | 
| 720 720 |  | 
| 721 | 
            +
                  # DescribeAppDimensionMetrics请求参数结构体
         | 
| 722 | 
            +
                  class DescribeAppDimensionMetricsRequest < TencentCloud::Common::AbstractModel
         | 
| 723 | 
            +
                    # @param ProjectID: app 项目ID
         | 
| 724 | 
            +
                    # @type ProjectID: Integer
         | 
| 725 | 
            +
                    # @param From: 查询的表名
         | 
| 726 | 
            +
                    # @type From: String
         | 
| 727 | 
            +
                    # @param Fields: 查询指标 fields
         | 
| 728 | 
            +
                    # @type Fields: String
         | 
| 729 | 
            +
                    # @param Filter: 查询的过滤条件
         | 
| 730 | 
            +
                    # @type Filter: String
         | 
| 731 | 
            +
                    # @param FilterSimple: 查询简单过滤条件
         | 
| 732 | 
            +
                    # @type FilterSimple: String
         | 
| 733 | 
            +
                    # @param GroupBy: group by 条件
         | 
| 734 | 
            +
                    # @type GroupBy: Array
         | 
| 735 | 
            +
                    # @param OrderBy: order by 条件
         | 
| 736 | 
            +
                    # @type OrderBy: Array
         | 
| 737 | 
            +
                    # @param Limit: limit 参数
         | 
| 738 | 
            +
                    # @type Limit: Integer
         | 
| 739 | 
            +
                    # @param Offset: offset 参数
         | 
| 740 | 
            +
                    # @type Offset: Integer
         | 
| 741 | 
            +
                    # @param BusinessContext: 业务上下文参数
         | 
| 742 | 
            +
                    # @type BusinessContext: String
         | 
| 743 | 
            +
             | 
| 744 | 
            +
                    attr_accessor :ProjectID, :From, :Fields, :Filter, :FilterSimple, :GroupBy, :OrderBy, :Limit, :Offset, :BusinessContext
         | 
| 745 | 
            +
                    
         | 
| 746 | 
            +
                    def initialize(projectid=nil, from=nil, fields=nil, filter=nil, filtersimple=nil, groupby=nil, orderby=nil, limit=nil, offset=nil, businesscontext=nil)
         | 
| 747 | 
            +
                      @ProjectID = projectid
         | 
| 748 | 
            +
                      @From = from
         | 
| 749 | 
            +
                      @Fields = fields
         | 
| 750 | 
            +
                      @Filter = filter
         | 
| 751 | 
            +
                      @FilterSimple = filtersimple
         | 
| 752 | 
            +
                      @GroupBy = groupby
         | 
| 753 | 
            +
                      @OrderBy = orderby
         | 
| 754 | 
            +
                      @Limit = limit
         | 
| 755 | 
            +
                      @Offset = offset
         | 
| 756 | 
            +
                      @BusinessContext = businesscontext
         | 
| 757 | 
            +
                    end
         | 
| 758 | 
            +
             | 
| 759 | 
            +
                    def deserialize(params)
         | 
| 760 | 
            +
                      @ProjectID = params['ProjectID']
         | 
| 761 | 
            +
                      @From = params['From']
         | 
| 762 | 
            +
                      @Fields = params['Fields']
         | 
| 763 | 
            +
                      @Filter = params['Filter']
         | 
| 764 | 
            +
                      @FilterSimple = params['FilterSimple']
         | 
| 765 | 
            +
                      @GroupBy = params['GroupBy']
         | 
| 766 | 
            +
                      @OrderBy = params['OrderBy']
         | 
| 767 | 
            +
                      @Limit = params['Limit']
         | 
| 768 | 
            +
                      @Offset = params['Offset']
         | 
| 769 | 
            +
                      @BusinessContext = params['BusinessContext']
         | 
| 770 | 
            +
                    end
         | 
| 771 | 
            +
                  end
         | 
| 772 | 
            +
             | 
| 773 | 
            +
                  # DescribeAppDimensionMetrics返回参数结构体
         | 
| 774 | 
            +
                  class DescribeAppDimensionMetricsResponse < TencentCloud::Common::AbstractModel
         | 
| 775 | 
            +
                    # @param Data: 查询数据返回
         | 
| 776 | 
            +
                    # @type Data: String
         | 
| 777 | 
            +
                    # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
         | 
| 778 | 
            +
                    # @type RequestId: String
         | 
| 779 | 
            +
             | 
| 780 | 
            +
                    attr_accessor :Data, :RequestId
         | 
| 781 | 
            +
                    
         | 
| 782 | 
            +
                    def initialize(data=nil, requestid=nil)
         | 
| 783 | 
            +
                      @Data = data
         | 
| 784 | 
            +
                      @RequestId = requestid
         | 
| 785 | 
            +
                    end
         | 
| 786 | 
            +
             | 
| 787 | 
            +
                    def deserialize(params)
         | 
| 788 | 
            +
                      @Data = params['Data']
         | 
| 789 | 
            +
                      @RequestId = params['RequestId']
         | 
| 790 | 
            +
                    end
         | 
| 791 | 
            +
                  end
         | 
| 792 | 
            +
             | 
| 793 | 
            +
                  # DescribeAppMetricsData请求参数结构体
         | 
| 794 | 
            +
                  class DescribeAppMetricsDataRequest < TencentCloud::Common::AbstractModel
         | 
| 795 | 
            +
                    # @param ProjectID: app 项目ID
         | 
| 796 | 
            +
                    # @type ProjectID: Integer
         | 
| 797 | 
            +
                    # @param From: 查询的表名
         | 
| 798 | 
            +
                    # @type From: String
         | 
| 799 | 
            +
                    # @param Fields: 查询指标 field
         | 
| 800 | 
            +
                    # @type Fields: String
         | 
| 801 | 
            +
                    # @param Filter: 查询的过滤条件
         | 
| 802 | 
            +
                    # @type Filter: String
         | 
| 803 | 
            +
                    # @param FilterSimple: 查询简单过滤条件
         | 
| 804 | 
            +
                    # @type FilterSimple: String
         | 
| 805 | 
            +
                    # @param GroupBy: group by 条件
         | 
| 806 | 
            +
                    # @type GroupBy: Array
         | 
| 807 | 
            +
                    # @param OrderBy: order by 条件
         | 
| 808 | 
            +
                    # @type OrderBy: Array
         | 
| 809 | 
            +
                    # @param Limit: limit 参数
         | 
| 810 | 
            +
                    # @type Limit: Integer
         | 
| 811 | 
            +
                    # @param Offset: offset 参数
         | 
| 812 | 
            +
                    # @type Offset: Integer
         | 
| 813 | 
            +
                    # @param GroupByModifier: group by 参数
         | 
| 814 | 
            +
                    # @type GroupByModifier: String
         | 
| 815 | 
            +
             | 
| 816 | 
            +
                    attr_accessor :ProjectID, :From, :Fields, :Filter, :FilterSimple, :GroupBy, :OrderBy, :Limit, :Offset, :GroupByModifier
         | 
| 817 | 
            +
                    
         | 
| 818 | 
            +
                    def initialize(projectid=nil, from=nil, fields=nil, filter=nil, filtersimple=nil, groupby=nil, orderby=nil, limit=nil, offset=nil, groupbymodifier=nil)
         | 
| 819 | 
            +
                      @ProjectID = projectid
         | 
| 820 | 
            +
                      @From = from
         | 
| 821 | 
            +
                      @Fields = fields
         | 
| 822 | 
            +
                      @Filter = filter
         | 
| 823 | 
            +
                      @FilterSimple = filtersimple
         | 
| 824 | 
            +
                      @GroupBy = groupby
         | 
| 825 | 
            +
                      @OrderBy = orderby
         | 
| 826 | 
            +
                      @Limit = limit
         | 
| 827 | 
            +
                      @Offset = offset
         | 
| 828 | 
            +
                      @GroupByModifier = groupbymodifier
         | 
| 829 | 
            +
                    end
         | 
| 830 | 
            +
             | 
| 831 | 
            +
                    def deserialize(params)
         | 
| 832 | 
            +
                      @ProjectID = params['ProjectID']
         | 
| 833 | 
            +
                      @From = params['From']
         | 
| 834 | 
            +
                      @Fields = params['Fields']
         | 
| 835 | 
            +
                      @Filter = params['Filter']
         | 
| 836 | 
            +
                      @FilterSimple = params['FilterSimple']
         | 
| 837 | 
            +
                      @GroupBy = params['GroupBy']
         | 
| 838 | 
            +
                      @OrderBy = params['OrderBy']
         | 
| 839 | 
            +
                      @Limit = params['Limit']
         | 
| 840 | 
            +
                      @Offset = params['Offset']
         | 
| 841 | 
            +
                      @GroupByModifier = params['GroupByModifier']
         | 
| 842 | 
            +
                    end
         | 
| 843 | 
            +
                  end
         | 
| 844 | 
            +
             | 
| 845 | 
            +
                  # DescribeAppMetricsData返回参数结构体
         | 
| 846 | 
            +
                  class DescribeAppMetricsDataResponse < TencentCloud::Common::AbstractModel
         | 
| 847 | 
            +
                    # @param Data: 查询数据返回
         | 
| 848 | 
            +
                    # @type Data: String
         | 
| 849 | 
            +
                    # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
         | 
| 850 | 
            +
                    # @type RequestId: String
         | 
| 851 | 
            +
             | 
| 852 | 
            +
                    attr_accessor :Data, :RequestId
         | 
| 853 | 
            +
                    
         | 
| 854 | 
            +
                    def initialize(data=nil, requestid=nil)
         | 
| 855 | 
            +
                      @Data = data
         | 
| 856 | 
            +
                      @RequestId = requestid
         | 
| 857 | 
            +
                    end
         | 
| 858 | 
            +
             | 
| 859 | 
            +
                    def deserialize(params)
         | 
| 860 | 
            +
                      @Data = params['Data']
         | 
| 861 | 
            +
                      @RequestId = params['RequestId']
         | 
| 862 | 
            +
                    end
         | 
| 863 | 
            +
                  end
         | 
| 864 | 
            +
             | 
| 865 | 
            +
                  # DescribeAppSingleCaseDetailList请求参数结构体
         | 
| 866 | 
            +
                  class DescribeAppSingleCaseDetailListRequest < TencentCloud::Common::AbstractModel
         | 
| 867 | 
            +
                    # @param ProjectID: app 项目ID
         | 
| 868 | 
            +
                    # @type ProjectID: Integer
         | 
| 869 | 
            +
                    # @param From: 查询的表名
         | 
| 870 | 
            +
                    # @type From: String
         | 
| 871 | 
            +
                    # @param Fields: 查询指标 field
         | 
| 872 | 
            +
                    # @type Fields: String
         | 
| 873 | 
            +
                    # @param Filter: 查询的过滤条件
         | 
| 874 | 
            +
                    # @type Filter: String
         | 
| 875 | 
            +
                    # @param FilterSimple: 查询简单过滤条件
         | 
| 876 | 
            +
                    # @type FilterSimple: String
         | 
| 877 | 
            +
                    # @param GroupBy: group by 条件
         | 
| 878 | 
            +
                    # @type GroupBy: Array
         | 
| 879 | 
            +
                    # @param OrderBy: order by 条件
         | 
| 880 | 
            +
                    # @type OrderBy: Array
         | 
| 881 | 
            +
                    # @param Limit: limit 参数
         | 
| 882 | 
            +
                    # @type Limit: Integer
         | 
| 883 | 
            +
                    # @param Offset: offset 参数
         | 
| 884 | 
            +
                    # @type Offset: Integer
         | 
| 885 | 
            +
             | 
| 886 | 
            +
                    attr_accessor :ProjectID, :From, :Fields, :Filter, :FilterSimple, :GroupBy, :OrderBy, :Limit, :Offset
         | 
| 887 | 
            +
                    
         | 
| 888 | 
            +
                    def initialize(projectid=nil, from=nil, fields=nil, filter=nil, filtersimple=nil, groupby=nil, orderby=nil, limit=nil, offset=nil)
         | 
| 889 | 
            +
                      @ProjectID = projectid
         | 
| 890 | 
            +
                      @From = from
         | 
| 891 | 
            +
                      @Fields = fields
         | 
| 892 | 
            +
                      @Filter = filter
         | 
| 893 | 
            +
                      @FilterSimple = filtersimple
         | 
| 894 | 
            +
                      @GroupBy = groupby
         | 
| 895 | 
            +
                      @OrderBy = orderby
         | 
| 896 | 
            +
                      @Limit = limit
         | 
| 897 | 
            +
                      @Offset = offset
         | 
| 898 | 
            +
                    end
         | 
| 899 | 
            +
             | 
| 900 | 
            +
                    def deserialize(params)
         | 
| 901 | 
            +
                      @ProjectID = params['ProjectID']
         | 
| 902 | 
            +
                      @From = params['From']
         | 
| 903 | 
            +
                      @Fields = params['Fields']
         | 
| 904 | 
            +
                      @Filter = params['Filter']
         | 
| 905 | 
            +
                      @FilterSimple = params['FilterSimple']
         | 
| 906 | 
            +
                      @GroupBy = params['GroupBy']
         | 
| 907 | 
            +
                      @OrderBy = params['OrderBy']
         | 
| 908 | 
            +
                      @Limit = params['Limit']
         | 
| 909 | 
            +
                      @Offset = params['Offset']
         | 
| 910 | 
            +
                    end
         | 
| 911 | 
            +
                  end
         | 
| 912 | 
            +
             | 
| 913 | 
            +
                  # DescribeAppSingleCaseDetailList返回参数结构体
         | 
| 914 | 
            +
                  class DescribeAppSingleCaseDetailListResponse < TencentCloud::Common::AbstractModel
         | 
| 915 | 
            +
                    # @param Data: 查询数据返回
         | 
| 916 | 
            +
                    # @type Data: String
         | 
| 917 | 
            +
                    # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
         | 
| 918 | 
            +
                    # @type RequestId: String
         | 
| 919 | 
            +
             | 
| 920 | 
            +
                    attr_accessor :Data, :RequestId
         | 
| 921 | 
            +
                    
         | 
| 922 | 
            +
                    def initialize(data=nil, requestid=nil)
         | 
| 923 | 
            +
                      @Data = data
         | 
| 924 | 
            +
                      @RequestId = requestid
         | 
| 925 | 
            +
                    end
         | 
| 926 | 
            +
             | 
| 927 | 
            +
                    def deserialize(params)
         | 
| 928 | 
            +
                      @Data = params['Data']
         | 
| 929 | 
            +
                      @RequestId = params['RequestId']
         | 
| 930 | 
            +
                    end
         | 
| 931 | 
            +
                  end
         | 
| 932 | 
            +
             | 
| 933 | 
            +
                  # DescribeAppSingleCaseList请求参数结构体
         | 
| 934 | 
            +
                  class DescribeAppSingleCaseListRequest < TencentCloud::Common::AbstractModel
         | 
| 935 | 
            +
                    # @param ProjectID: app 项目 ID
         | 
| 936 | 
            +
                    # @type ProjectID: Integer
         | 
| 937 | 
            +
                    # @param From: 查询的表名
         | 
| 938 | 
            +
                    # @type From: String
         | 
| 939 | 
            +
                    # @param Fields: 查询指标 field
         | 
| 940 | 
            +
                    # @type Fields: String
         | 
| 941 | 
            +
                    # @param Filter: 查询的过滤条件
         | 
| 942 | 
            +
                    # @type Filter: String
         | 
| 943 | 
            +
                    # @param FilterSimple: 查询简单过滤条件
         | 
| 944 | 
            +
                    # @type FilterSimple: String
         | 
| 945 | 
            +
                    # @param GroupBy: group by 条件
         | 
| 946 | 
            +
                    # @type GroupBy: Array
         | 
| 947 | 
            +
                    # @param OrderBy: order by 条件
         | 
| 948 | 
            +
                    # @type OrderBy: Array
         | 
| 949 | 
            +
                    # @param Limit: limit 参数
         | 
| 950 | 
            +
                    # @type Limit: Integer
         | 
| 951 | 
            +
                    # @param Offset: offset 参数
         | 
| 952 | 
            +
                    # @type Offset: Integer
         | 
| 953 | 
            +
             | 
| 954 | 
            +
                    attr_accessor :ProjectID, :From, :Fields, :Filter, :FilterSimple, :GroupBy, :OrderBy, :Limit, :Offset
         | 
| 955 | 
            +
                    
         | 
| 956 | 
            +
                    def initialize(projectid=nil, from=nil, fields=nil, filter=nil, filtersimple=nil, groupby=nil, orderby=nil, limit=nil, offset=nil)
         | 
| 957 | 
            +
                      @ProjectID = projectid
         | 
| 958 | 
            +
                      @From = from
         | 
| 959 | 
            +
                      @Fields = fields
         | 
| 960 | 
            +
                      @Filter = filter
         | 
| 961 | 
            +
                      @FilterSimple = filtersimple
         | 
| 962 | 
            +
                      @GroupBy = groupby
         | 
| 963 | 
            +
                      @OrderBy = orderby
         | 
| 964 | 
            +
                      @Limit = limit
         | 
| 965 | 
            +
                      @Offset = offset
         | 
| 966 | 
            +
                    end
         | 
| 967 | 
            +
             | 
| 968 | 
            +
                    def deserialize(params)
         | 
| 969 | 
            +
                      @ProjectID = params['ProjectID']
         | 
| 970 | 
            +
                      @From = params['From']
         | 
| 971 | 
            +
                      @Fields = params['Fields']
         | 
| 972 | 
            +
                      @Filter = params['Filter']
         | 
| 973 | 
            +
                      @FilterSimple = params['FilterSimple']
         | 
| 974 | 
            +
                      @GroupBy = params['GroupBy']
         | 
| 975 | 
            +
                      @OrderBy = params['OrderBy']
         | 
| 976 | 
            +
                      @Limit = params['Limit']
         | 
| 977 | 
            +
                      @Offset = params['Offset']
         | 
| 978 | 
            +
                    end
         | 
| 979 | 
            +
                  end
         | 
| 980 | 
            +
             | 
| 981 | 
            +
                  # DescribeAppSingleCaseList返回参数结构体
         | 
| 982 | 
            +
                  class DescribeAppSingleCaseListResponse < TencentCloud::Common::AbstractModel
         | 
| 983 | 
            +
                    # @param Data: 查询数据返回
         | 
| 984 | 
            +
                    # @type Data: String
         | 
| 985 | 
            +
                    # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
         | 
| 986 | 
            +
                    # @type RequestId: String
         | 
| 987 | 
            +
             | 
| 988 | 
            +
                    attr_accessor :Data, :RequestId
         | 
| 989 | 
            +
                    
         | 
| 990 | 
            +
                    def initialize(data=nil, requestid=nil)
         | 
| 991 | 
            +
                      @Data = data
         | 
| 992 | 
            +
                      @RequestId = requestid
         | 
| 993 | 
            +
                    end
         | 
| 994 | 
            +
             | 
| 995 | 
            +
                    def deserialize(params)
         | 
| 996 | 
            +
                      @Data = params['Data']
         | 
| 997 | 
            +
                      @RequestId = params['RequestId']
         | 
| 998 | 
            +
                    end
         | 
| 999 | 
            +
                  end
         | 
| 1000 | 
            +
             | 
| 721 1001 | 
             
                  # DescribeDataCustomUrl请求参数结构体
         | 
| 722 1002 | 
             
                  class DescribeDataCustomUrlRequest < TencentCloud::Common::AbstractModel
         | 
| 723 1003 | 
             
                    # @param StartTime: 开始时间
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: tencentcloud-sdk-rum
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 3.0. | 
| 4 | 
            +
              version: 3.0.553
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Tencent Cloud
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2023-04- | 
| 11 | 
            +
            date: 2023-04-18 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: tencentcloud-sdk-common
         |