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.
8065 8066 8067 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8065 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
8052 8053 8054 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8052 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
8058 8059 8060 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8058 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
8063 8064 8065 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8063 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8070 8071 8072 8073 8074 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8070 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 |