Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataProductsResponse

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 products.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataProductsResponse

Returns a new instance of GoogleCloudDataplexV1ListDataProductsResponse.



8355
8356
8357
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8355

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

Instance Attribute Details

#data_productsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProduct>

The data products for the requested filter criteria. Corresponds to the JSON property dataProducts



8342
8343
8344
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8342

def data_products
  @data_products
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)


8348
8349
8350
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8348

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Unordered list. Locations that the service couldn't reach. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


8353
8354
8355
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8353

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8360
8361
8362
8363
8364
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8360

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