Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataProductsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataProductsResponse
- 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
Response message for listing data products.
Instance Attribute Summary collapse
-
#data_products ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProduct>
The data products for the requested filter criteria.
-
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page.
-
#unreachable ⇒ Array<String>
Unordered list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataProductsResponse
constructor
A new instance of GoogleCloudDataplexV1ListDataProductsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataProductsResponse
Returns a new instance of GoogleCloudDataplexV1ListDataProductsResponse.
8310 8311 8312 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8310 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_products ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProduct>
The data products for the requested filter criteria.
Corresponds to the JSON property dataProducts
8297 8298 8299 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8297 def data_products @data_products end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is empty, then there are no subsequent pages.
Corresponds to the JSON property nextPageToken
8303 8304 8305 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8303 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Unordered list. Locations that the service couldn't reach.
Corresponds to the JSON property unreachable
8308 8309 8310 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8308 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8315 8316 8317 8318 8319 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8315 def update!(**args) @data_products = args[:data_products] if args.key?(:data_products) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |