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.
6582 6583 6584 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6582 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
6570 6571 6572 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6570 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
6575 6576 6577 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6575 def terms @terms end |
#unreachable_locations ⇒ Array<String>
Locations that the service couldn't reach.
Corresponds to the JSON property unreachableLocations
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 |