Class: Google::Apis::FirebasehostingV1beta1::ListCustomDomainsResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebasehostingV1beta1::ListCustomDomainsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebasehosting_v1beta1/classes.rb,
lib/google/apis/firebasehosting_v1beta1/representations.rb,
lib/google/apis/firebasehosting_v1beta1/representations.rb
Overview
The response from ListCustomDomains
.
Instance Attribute Summary collapse
-
#custom_domains ⇒ Array<Google::Apis::FirebasehostingV1beta1::CustomDomain>
A list of
CustomDomain
entities associated with the specified FirebaseSite
. -
#next_page_token ⇒ String
The pagination token, if more results exist beyond the ones in this response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCustomDomainsResponse
constructor
A new instance of ListCustomDomainsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCustomDomainsResponse
Returns a new instance of ListCustomDomainsResponse.
984 985 986 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 984 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_domains ⇒ Array<Google::Apis::FirebasehostingV1beta1::CustomDomain>
A list of CustomDomain
entities associated with the specified Firebase Site
.
Corresponds to the JSON property customDomains
975 976 977 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 975 def custom_domains @custom_domains end |
#next_page_token ⇒ String
The pagination token, if more results exist beyond the ones in this response.
Include this token in your next call to ListCustomDomains
. Page tokens are
short-lived and should not be stored.
Corresponds to the JSON property nextPageToken
982 983 984 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 982 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
989 990 991 992 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 989 def update!(**args) @custom_domains = args[:custom_domains] if args.key?(:custom_domains) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |