Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SearchDataItemsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SearchDataItemsResponse
- 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
-
#data_item_views ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DataItemView>
The DataItemViews read.
-
#next_page_token ⇒ String
A token to retrieve next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SearchDataItemsResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1SearchDataItemsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SearchDataItemsResponse
Returns a new instance of GoogleCloudAiplatformV1beta1SearchDataItemsResponse.
30993 30994 30995 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30993 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_item_views ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DataItemView>
The DataItemViews read.
Corresponds to the JSON property dataItemViews
30985 30986 30987 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30985 def data_item_views @data_item_views end |
#next_page_token ⇒ String
A token to retrieve next page of results. Pass to SearchDataItemsRequest.
page_token to obtain that page.
Corresponds to the JSON property nextPageToken
30991 30992 30993 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30991 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
30998 30999 31000 31001 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30998 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 |