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.



8065
8066
8067
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8065

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



8052
8053
8054
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8052

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)


8058
8059
8060
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8058

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


8063
8064
8065
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8063

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8070
8071
8072
8073
8074
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8070

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