Class: Google::Apis::AppengineV1alpha::ListDomainMappingsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1alpha::ListDomainMappingsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/appengine_v1alpha/classes.rb,
lib/google/apis/appengine_v1alpha/representations.rb,
lib/google/apis/appengine_v1alpha/representations.rb more...
Overview
Response message for DomainMappings.ListDomainMappings.
Instance Attribute Summary collapse
-
#domain_mappings ⇒ Array<Google::Apis::AppengineV1alpha::DomainMapping>
The domain mappings for the application.
-
#next_page_token ⇒ String
Continuation token for fetching the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDomainMappingsResponse
constructor
A new instance of ListDomainMappingsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDomainMappingsResponse
Returns a new instance of ListDomainMappingsResponse.
457 458 459 |
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 457 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domain_mappings ⇒ Array<Google::Apis::AppengineV1alpha::DomainMapping>
The domain mappings for the application.
Corresponds to the JSON property domainMappings
450 451 452 |
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 450 def domain_mappings @domain_mappings end |
#next_page_token ⇒ String
Continuation token for fetching the next page of results.
Corresponds to the JSON property nextPageToken
455 456 457 |
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 455 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
462 463 464 465 |
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 462 def update!(**args) @domain_mappings = args[:domain_mappings] if args.key?(:domain_mappings) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |