Class: Google::Apis::DatafusionV1beta1::ListNamespacesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatafusionV1beta1::ListNamespacesResponse
- 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
-
#namespaces ⇒ Array<Google::Apis::DatafusionV1beta1::Namespace>
List of namespaces Corresponds to the JSON property
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.
1031 1032 1033 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1031 def initialize(**args) update!(**args) end |
Instance Attribute Details
#namespaces ⇒ Array<Google::Apis::DatafusionV1beta1::Namespace>
List of namespaces
Corresponds to the JSON property namespaces
1023 1024 1025 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1023 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
1029 1030 1031 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1029 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1036 1037 1038 1039 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1036 def update!(**args) @namespaces = args[:namespaces] if args.key?(:namespaces) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |