Class: Google::Apis::ServicedirectoryV1beta1::ListNamespacesResponse

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

Overview

The response message for RegistrationService.ListNamespaces.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListNamespacesResponse

Returns a new instance of ListNamespacesResponse.



390
391
392
# File 'lib/google/apis/servicedirectory_v1beta1/classes.rb', line 390

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

Instance Attribute Details

#namespacesArray<Google::Apis::ServicedirectoryV1beta1::Namespace>

The list of namespaces. Corresponds to the JSON property namespaces



382
383
384
# File 'lib/google/apis/servicedirectory_v1beta1/classes.rb', line 382

def namespaces
  @namespaces
end

#next_page_tokenString

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

Returns:

  • (String)


388
389
390
# File 'lib/google/apis/servicedirectory_v1beta1/classes.rb', line 388

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



395
396
397
398
# File 'lib/google/apis/servicedirectory_v1beta1/classes.rb', line 395

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