Class: TencentCloud::Dlc::V20210125::DescribeSparkAppJobResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::DescribeSparkAppJobResponse
- Defined in:
- lib/v20210125/models.rb
Overview
DescribeSparkAppJob返回参数结构体
Instance Attribute Summary collapse
-
#IsExists ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Job ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(job = nil, isexists = nil, requestid = nil) ⇒ DescribeSparkAppJobResponse
constructor
A new instance of DescribeSparkAppJobResponse.
Constructor Details
#initialize(job = nil, isexists = nil, requestid = nil) ⇒ DescribeSparkAppJobResponse
Returns a new instance of DescribeSparkAppJobResponse.
8263 8264 8265 8266 8267 |
# File 'lib/v20210125/models.rb', line 8263 def initialize(job=nil, isexists=nil, requestid=nil) @Job = job @IsExists = isexists @RequestId = requestid end |
Instance Attribute Details
#IsExists ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8261 8262 8263 |
# File 'lib/v20210125/models.rb', line 8261 def IsExists @IsExists end |
#Job ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8261 8262 8263 |
# File 'lib/v20210125/models.rb', line 8261 def Job @Job end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8261 8262 8263 |
# File 'lib/v20210125/models.rb', line 8261 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
8269 8270 8271 8272 8273 8274 8275 8276 |
# File 'lib/v20210125/models.rb', line 8269 def deserialize(params) unless params['Job'].nil? @Job = SparkJobInfo.new @Job.deserialize(params['Job']) end @IsExists = params['IsExists'] @RequestId = params['RequestId'] end |