Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListGlossaryTermsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListGlossaryTermsResponse
- 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
-
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page.
-
#terms ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1GlossaryTerm>
Lists the GlossaryTerms in the specified parent.
-
#unreachable_locations ⇒ Array<String>
Locations that the service couldn't reach.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListGlossaryTermsResponse
constructor
A new instance of GoogleCloudDataplexV1ListGlossaryTermsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_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
8677 8678 8679 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8677 def next_page_token @next_page_token end |
#terms ⇒ Array<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_locations ⇒ Array<String>
Locations that the service couldn't reach.
Corresponds to the JSON property unreachableLocations
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 |