Class: TencentCloud::Wedata::V20210820::DescribeOrganizationalFunctionsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeOrganizationalFunctionsRequest
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeOrganizationalFunctions请求参数结构体
Instance Attribute Summary collapse
-
#DisplayName ⇒ Object
标准模式生产环境:PROD 简单模式:ALL.
-
#EnvType ⇒ Object
标准模式生产环境:PROD 简单模式:ALL.
-
#Filters ⇒ Object
标准模式生产环境:PROD 简单模式:ALL.
-
#Name ⇒ Object
标准模式生产环境:PROD 简单模式:ALL.
-
#OrderFields ⇒ Object
标准模式生产环境:PROD 简单模式:ALL.
-
#ProjectId ⇒ Object
标准模式生产环境:PROD 简单模式:ALL.
-
#Type ⇒ Object
标准模式生产环境:PROD 简单模式:ALL.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(type = nil, projectid = nil, name = nil, displayname = nil, envtype = nil, filters = nil, orderfields = nil) ⇒ DescribeOrganizationalFunctionsRequest
constructor
A new instance of DescribeOrganizationalFunctionsRequest.
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
#DisplayName ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
12736 12737 12738 |
# File 'lib/v20210820/models.rb', line 12736 def DisplayName @DisplayName end |
#EnvType ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
12736 12737 12738 |
# File 'lib/v20210820/models.rb', line 12736 def EnvType @EnvType end |
#Filters ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
12736 12737 12738 |
# File 'lib/v20210820/models.rb', line 12736 def Filters @Filters end |
#Name ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
12736 12737 12738 |
# File 'lib/v20210820/models.rb', line 12736 def Name @Name end |
#OrderFields ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
12736 12737 12738 |
# File 'lib/v20210820/models.rb', line 12736 def OrderFields @OrderFields end |
#ProjectId ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
12736 12737 12738 |
# File 'lib/v20210820/models.rb', line 12736 def ProjectId @ProjectId end |
#Type ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
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 |