Class: TencentCloud::Tione::V20211111::DescribeBillingResourceInstanceRunningJobsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tione::V20211111::DescribeBillingResourceInstanceRunningJobsResponse
- Defined in:
- lib/v20211111/models.rb
Overview
DescribeBillingResourceInstanceRunningJobs返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#ResourceInstanceRunningJobInfos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(resourceinstancerunningjobinfos = nil, requestid = nil) ⇒ DescribeBillingResourceInstanceRunningJobsResponse
constructor
A new instance of DescribeBillingResourceInstanceRunningJobsResponse.
Constructor Details
#initialize(resourceinstancerunningjobinfos = nil, requestid = nil) ⇒ DescribeBillingResourceInstanceRunningJobsResponse
Returns a new instance of DescribeBillingResourceInstanceRunningJobsResponse.
2677 2678 2679 2680 |
# File 'lib/v20211111/models.rb', line 2677 def initialize(resourceinstancerunningjobinfos=nil, requestid=nil) @ResourceInstanceRunningJobInfos = resourceinstancerunningjobinfos @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2675 2676 2677 |
# File 'lib/v20211111/models.rb', line 2675 def RequestId @RequestId end |
#ResourceInstanceRunningJobInfos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2675 2676 2677 |
# File 'lib/v20211111/models.rb', line 2675 def ResourceInstanceRunningJobInfos @ResourceInstanceRunningJobInfos end |
Instance Method Details
#deserialize(params) ⇒ Object
2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 |
# File 'lib/v20211111/models.rb', line 2682 def deserialize(params) unless params['ResourceInstanceRunningJobInfos'].nil? @ResourceInstanceRunningJobInfos = [] params['ResourceInstanceRunningJobInfos'].each do |i| resourceinstancerunningjobinfo_tmp = ResourceInstanceRunningJobInfo.new resourceinstancerunningjobinfo_tmp.deserialize(i) @ResourceInstanceRunningJobInfos << resourceinstancerunningjobinfo_tmp end end @RequestId = params['RequestId'] end |