Class: Google::Apis::FirebaseapphostingV1::ListDomainsResponse

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

Overview

Message for response to list domains.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListDomainsResponse

Returns a new instance of ListDomainsResponse.



1172
1173
1174
# File 'lib/google/apis/firebaseapphosting_v1/classes.rb', line 1172

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

Instance Attribute Details

#domainsArray<Google::Apis::FirebaseapphostingV1::Domain>

Output only. The list of domains. Corresponds to the JSON property domains



1159
1160
1161
# File 'lib/google/apis/firebaseapphosting_v1/classes.rb', line 1159

def domains
  @domains
end

#next_page_tokenString

Output only. A token identifying the next page of results the server should return. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1165
1166
1167
# File 'lib/google/apis/firebaseapphosting_v1/classes.rb', line 1165

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Output only. Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


1170
1171
1172
# File 'lib/google/apis/firebaseapphosting_v1/classes.rb', line 1170

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1177
1178
1179
1180
1181
# File 'lib/google/apis/firebaseapphosting_v1/classes.rb', line 1177

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