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.



6582
6583
6584
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6582

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)


6570
6571
6572
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6570

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



6575
6576
6577
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6575

def terms
  @terms
end

#unreachable_locationsArray<String>

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

Returns:

  • (Array<String>)


6580
6581
6582
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6580

def unreachable_locations
  @unreachable_locations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6587
6588
6589
6590
6591
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6587

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