Class: Google::Apis::AppengineV1::ListRuntimesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListRuntimesResponse

Returns a new instance of ListRuntimesResponse.



1638
1639
1640
# File 'lib/google/apis/appengine_v1/classes.rb', line 1638

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

Instance Attribute Details

#next_page_tokenString

Continuation token for fetching the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1631
1632
1633
# File 'lib/google/apis/appengine_v1/classes.rb', line 1631

def next_page_token
  @next_page_token
end

#runtimesArray<Google::Apis::AppengineV1::Runtime>

The runtimes available to the requested application. Corresponds to the JSON property runtimes



1636
1637
1638
# File 'lib/google/apis/appengine_v1/classes.rb', line 1636

def runtimes
  @runtimes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1643
1644
1645
1646
# File 'lib/google/apis/appengine_v1/classes.rb', line 1643

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