Class: TencentCloud::Cwp::V20180228::ExportLicenseDetailRequest

Inherits:
TencentCloud::Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180228/models.rb

Overview

ExportLicenseDetail请求参数结构体

Instance Attribute Summary collapse

  • #Filters ⇒ Object
  • LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
  • ResourceId 资源ID
  • .
  • #IsHistory ⇒ Object
  • LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
  • ResourceId 资源ID
  • .
  • #Tags ⇒ Object
  • LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
  • ResourceId 资源ID
  • .

    Instance Method Summary collapse

    Constructor Details

    #initialize(filters = nil, ishistory = nil, tags = nil, exportmonth = nil) ⇒ ExportLicenseDetailRequest

    Returns a new instance of ExportLicenseDetailRequest.

    
    
    27470
    27471
    27472
    27473
    27474
    27475
    # File 'lib/v20180228/models.rb', line 27470
    
    def initialize(filters=nil, ishistory=nil, tags=nil, exportmonth=nil)
      @Filters = filters
      @IsHistory = ishistory
      @Tags = tags
      @ExportMonth = exportmonth
    end

    Instance Attribute Details

    #ExportMonthObject

  • LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
  • ResourceId 资源ID
  • Parameters:

    • Filters:

      多个条件筛选时 LicenseStatus,DeadlineStatus,ResourceId,Keywords 取交集

    • IsHistory:

      是否导出全部授权详情

    • Tags:

      标签筛选,平台标签能力,这里传入 标签键,标签值作为一个对象

    • ExportMonth:

      导出月份, 该参数仅在IsHistory 时可选.

    
    
    27468
    27469
    27470
    # File 'lib/v20180228/models.rb', line 27468
    
    def ExportMonth
      @ExportMonth
    end

    #FiltersObject

  • LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
  • ResourceId 资源ID
  • Parameters:

    • Filters:

      多个条件筛选时 LicenseStatus,DeadlineStatus,ResourceId,Keywords 取交集

    • IsHistory:

      是否导出全部授权详情

    • Tags:

      标签筛选,平台标签能力,这里传入 标签键,标签值作为一个对象

    • ExportMonth:

      导出月份, 该参数仅在IsHistory 时可选.

    
    
    27468
    27469
    27470
    # File 'lib/v20180228/models.rb', line 27468
    
    def Filters
      @Filters
    end

    #IsHistoryObject

  • LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
  • ResourceId 资源ID
  • Parameters:

    • Filters:

      多个条件筛选时 LicenseStatus,DeadlineStatus,ResourceId,Keywords 取交集

    • IsHistory:

      是否导出全部授权详情

    • Tags:

      标签筛选,平台标签能力,这里传入 标签键,标签值作为一个对象

    • ExportMonth:

      导出月份, 该参数仅在IsHistory 时可选.

    
    
    27468
    27469
    27470
    # File 'lib/v20180228/models.rb', line 27468
    
    def IsHistory
      @IsHistory
    end

    #TagsObject

  • LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
  • ResourceId 资源ID
  • Parameters:

    • Filters:

      多个条件筛选时 LicenseStatus,DeadlineStatus,ResourceId,Keywords 取交集

    • IsHistory:

      是否导出全部授权详情

    • Tags:

      标签筛选,平台标签能力,这里传入 标签键,标签值作为一个对象

    • ExportMonth:

      导出月份, 该参数仅在IsHistory 时可选.

    
    
    27468
    27469
    27470
    # File 'lib/v20180228/models.rb', line 27468
    
    def Tags
      @Tags
    end

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    27477
    27478
    27479
    27480
    27481
    27482
    27483
    27484
    27485
    27486
    27487
    27488
    27489
    27490
    27491
    27492
    27493
    27494
    27495
    27496
    # File 'lib/v20180228/models.rb', line 27477
    
    def deserialize(params)
      unless params['Filters'].nil?
        @Filters = []
        params['Filters'].each do |i|
          filters_tmp = Filters.new
          filters_tmp.deserialize(i)
          @Filters << filters_tmp
        end
      end
      @IsHistory = params['IsHistory']
      unless params['Tags'].nil?
        @Tags = []
        params['Tags'].each do |i|
          tags_tmp = Tags.new
          tags_tmp.deserialize(i)
          @Tags << tags_tmp
        end
      end
      @ExportMonth = params['ExportMonth']
    end