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.



8310
8311
8312
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8310

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



8297
8298
8299
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8297

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)


8303
8304
8305
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8303

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>)


8308
8309
8310
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8308

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8315
8316
8317
8318
8319
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8315

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