Class: Google::Apis::DatafusionV1beta1::ListNamespacesResponse

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

Overview

List namespaces response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListNamespacesResponse

Returns a new instance of ListNamespacesResponse.



722
723
724
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 722

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

Instance Attribute Details

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

List of namespaces Corresponds to the JSON property namespaces



714
715
716
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 714

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)


720
721
722
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 720

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



727
728
729
730
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 727

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