Class: Google::Apis::FirebaseapphostingV1::ListDomainsResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseapphostingV1::ListDomainsResponse
- 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
-
#domains ⇒ Array<Google::Apis::FirebaseapphostingV1::Domain>
Output only.
-
#next_page_token ⇒ String
Output only.
-
#unreachable ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDomainsResponse
constructor
A new instance of ListDomainsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#domains ⇒ Array<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_token ⇒ String
Output only. A token identifying the next page of results the server should
return.
Corresponds to the JSON property nextPageToken
1165 1166 1167 |
# File 'lib/google/apis/firebaseapphosting_v1/classes.rb', line 1165 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Output only. Locations that could not be reached.
Corresponds to the JSON property unreachable
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 |