Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataAssetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataAssetsResponse
- 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 assets.
Instance Attribute Summary collapse
-
#data_assets ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataAsset>
The data assets for the requested filter criteria.
-
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataAssetsResponse
constructor
A new instance of GoogleCloudDataplexV1ListDataAssetsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataAssetsResponse
Returns a new instance of GoogleCloudDataplexV1ListDataAssetsResponse.
8210 8211 8212 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8210 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_assets ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataAsset>
The data assets for the requested filter criteria.
Corresponds to the JSON property dataAssets
8202 8203 8204 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8202 def data_assets @data_assets 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
8208 8209 8210 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8208 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8215 8216 8217 8218 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8215 def update!(**args) @data_assets = args[:data_assets] if args.key?(:data_assets) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |