Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UpsertDatapointsRequest

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

Request message for IndexService.UpsertDatapoints

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1UpsertDatapointsRequest

Returns a new instance of GoogleCloudAiplatformV1beta1UpsertDatapointsRequest.



36167
36168
36169
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 36167

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

Instance Attribute Details

#datapointsArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1IndexDatapoint>

A list of datapoints to be created/updated. Corresponds to the JSON property datapoints



36157
36158
36159
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 36157

def datapoints
  @datapoints
end

#update_maskString

Optional. Update mask is used to specify the fields to be overwritten in the datapoints by the update. The fields specified in the update_mask are relative to each IndexDatapoint inside datapoints, not the full request. Updatable fields: * Use all_restricts to update both restricts and numeric_restricts. Corresponds to the JSON property updateMask

Returns:

  • (String)


36165
36166
36167
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 36165

def update_mask
  @update_mask
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



36172
36173
36174
36175
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 36172

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