class Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ListTaxonomiesResponse
Response message for ListTaxonomies.
Attributes
next_page_token[RW]
Pagination token of the next results page. Empty
if there are no more results in the list. Corresponds to the JSON property `nextPageToken` @return [String]
taxonomies[RW]
Taxonomies that the project contains. Corresponds to the JSON property `taxonomies` @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Taxonomy>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datacatalog_v1/classes.rb, line 1072 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/datacatalog_v1/classes.rb, line 1077 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @taxonomies = args[:taxonomies] if args.key?(:taxonomies) end