Class: Google::Apis::AppengineV1beta4::ListModulesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta4::ListModulesResponse
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/appengine_v1beta4/classes.rb,
generated/google/apis/appengine_v1beta4/representations.rb,
generated/google/apis/appengine_v1beta4/representations.rb
Overview
Response message for Modules.ListModules
.
Instance Attribute Summary collapse
-
#modules ⇒ Array<Google::Apis::AppengineV1beta4::Module>
The modules belonging to the requested application.
-
#next_page_token ⇒ String
Continuation token for fetching the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListModulesResponse
constructor
A new instance of ListModulesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListModulesResponse
Returns a new instance of ListModulesResponse
1449 1450 1451 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1449 def initialize(**args) update!(**args) end |
Instance Attribute Details
#modules ⇒ Array<Google::Apis::AppengineV1beta4::Module>
The modules belonging to the requested application.
Corresponds to the JSON property modules
1442 1443 1444 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1442 def modules @modules end |
#next_page_token ⇒ String
Continuation token for fetching the next page of results.
Corresponds to the JSON property nextPageToken
1447 1448 1449 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1447 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1454 1455 1456 1457 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1454 def update!(**args) @modules = args[:modules] if args.key?(:modules) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |