Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListGlossaryCategoriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListGlossaryCategoriesResponse
- 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 GlossaryCategories Response
Instance Attribute Summary collapse
-
#categories ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryCategory>
Lists the GlossaryCategories in the specified parent.
-
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page.
-
#unreachable_locations ⇒ Array<String>
Locations that the service couldn't reach.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListGlossaryCategoriesResponse
constructor
A new instance of GoogleCloudDataplexV1ListGlossaryCategoriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListGlossaryCategoriesResponse
Returns a new instance of GoogleCloudDataplexV1ListGlossaryCategoriesResponse.
6550 6551 6552 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6550 def initialize(**args) update!(**args) end |
Instance Attribute Details
#categories ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryCategory>
Lists the GlossaryCategories in the specified parent.
Corresponds to the JSON property categories
6537 6538 6539 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6537 def categories @categories end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
6543 6544 6545 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6543 def next_page_token @next_page_token end |
#unreachable_locations ⇒ Array<String>
Locations that the service couldn't reach.
Corresponds to the JSON property unreachableLocations
6548 6549 6550 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6548 def unreachable_locations @unreachable_locations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6555 6556 6557 6558 6559 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6555 def update!(**args) @categories = args[:categories] if args.key?(:categories) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable_locations = args[:unreachable_locations] if args.key?(:unreachable_locations) end |