Class: TencentCloud::Cwp::V20180228::ExportRansomDefenseStrategyListRequest

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

Overview

ExportRansomDefenseStrategyList请求参数结构体

Instance Attribute Summary collapse

  • #Filters ⇒ Object
  • Ips - String - 是否必填:否 - 通过ip查询
  • MachineNames - String - 是否必填:否 - 通过实例名查询
  • Names - String - 是否必填:否 - 通过实例名查询
  • Dirs - String - 是否必填:否 - 诱饵目录
  • Status - String - 是否必填:否 - 策略状态:0关闭,1开启
  • BackupType - String - 是否必填:否 - 备份模式:0-按周;1-按天
  • .
  • #Order ⇒ Object
  • Ips - String - 是否必填:否 - 通过ip查询
  • MachineNames - String - 是否必填:否 - 通过实例名查询
  • Names - String - 是否必填:否 - 通过实例名查询
  • Dirs - String - 是否必填:否 - 诱饵目录
  • Status - String - 是否必填:否 - 策略状态:0关闭,1开启
  • BackupType - String - 是否必填:否 - 备份模式:0-按周;1-按天
  • .

    Instance Method Summary collapse

    Constructor Details

    #initialize(filters = nil, order = nil, by = nil) ⇒ ExportRansomDefenseStrategyListRequest

    Returns a new instance of ExportRansomDefenseStrategyListRequest.

    
    
    27971
    27972
    27973
    27974
    27975
    # File 'lib/v20180228/models.rb', line 27971
    
    def initialize(filters=nil, order=nil, by=nil)
      @Filters = filters
      @Order = order
      @By = by
    end

    Instance Attribute Details

    #ByObject

  • Ips - String - 是否必填:否 - 通过ip查询
  • MachineNames - String - 是否必填:否 - 通过实例名查询
  • Names - String - 是否必填:否 - 通过实例名查询
  • Dirs - String - 是否必填:否 - 诱饵目录
  • Status - String - 是否必填:否 - 策略状态:0关闭,1开启
  • BackupType - String - 是否必填:否 - 备份模式:0-按周;1-按天
  • Parameters:

    • Filters:

      过滤条件。

    • Order:

      排序方法 ASC DESC

    • By:

      排序字段支持CreateTime、MachineCount

    
    
    27969
    27970
    27971
    # File 'lib/v20180228/models.rb', line 27969
    
    def By
      @By
    end

    #FiltersObject

  • Ips - String - 是否必填:否 - 通过ip查询
  • MachineNames - String - 是否必填:否 - 通过实例名查询
  • Names - String - 是否必填:否 - 通过实例名查询
  • Dirs - String - 是否必填:否 - 诱饵目录
  • Status - String - 是否必填:否 - 策略状态:0关闭,1开启
  • BackupType - String - 是否必填:否 - 备份模式:0-按周;1-按天
  • Parameters:

    • Filters:

      过滤条件。

    • Order:

      排序方法 ASC DESC

    • By:

      排序字段支持CreateTime、MachineCount

    
    
    27969
    27970
    27971
    # File 'lib/v20180228/models.rb', line 27969
    
    def Filters
      @Filters
    end

    #OrderObject

  • Ips - String - 是否必填:否 - 通过ip查询
  • MachineNames - String - 是否必填:否 - 通过实例名查询
  • Names - String - 是否必填:否 - 通过实例名查询
  • Dirs - String - 是否必填:否 - 诱饵目录
  • Status - String - 是否必填:否 - 策略状态:0关闭,1开启
  • BackupType - String - 是否必填:否 - 备份模式:0-按周;1-按天
  • Parameters:

    • Filters:

      过滤条件。

    • Order:

      排序方法 ASC DESC

    • By:

      排序字段支持CreateTime、MachineCount

    
    
    27969
    27970
    27971
    # File 'lib/v20180228/models.rb', line 27969
    
    def Order
      @Order
    end

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    27977
    27978
    27979
    27980
    27981
    27982
    27983
    27984
    27985
    27986
    27987
    27988
    # File 'lib/v20180228/models.rb', line 27977
    
    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
      @Order = params['Order']
      @By = params['By']
    end