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.



12738
12739
12740
12741
12742
12743
12744
12745
12746
# File 'lib/v20210820/models.rb', line 12738

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:

    排序条件



12736
12737
12738
# File 'lib/v20210820/models.rb', line 12736

def DisplayName
  @DisplayName
end

#EnvTypeObject

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

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12736
12737
12738
# File 'lib/v20210820/models.rb', line 12736

def EnvType
  @EnvType
end

#FiltersObject

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

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12736
12737
12738
# File 'lib/v20210820/models.rb', line 12736

def Filters
  @Filters
end

#NameObject

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

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12736
12737
12738
# File 'lib/v20210820/models.rb', line 12736

def Name
  @Name
end

#OrderFieldsObject

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

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12736
12737
12738
# File 'lib/v20210820/models.rb', line 12736

def OrderFields
  @OrderFields
end

#ProjectIdObject

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

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12736
12737
12738
# File 'lib/v20210820/models.rb', line 12736

def ProjectId
  @ProjectId
end

#TypeObject

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

Parameters:

  • Type:

    场景类型:开发、使用

  • ProjectId:

    项目 ID

  • Name:

    函数名称

  • DisplayName:

    展示名称

  • EnvType:

    标准模式开发环境:DEV

  • Filters:

    过滤条件

  • OrderFields:

    排序条件



12736
12737
12738
# File 'lib/v20210820/models.rb', line 12736

def Type
  @Type
end

Instance Method Details

#deserialize(params) ⇒ Object



12748
12749
12750
12751
12752
12753
12754
12755
12756
12757
12758
12759
12760
12761
12762
12763
12764
12765
12766
12767
12768
12769
12770
# File 'lib/v20210820/models.rb', line 12748

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