Class: Google::Apis::ServicedirectoryV1beta1::ListNamespacesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServicedirectoryV1beta1::ListNamespacesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicedirectory_v1beta1/classes.rb,
generated/google/apis/servicedirectory_v1beta1/representations.rb,
generated/google/apis/servicedirectory_v1beta1/representations.rb
Overview
The response message for RegistrationService.ListNamespaces.
Instance Attribute Summary collapse
-
#namespaces ⇒ Array<Google::Apis::ServicedirectoryV1beta1::Namespace>
The list of namespaces.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListNamespacesResponse
constructor
A new instance of ListNamespacesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListNamespacesResponse
Returns a new instance of ListNamespacesResponse.
331 332 333 |
# File 'generated/google/apis/servicedirectory_v1beta1/classes.rb', line 331 def initialize(**args) update!(**args) end |
Instance Attribute Details
#namespaces ⇒ Array<Google::Apis::ServicedirectoryV1beta1::Namespace>
The list of namespaces.
Corresponds to the JSON property namespaces
323 324 325 |
# File 'generated/google/apis/servicedirectory_v1beta1/classes.rb', line 323 def namespaces @namespaces end |
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
329 330 331 |
# File 'generated/google/apis/servicedirectory_v1beta1/classes.rb', line 329 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
336 337 338 339 |
# File 'generated/google/apis/servicedirectory_v1beta1/classes.rb', line 336 def update!(**args) @namespaces = args[:namespaces] if args.key?(:namespaces) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |