Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListGlossaryCategoriesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#categoriesArray<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_tokenString

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

Returns:

  • (String)


6543
6544
6545
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6543

def next_page_token
  @next_page_token
end

#unreachable_locationsArray<String>

Locations that the service couldn't reach. Corresponds to the JSON property unreachableLocations

Returns:

  • (Array<String>)


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