Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataAssetsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataAssetsResponse

Returns a new instance of GoogleCloudDataplexV1ListDataAssetsResponse.



8165
8166
8167
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8165

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#data_assetsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataAsset>

The data assets for the requested filter criteria. Corresponds to the JSON property dataAssets



8157
8158
8159
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8157

def data_assets
  @data_assets
end

#next_page_tokenString

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

Returns:

  • (String)


8163
8164
8165
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8163

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8170
8171
8172
8173
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8170

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