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.
7970 7971 7972 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7970 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
7962 7963 7964 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7962 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
7968 7969 7970 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7968 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7975 7976 7977 7978 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7975 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 |