Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListAssetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListAssetsResponse
- 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 assets response.
Instance Attribute Summary collapse
-
#assets ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Asset>
Asset under the given parent zone.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListAssetsResponse
constructor
A new instance of GoogleCloudDataplexV1ListAssetsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListAssetsResponse
Returns a new instance of GoogleCloudDataplexV1ListAssetsResponse.
5226 5227 5228 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5226 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assets ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Asset>
Asset under the given parent zone.
Corresponds to the JSON property assets
5218 5219 5220 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5218 def assets @assets end |
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
5224 5225 5226 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5224 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5231 5232 5233 5234 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5231 def update!(**args) @assets = args[:assets] if args.key?(:assets) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |