Class: Google::Apis::ComposerV1::ListWorkloadsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/composer_v1/classes.rb,
lib/google/apis/composer_v1/representations.rb,
lib/google/apis/composer_v1/representations.rb

Overview

Response to ListWorkloadsRequest.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListWorkloadsResponse

Returns a new instance of ListWorkloadsResponse.



1137
1138
1139
# File 'lib/google/apis/composer_v1/classes.rb', line 1137

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

The page token used to query for the next page if one exists. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1130
1131
1132
# File 'lib/google/apis/composer_v1/classes.rb', line 1130

def next_page_token
  @next_page_token
end

#workloadsArray<Google::Apis::ComposerV1::ComposerWorkload>

The list of environment workloads. Corresponds to the JSON property workloads



1135
1136
1137
# File 'lib/google/apis/composer_v1/classes.rb', line 1135

def workloads
  @workloads
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1142
1143
1144
1145
# File 'lib/google/apis/composer_v1/classes.rb', line 1142

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @workloads = args[:workloads] if args.key?(:workloads)
end