Class: Google::Apis::AppengineV1::ListRuntimesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::ListRuntimesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/appengine_v1/classes.rb,
lib/google/apis/appengine_v1/representations.rb,
lib/google/apis/appengine_v1/representations.rb
Overview
Response message for Applications.ListRuntimes.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Continuation token for fetching the next page of results.
-
#runtimes ⇒ Array<Google::Apis::AppengineV1::Runtime>
The runtimes available to the requested application.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListRuntimesResponse
constructor
A new instance of ListRuntimesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListRuntimesResponse
Returns a new instance of ListRuntimesResponse.
1666 1667 1668 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1666 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Continuation token for fetching the next page of results.
Corresponds to the JSON property nextPageToken
1659 1660 1661 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1659 def next_page_token @next_page_token end |
#runtimes ⇒ Array<Google::Apis::AppengineV1::Runtime>
The runtimes available to the requested application.
Corresponds to the JSON property runtimes
1664 1665 1666 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1664 def runtimes @runtimes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1671 1672 1673 1674 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1671 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @runtimes = args[:runtimes] if args.key?(:runtimes) end |