Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListGlossariesResponse

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 Glossaries Response

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListGlossariesResponse

Returns a new instance of GoogleCloudDataplexV1ListGlossariesResponse.



8580
8581
8582
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8580

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#glossariesArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1Glossary>

Lists the Glossaries in the specified parent. Corresponds to the JSON property glossaries



8567
8568
8569
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8567

def glossaries
  @glossaries
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)


8573
8574
8575
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8573

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>)


8578
8579
8580
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8578

def unreachable_locations
  @unreachable_locations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8585
8586
8587
8588
8589
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8585

def update!(**args)
  @glossaries = args[:glossaries] if args.key?(:glossaries)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable_locations = args[:unreachable_locations] if args.key?(:unreachable_locations)
end