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.
6818 6819 6820 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6818 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
6806 6807 6808 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6806 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
6811 6812 6813 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6811 def terms @terms end |
#unreachable_locations ⇒ Array<String>
Locations that the service couldn't reach.
Corresponds to the JSON property unreachableLocations
6816 6817 6818 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6816 def unreachable_locations @unreachable_locations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6823 6824 6825 6826 6827 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6823 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 |