Class: Google::Apis::RunV1alpha1::ListAuthorizedDomainsResponse
- Inherits:
-
Object
- Object
- Google::Apis::RunV1alpha1::ListAuthorizedDomainsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/run_v1alpha1/classes.rb,
generated/google/apis/run_v1alpha1/representations.rb,
generated/google/apis/run_v1alpha1/representations.rb
Overview
A list of Authorized Domains.
Instance Attribute Summary collapse
-
#domains ⇒ Array<Google::Apis::RunV1alpha1::AuthorizedDomain>
The authorized domains belonging to the user.
-
#next_page_token ⇒ String
Continuation token for fetching the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAuthorizedDomainsResponse
constructor
A new instance of ListAuthorizedDomainsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAuthorizedDomainsResponse
Returns a new instance of ListAuthorizedDomainsResponse.
2112 2113 2114 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2112 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domains ⇒ Array<Google::Apis::RunV1alpha1::AuthorizedDomain>
The authorized domains belonging to the user.
Corresponds to the JSON property domains
2105 2106 2107 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2105 def domains @domains end |
#next_page_token ⇒ String
Continuation token for fetching the next page of results.
Corresponds to the JSON property nextPageToken
2110 2111 2112 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2110 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2117 2118 2119 2120 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2117 def update!(**args) @domains = args[:domains] if args.key?(:domains) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |