Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SearchDataItemsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb

Overview

Response message for DatasetService.SearchDataItems.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SearchDataItemsResponse

Returns a new instance of GoogleCloudAiplatformV1beta1SearchDataItemsResponse.



25077
25078
25079
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25077

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

Instance Attribute Details

#data_item_viewsArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DataItemView>

The DataItemViews read. Corresponds to the JSON property dataItemViews



25069
25070
25071
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25069

def data_item_views
  @data_item_views
end

#next_page_tokenString

A token to retrieve next page of results. Pass to SearchDataItemsRequest. page_token to obtain that page. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


25075
25076
25077
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25075

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



25082
25083
25084
25085
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25082

def update!(**args)
  @data_item_views = args[:data_item_views] if args.key?(:data_item_views)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end