Class: Google::Apis::AppengineV1beta::ListDomainMappingsResponse

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

Overview

Response message for DomainMappings.ListDomainMappings.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListDomainMappingsResponse

Returns a new instance of ListDomainMappingsResponse.



1592
1593
1594
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1592

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

Instance Attribute Details

#domain_mappingsArray<Google::Apis::AppengineV1beta::DomainMapping>

The domain mappings for the application. Corresponds to the JSON property domainMappings



1585
1586
1587
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1585

def domain_mappings
  @domain_mappings
end

#next_page_tokenString

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

Returns:

  • (String)


1590
1591
1592
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1590

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1597
1598
1599
1600
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1597

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