Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListGlossaryTermsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListGlossaryTermsResponse

Returns a new instance of GoogleCloudDataplexV1ListGlossaryTermsResponse.



8689
8690
8691
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8689

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

Instance Attribute Details

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


8677
8678
8679
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8677

def next_page_token
  @next_page_token
end

#termsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryTerm>

Lists the GlossaryTerms in the specified parent. Corresponds to the JSON property terms



8682
8683
8684
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8682

def terms
  @terms
end

#unreachable_locationsArray<String>

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

Returns:

  • (Array<String>)


8687
8688
8689
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8687

def unreachable_locations
  @unreachable_locations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8694
8695
8696
8697
8698
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8694

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