Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataTaxonomiesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataTaxonomiesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
List DataTaxonomies response.
Instance Attribute Summary collapse
-
#data_taxonomies ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataTaxonomy>
DataTaxonomies under the given parent location.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
-
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataTaxonomiesResponse
constructor
A new instance of GoogleCloudDataplexV1ListDataTaxonomiesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataTaxonomiesResponse
6312 6313 6314 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6312 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_taxonomies ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataTaxonomy>
DataTaxonomies under the given parent location.
Corresponds to the JSON property dataTaxonomies
6299 6300 6301 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6299 def data_taxonomies @data_taxonomies 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
6305 6306 6307 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6305 def next_page_token @next_page_token end |
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachableLocations
6310 6311 6312 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6310 def unreachable_locations @unreachable_locations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6317 6318 6319 6320 6321 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6317 def update!(**args) @data_taxonomies = args[:data_taxonomies] if args.key?(:data_taxonomies) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable_locations = args[:unreachable_locations] if args.key?(:unreachable_locations) end |