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.
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
#DisplayName ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
12806 12807 12808 |
# File 'lib/v20210820/models.rb', line 12806 def DisplayName @DisplayName end |
#EnvType ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
12806 12807 12808 |
# File 'lib/v20210820/models.rb', line 12806 def EnvType @EnvType end |
#Filters ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
12806 12807 12808 |
# File 'lib/v20210820/models.rb', line 12806 def Filters @Filters end |
#Name ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
12806 12807 12808 |
# File 'lib/v20210820/models.rb', line 12806 def Name @Name end |
#OrderFields ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
12806 12807 12808 |
# File 'lib/v20210820/models.rb', line 12806 def OrderFields @OrderFields end |
#ProjectId ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
12806 12807 12808 |
# File 'lib/v20210820/models.rb', line 12806 def ProjectId @ProjectId end |
#Type ⇒ Object
标准模式生产环境:PROD 简单模式:ALL
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 |