Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListGlossariesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListGlossariesResponse
- 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 Glossaries Response
Instance Attribute Summary collapse
-
#glossaries ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Glossary>
Lists the Glossaries in the specified parent.
-
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page.
-
#unreachable_locations ⇒ Array<String>
Locations that the service couldn't reach.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListGlossariesResponse
constructor
A new instance of GoogleCloudDataplexV1ListGlossariesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListGlossariesResponse
Returns a new instance of GoogleCloudDataplexV1ListGlossariesResponse.
6518 6519 6520 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6518 def initialize(**args) update!(**args) end |
Instance Attribute Details
#glossaries ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Glossary>
Lists the Glossaries in the specified parent.
Corresponds to the JSON property glossaries
6505 6506 6507 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6505 def glossaries @glossaries end |
#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
6511 6512 6513 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6511 def next_page_token @next_page_token end |
#unreachable_locations ⇒ Array<String>
Locations that the service couldn't reach.
Corresponds to the JSON property unreachableLocations
6516 6517 6518 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6516 def unreachable_locations @unreachable_locations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6523 6524 6525 6526 6527 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6523 def update!(**args) @glossaries = args[:glossaries] if args.key?(:glossaries) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable_locations = args[:unreachable_locations] if args.key?(:unreachable_locations) end |