Class: TencentCloud::Wedata::V20210820::DescribeOrganizationalFunctionsRequest

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

Overview

DescribeOrganizationalFunctions请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type = nil, projectid = nil, name = nil, displayname = nil, envtype = nil, filters = nil, orderfields = nil) ⇒ DescribeOrganizationalFunctionsRequest

Returns a new instance of DescribeOrganizationalFunctionsRequest.



12808
12809
12810
12811
12812
12813
12814
12815
12816
# File 'lib/v20210820/models.rb', line 12808

def initialize(type=nil, projectid=nil, name=nil, displayname=nil, envtype=nil, filters=nil, orderfields=nil)
  @Type = type
  @ProjectId = projectid
  @Name = name
  @DisplayName = displayname
  @EnvType = envtype
  @Filters = filters
  @OrderFields = orderfields
end

Instance Attribute Details

#DisplayNameObject

标准模式生产环境:PROD 简单模式:ALL

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12806
12807
12808
# File 'lib/v20210820/models.rb', line 12806

def DisplayName
  @DisplayName
end

#EnvTypeObject

标准模式生产环境:PROD 简单模式:ALL

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12806
12807
12808
# File 'lib/v20210820/models.rb', line 12806

def EnvType
  @EnvType
end

#FiltersObject

标准模式生产环境:PROD 简单模式:ALL

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12806
12807
12808
# File 'lib/v20210820/models.rb', line 12806

def Filters
  @Filters
end

#NameObject

标准模式生产环境:PROD 简单模式:ALL

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12806
12807
12808
# File 'lib/v20210820/models.rb', line 12806

def Name
  @Name
end

#OrderFieldsObject

标准模式生产环境:PROD 简单模式:ALL

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12806
12807
12808
# File 'lib/v20210820/models.rb', line 12806

def OrderFields
  @OrderFields
end

#ProjectIdObject

标准模式生产环境:PROD 简单模式:ALL

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12806
12807
12808
# File 'lib/v20210820/models.rb', line 12806

def ProjectId
  @ProjectId
end

#TypeObject

标准模式生产环境:PROD 简单模式:ALL

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12806
12807
12808
# File 'lib/v20210820/models.rb', line 12806

def Type
  @Type
end

Instance Method Details

#deserialize(params) ⇒ Object



12818
12819
12820
12821
12822
12823
12824
12825
12826
12827
12828
12829
12830
12831
12832
12833
12834
12835
12836
12837
12838
12839
12840
# File 'lib/v20210820/models.rb', line 12818

def deserialize(params)
  @Type = params['Type']
  @ProjectId = params['ProjectId']
  @Name = params['Name']
  @DisplayName = params['DisplayName']
  @EnvType = params['EnvType']
  unless params['Filters'].nil?
    @Filters = []
    params['Filters'].each do |i|
      filter_tmp = Filter.new
      filter_tmp.deserialize(i)
      @Filters << filter_tmp
    end
  end
  unless params['OrderFields'].nil?
    @OrderFields = []
    params['OrderFields'].each do |i|
      orderfield_tmp = OrderField.new
      orderfield_tmp.deserialize(i)
      @OrderFields << orderfield_tmp
    end
  end
end