google-apis-aiplatform_v1 0.60.0 → 0.61.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d79e114cec8317df56f82abdc3a31070c466ac1a2c13065550ea290221ba3a9
4
- data.tar.gz: d3505f17ede05d24c6621cf01a9f1c33c688e8b02a1d5018e01a0be541c5c471
3
+ metadata.gz: 7231fcfdfab08158567caf1632441866813361c28f19d121779542ee5a2a49b5
4
+ data.tar.gz: edb15aa7ea41c5f57dbb6207ac70a05445c6a00dddfcfcf08772667e8d64ca44
5
5
  SHA512:
6
- metadata.gz: '017121179eac9b95433b640c772b4bd25fd4899154b8e33b8e31507834ac011ca539311e703ef97c77f8de8c7a819585bb86ecfa6ce9ea5b91a8199725481195'
7
- data.tar.gz: 120ed78baf1634761568e1e0de10f9f4b7466ad0a9fc43e3affb9a9313f0262a3c3e875a1de38ee6cadd2657ddc81095082deba0c6a533fc91127c970c87baa2
6
+ metadata.gz: bb60f8d1e453514719249c7f91d7c0810ae0b6c02a5c35192df843bbf38e6731c2124d15e7dd8d4857306666a6cf5a0ad5ea4913cc718d4241e24adcde03b02d
7
+ data.tar.gz: f1c084f586268325deb80d9d5ab5d7fd77cf41fff8f7bf3a90723caf47b0ed7563971a79e7fc57dc2edf5a1999bc92c6196e7ba1bba48dc6b1aa12eb75b8c532
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1
2
2
 
3
+ ### v0.61.0 (2025-08-03)
4
+
5
+ * Regenerated from discovery document revision 20250728
6
+
3
7
  ### v0.60.0 (2025-07-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20250715
@@ -4389,6 +4389,12 @@ module Google
4389
4389
  class GoogleCloudAiplatformV1CreateEndpointOperationMetadata
4390
4390
  include Google::Apis::Core::Hashable
4391
4391
 
4392
+ # Output only. The deployment stage of the model. Only populated if this
4393
+ # CreateEndpoint request deploys a model at the same time.
4394
+ # Corresponds to the JSON property `deploymentStage`
4395
+ # @return [String]
4396
+ attr_accessor :deployment_stage
4397
+
4392
4398
  # Generic Metadata shared by all operations.
4393
4399
  # Corresponds to the JSON property `genericMetadata`
4394
4400
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata]
@@ -4400,6 +4406,7 @@ module Google
4400
4406
 
4401
4407
  # Update properties of this object
4402
4408
  def update!(**args)
4409
+ @deployment_stage = args[:deployment_stage] if args.key?(:deployment_stage)
4403
4410
  @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
4404
4411
  end
4405
4412
  end
@@ -6100,6 +6107,11 @@ module Google
6100
6107
  class GoogleCloudAiplatformV1DeployModelOperationMetadata
6101
6108
  include Google::Apis::Core::Hashable
6102
6109
 
6110
+ # Output only. The deployment stage of the model.
6111
+ # Corresponds to the JSON property `deploymentStage`
6112
+ # @return [String]
6113
+ attr_accessor :deployment_stage
6114
+
6103
6115
  # Generic Metadata shared by all operations.
6104
6116
  # Corresponds to the JSON property `genericMetadata`
6105
6117
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata]
@@ -6111,6 +6123,7 @@ module Google
6111
6123
 
6112
6124
  # Update properties of this object
6113
6125
  def update!(**args)
6126
+ @deployment_stage = args[:deployment_stage] if args.key?(:deployment_stage)
6114
6127
  @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
6115
6128
  end
6116
6129
  end
@@ -11000,6 +11013,133 @@ module Google
11000
11013
  end
11001
11014
  end
11002
11015
 
11016
+ # Request message for FeatureOnlineStoreService.FeatureViewDirectWrite.
11017
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteRequest
11018
+ include Google::Apis::Core::Hashable
11019
+
11020
+ # Required. The data keys and associated feature values.
11021
+ # Corresponds to the JSON property `dataKeyAndFeatureValues`
11022
+ # @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues>]
11023
+ attr_accessor :data_key_and_feature_values
11024
+
11025
+ def initialize(**args)
11026
+ update!(**args)
11027
+ end
11028
+
11029
+ # Update properties of this object
11030
+ def update!(**args)
11031
+ @data_key_and_feature_values = args[:data_key_and_feature_values] if args.key?(:data_key_and_feature_values)
11032
+ end
11033
+ end
11034
+
11035
+ # A data key and associated feature values to write to the feature view.
11036
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues
11037
+ include Google::Apis::Core::Hashable
11038
+
11039
+ # Lookup key for a feature view.
11040
+ # Corresponds to the JSON property `dataKey`
11041
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey]
11042
+ attr_accessor :data_key
11043
+
11044
+ # List of features to write.
11045
+ # Corresponds to the JSON property `features`
11046
+ # @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature>]
11047
+ attr_accessor :features
11048
+
11049
+ def initialize(**args)
11050
+ update!(**args)
11051
+ end
11052
+
11053
+ # Update properties of this object
11054
+ def update!(**args)
11055
+ @data_key = args[:data_key] if args.key?(:data_key)
11056
+ @features = args[:features] if args.key?(:features)
11057
+ end
11058
+ end
11059
+
11060
+ # Feature name & value pair.
11061
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature
11062
+ include Google::Apis::Core::Hashable
11063
+
11064
+ # Feature short name.
11065
+ # Corresponds to the JSON property `name`
11066
+ # @return [String]
11067
+ attr_accessor :name
11068
+
11069
+ # Value for a feature.
11070
+ # Corresponds to the JSON property `value`
11071
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureValue]
11072
+ attr_accessor :value
11073
+
11074
+ def initialize(**args)
11075
+ update!(**args)
11076
+ end
11077
+
11078
+ # Update properties of this object
11079
+ def update!(**args)
11080
+ @name = args[:name] if args.key?(:name)
11081
+ @value = args[:value] if args.key?(:value)
11082
+ end
11083
+ end
11084
+
11085
+ # Response message for FeatureOnlineStoreService.FeatureViewDirectWrite.
11086
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteResponse
11087
+ include Google::Apis::Core::Hashable
11088
+
11089
+ # The `Status` type defines a logical error model that is suitable for different
11090
+ # programming environments, including REST APIs and RPC APIs. It is used by [
11091
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
11092
+ # data: error code, error message, and error details. You can find out more
11093
+ # about this error model and how to work with it in the [API Design Guide](https:
11094
+ # //cloud.google.com/apis/design/errors).
11095
+ # Corresponds to the JSON property `status`
11096
+ # @return [Google::Apis::AiplatformV1::GoogleRpcStatus]
11097
+ attr_accessor :status
11098
+
11099
+ # Details about write for each key. If status is not OK, WriteResponse.data_key
11100
+ # will have the key with error, but WriteResponse.online_store_write_time will
11101
+ # not be present.
11102
+ # Corresponds to the JSON property `writeResponses`
11103
+ # @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse>]
11104
+ attr_accessor :write_responses
11105
+
11106
+ def initialize(**args)
11107
+ update!(**args)
11108
+ end
11109
+
11110
+ # Update properties of this object
11111
+ def update!(**args)
11112
+ @status = args[:status] if args.key?(:status)
11113
+ @write_responses = args[:write_responses] if args.key?(:write_responses)
11114
+ end
11115
+ end
11116
+
11117
+ # Details about the write for each key.
11118
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse
11119
+ include Google::Apis::Core::Hashable
11120
+
11121
+ # Lookup key for a feature view.
11122
+ # Corresponds to the JSON property `dataKey`
11123
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey]
11124
+ attr_accessor :data_key
11125
+
11126
+ # When the feature values were written to the online store. If
11127
+ # FeatureViewDirectWriteResponse.status is not OK, this field is not populated.
11128
+ # Corresponds to the JSON property `onlineStoreWriteTime`
11129
+ # @return [String]
11130
+ attr_accessor :online_store_write_time
11131
+
11132
+ def initialize(**args)
11133
+ update!(**args)
11134
+ end
11135
+
11136
+ # Update properties of this object
11137
+ def update!(**args)
11138
+ @data_key = args[:data_key] if args.key?(:data_key)
11139
+ @online_store_write_time = args[:online_store_write_time] if args.key?(:online_store_write_time)
11140
+ end
11141
+ end
11142
+
11003
11143
  # A Feature Registry source for features that need to be synced to Online Store.
11004
11144
  class GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource
11005
11145
  include Google::Apis::Core::Hashable
@@ -13217,6 +13357,32 @@ module Google
13217
13357
  end
13218
13358
  end
13219
13359
 
13360
+ # Tool to retrieve public maps data for grounding, powered by Google.
13361
+ class GoogleCloudAiplatformV1GoogleMaps
13362
+ include Google::Apis::Core::Hashable
13363
+
13364
+ # The generic reusable api auth config. Deprecated. Please use AuthConfig (
13365
+ # google/cloud/aiplatform/master/auth.proto) instead.
13366
+ # Corresponds to the JSON property `apiAuth`
13367
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ApiAuth]
13368
+ attr_accessor :api_auth
13369
+
13370
+ # Auth configuration to run the extension.
13371
+ # Corresponds to the JSON property `authConfig`
13372
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AuthConfig]
13373
+ attr_accessor :auth_config
13374
+
13375
+ def initialize(**args)
13376
+ update!(**args)
13377
+ end
13378
+
13379
+ # Update properties of this object
13380
+ def update!(**args)
13381
+ @api_auth = args[:api_auth] if args.key?(:api_auth)
13382
+ @auth_config = args[:auth_config] if args.key?(:auth_config)
13383
+ end
13384
+ end
13385
+
13220
13386
  # Tool to retrieve public web data for grounding, powered by Google.
13221
13387
  class GoogleCloudAiplatformV1GoogleSearchRetrieval
13222
13388
  include Google::Apis::Core::Hashable
@@ -13341,6 +13507,11 @@ module Google
13341
13507
  class GoogleCloudAiplatformV1GroundingChunk
13342
13508
  include Google::Apis::Core::Hashable
13343
13509
 
13510
+ # Chunk from Google Maps.
13511
+ # Corresponds to the JSON property `maps`
13512
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMaps]
13513
+ attr_accessor :maps
13514
+
13344
13515
  # Chunk from context retrieved by the retrieval tools.
13345
13516
  # Corresponds to the JSON property `retrievedContext`
13346
13517
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkRetrievedContext]
@@ -13357,11 +13528,157 @@ module Google
13357
13528
 
13358
13529
  # Update properties of this object
13359
13530
  def update!(**args)
13531
+ @maps = args[:maps] if args.key?(:maps)
13360
13532
  @retrieved_context = args[:retrieved_context] if args.key?(:retrieved_context)
13361
13533
  @web = args[:web] if args.key?(:web)
13362
13534
  end
13363
13535
  end
13364
13536
 
13537
+ # Chunk from Google Maps.
13538
+ class GoogleCloudAiplatformV1GroundingChunkMaps
13539
+ include Google::Apis::Core::Hashable
13540
+
13541
+ # Sources used to generate the place answer.
13542
+ # Corresponds to the JSON property `placeAnswerSources`
13543
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources]
13544
+ attr_accessor :place_answer_sources
13545
+
13546
+ # This Place's resource name, in `places/`place_id`` format. Can be used to look
13547
+ # up the Place.
13548
+ # Corresponds to the JSON property `placeId`
13549
+ # @return [String]
13550
+ attr_accessor :place_id
13551
+
13552
+ # Text of the chunk.
13553
+ # Corresponds to the JSON property `text`
13554
+ # @return [String]
13555
+ attr_accessor :text
13556
+
13557
+ # Title of the chunk.
13558
+ # Corresponds to the JSON property `title`
13559
+ # @return [String]
13560
+ attr_accessor :title
13561
+
13562
+ # URI reference of the chunk.
13563
+ # Corresponds to the JSON property `uri`
13564
+ # @return [String]
13565
+ attr_accessor :uri
13566
+
13567
+ def initialize(**args)
13568
+ update!(**args)
13569
+ end
13570
+
13571
+ # Update properties of this object
13572
+ def update!(**args)
13573
+ @place_answer_sources = args[:place_answer_sources] if args.key?(:place_answer_sources)
13574
+ @place_id = args[:place_id] if args.key?(:place_id)
13575
+ @text = args[:text] if args.key?(:text)
13576
+ @title = args[:title] if args.key?(:title)
13577
+ @uri = args[:uri] if args.key?(:uri)
13578
+ end
13579
+ end
13580
+
13581
+ # Sources used to generate the place answer.
13582
+ class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources
13583
+ include Google::Apis::Core::Hashable
13584
+
13585
+ # A link where users can flag a problem with the generated answer.
13586
+ # Corresponds to the JSON property `flagContentUri`
13587
+ # @return [String]
13588
+ attr_accessor :flag_content_uri
13589
+
13590
+ # Snippets of reviews that are used to generate the answer.
13591
+ # Corresponds to the JSON property `reviewSnippets`
13592
+ # @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet>]
13593
+ attr_accessor :review_snippets
13594
+
13595
+ def initialize(**args)
13596
+ update!(**args)
13597
+ end
13598
+
13599
+ # Update properties of this object
13600
+ def update!(**args)
13601
+ @flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
13602
+ @review_snippets = args[:review_snippets] if args.key?(:review_snippets)
13603
+ end
13604
+ end
13605
+
13606
+ # Author attribution for a photo or review.
13607
+ class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
13608
+ include Google::Apis::Core::Hashable
13609
+
13610
+ # Name of the author of the Photo or Review.
13611
+ # Corresponds to the JSON property `displayName`
13612
+ # @return [String]
13613
+ attr_accessor :display_name
13614
+
13615
+ # Profile photo URI of the author of the Photo or Review.
13616
+ # Corresponds to the JSON property `photoUri`
13617
+ # @return [String]
13618
+ attr_accessor :photo_uri
13619
+
13620
+ # URI of the author of the Photo or Review.
13621
+ # Corresponds to the JSON property `uri`
13622
+ # @return [String]
13623
+ attr_accessor :uri
13624
+
13625
+ def initialize(**args)
13626
+ update!(**args)
13627
+ end
13628
+
13629
+ # Update properties of this object
13630
+ def update!(**args)
13631
+ @display_name = args[:display_name] if args.key?(:display_name)
13632
+ @photo_uri = args[:photo_uri] if args.key?(:photo_uri)
13633
+ @uri = args[:uri] if args.key?(:uri)
13634
+ end
13635
+ end
13636
+
13637
+ # Encapsulates a review snippet.
13638
+ class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
13639
+ include Google::Apis::Core::Hashable
13640
+
13641
+ # Author attribution for a photo or review.
13642
+ # Corresponds to the JSON property `authorAttribution`
13643
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution]
13644
+ attr_accessor :author_attribution
13645
+
13646
+ # A link where users can flag a problem with the review.
13647
+ # Corresponds to the JSON property `flagContentUri`
13648
+ # @return [String]
13649
+ attr_accessor :flag_content_uri
13650
+
13651
+ # A link to show the review on Google Maps.
13652
+ # Corresponds to the JSON property `googleMapsUri`
13653
+ # @return [String]
13654
+ attr_accessor :google_maps_uri
13655
+
13656
+ # A string of formatted recent time, expressing the review time relative to the
13657
+ # current time in a form appropriate for the language and country.
13658
+ # Corresponds to the JSON property `relativePublishTimeDescription`
13659
+ # @return [String]
13660
+ attr_accessor :relative_publish_time_description
13661
+
13662
+ # A reference representing this place review which may be used to look up this
13663
+ # place review again.
13664
+ # Corresponds to the JSON property `review`
13665
+ # @return [String]
13666
+ attr_accessor :review
13667
+
13668
+ def initialize(**args)
13669
+ update!(**args)
13670
+ end
13671
+
13672
+ # Update properties of this object
13673
+ def update!(**args)
13674
+ @author_attribution = args[:author_attribution] if args.key?(:author_attribution)
13675
+ @flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
13676
+ @google_maps_uri = args[:google_maps_uri] if args.key?(:google_maps_uri)
13677
+ @relative_publish_time_description = args[:relative_publish_time_description] if args.key?(:relative_publish_time_description)
13678
+ @review = args[:review] if args.key?(:review)
13679
+ end
13680
+ end
13681
+
13365
13682
  # Chunk from context retrieved by the retrieval tools.
13366
13683
  class GoogleCloudAiplatformV1GroundingChunkRetrievedContext
13367
13684
  include Google::Apis::Core::Hashable
@@ -13435,6 +13752,13 @@ module Google
13435
13752
  class GoogleCloudAiplatformV1GroundingMetadata
13436
13753
  include Google::Apis::Core::Hashable
13437
13754
 
13755
+ # Optional. Output only. Resource name of the Google Maps widget context token
13756
+ # to be used with the PlacesContextElement widget to render contextual data.
13757
+ # This is populated only for Google Maps grounding.
13758
+ # Corresponds to the JSON property `googleMapsWidgetContextToken`
13759
+ # @return [String]
13760
+ attr_accessor :google_maps_widget_context_token
13761
+
13438
13762
  # List of supporting references retrieved from specified grounding source.
13439
13763
  # Corresponds to the JSON property `groundingChunks`
13440
13764
  # @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunk>]
@@ -13466,6 +13790,7 @@ module Google
13466
13790
 
13467
13791
  # Update properties of this object
13468
13792
  def update!(**args)
13793
+ @google_maps_widget_context_token = args[:google_maps_widget_context_token] if args.key?(:google_maps_widget_context_token)
13469
13794
  @grounding_chunks = args[:grounding_chunks] if args.key?(:grounding_chunks)
13470
13795
  @grounding_supports = args[:grounding_supports] if args.key?(:grounding_supports)
13471
13796
  @retrieval_metadata = args[:retrieval_metadata] if args.key?(:retrieval_metadata)
@@ -14275,6 +14600,11 @@ module Google
14275
14600
  # @return [String]
14276
14601
  attr_accessor :datapoint_id
14277
14602
 
14603
+ # Optional. The key-value map of additional metadata for the datapoint.
14604
+ # Corresponds to the JSON property `embeddingMetadata`
14605
+ # @return [Hash<String,Object>]
14606
+ attr_accessor :embedding_metadata
14607
+
14278
14608
  # Required. Feature embedding vector for dense index. An array of numbers with
14279
14609
  # the length of [NearestNeighborSearchConfig.dimensions].
14280
14610
  # Corresponds to the JSON property `featureVector`
@@ -14310,6 +14640,7 @@ module Google
14310
14640
  def update!(**args)
14311
14641
  @crowding_tag = args[:crowding_tag] if args.key?(:crowding_tag)
14312
14642
  @datapoint_id = args[:datapoint_id] if args.key?(:datapoint_id)
14643
+ @embedding_metadata = args[:embedding_metadata] if args.key?(:embedding_metadata)
14313
14644
  @feature_vector = args[:feature_vector] if args.key?(:feature_vector)
14314
14645
  @numeric_restricts = args[:numeric_restricts] if args.key?(:numeric_restricts)
14315
14646
  @restricts = args[:restricts] if args.key?(:restricts)
@@ -23468,6 +23799,13 @@ module Google
23468
23799
  class GoogleCloudAiplatformV1PublisherModelCallToActionRegionalResourceReferences
23469
23800
  include Google::Apis::Core::Hashable
23470
23801
 
23802
+ # Optional. For notebook resource. When set to true, the Colab Enterprise link
23803
+ # will be disabled in the "open notebook" dialog in UI.
23804
+ # Corresponds to the JSON property `colabNotebookDisabled`
23805
+ # @return [Boolean]
23806
+ attr_accessor :colab_notebook_disabled
23807
+ alias_method :colab_notebook_disabled?, :colab_notebook_disabled
23808
+
23471
23809
  # Required.
23472
23810
  # Corresponds to the JSON property `references`
23473
23811
  # @return [Hash<String,Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelResourceReference>]
@@ -23505,6 +23843,7 @@ module Google
23505
23843
 
23506
23844
  # Update properties of this object
23507
23845
  def update!(**args)
23846
+ @colab_notebook_disabled = args[:colab_notebook_disabled] if args.key?(:colab_notebook_disabled)
23508
23847
  @references = args[:references] if args.key?(:references)
23509
23848
  @resource_description = args[:resource_description] if args.key?(:resource_description)
23510
23849
  @resource_title = args[:resource_title] if args.key?(:resource_title)
@@ -25862,6 +26201,12 @@ module Google
25862
26201
  # @return [String]
25863
26202
  attr_accessor :display_name
25864
26203
 
26204
+ # Represents a customer-managed encryption key spec that can be applied to a top-
26205
+ # level resource.
26206
+ # Corresponds to the JSON property `encryptionSpec`
26207
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
26208
+ attr_accessor :encryption_spec
26209
+
25865
26210
  # Optional. Used to perform consistent read-modify-write updates. If not set, a
25866
26211
  # blind "overwrite" update happens.
25867
26212
  # Corresponds to the JSON property `etag`
@@ -25893,6 +26238,7 @@ module Google
25893
26238
  @create_time = args[:create_time] if args.key?(:create_time)
25894
26239
  @description = args[:description] if args.key?(:description)
25895
26240
  @display_name = args[:display_name] if args.key?(:display_name)
26241
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
25896
26242
  @etag = args[:etag] if args.key?(:etag)
25897
26243
  @name = args[:name] if args.key?(:name)
25898
26244
  @spec = args[:spec] if args.key?(:spec)
@@ -25927,6 +26273,15 @@ module Google
25927
26273
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec]
25928
26274
  attr_accessor :package_spec
25929
26275
 
26276
+ # Optional. The service account that the Reasoning Engine artifact runs as. It
26277
+ # should have "roles/storage.objectViewer" for reading the user project's Cloud
26278
+ # Storage and "roles/aiplatform.user" for using Vertex extensions. If not
26279
+ # specified, the Vertex AI Reasoning Engine Service Agent in the project will be
26280
+ # used.
26281
+ # Corresponds to the JSON property `serviceAccount`
26282
+ # @return [String]
26283
+ attr_accessor :service_account
26284
+
25930
26285
  def initialize(**args)
25931
26286
  update!(**args)
25932
26287
  end
@@ -25937,6 +26292,7 @@ module Google
25937
26292
  @class_methods = args[:class_methods] if args.key?(:class_methods)
25938
26293
  @deployment_spec = args[:deployment_spec] if args.key?(:deployment_spec)
25939
26294
  @package_spec = args[:package_spec] if args.key?(:package_spec)
26295
+ @service_account = args[:service_account] if args.key?(:service_account)
25940
26296
  end
25941
26297
  end
25942
26298
 
@@ -37654,11 +38010,16 @@ module Google
37654
38010
  # subset of these functions by populating FunctionCall in the response. User
37655
38011
  # should provide a FunctionResponse for each function call in the next turn.
37656
38012
  # Based on the function responses, Model will generate the final response back
37657
- # to the user. Maximum 128 function declarations can be provided.
38013
+ # to the user. Maximum 512 function declarations can be provided.
37658
38014
  # Corresponds to the JSON property `functionDeclarations`
37659
38015
  # @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration>]
37660
38016
  attr_accessor :function_declarations
37661
38017
 
38018
+ # Tool to retrieve public maps data for grounding, powered by Google.
38019
+ # Corresponds to the JSON property `googleMaps`
38020
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleMaps]
38021
+ attr_accessor :google_maps
38022
+
37662
38023
  # GoogleSearch tool type. Tool to support Google Search in Model. Powered by
37663
38024
  # Google.
37664
38025
  # Corresponds to the JSON property `googleSearch`
@@ -37690,6 +38051,7 @@ module Google
37690
38051
  @computer_use = args[:computer_use] if args.key?(:computer_use)
37691
38052
  @enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
37692
38053
  @function_declarations = args[:function_declarations] if args.key?(:function_declarations)
38054
+ @google_maps = args[:google_maps] if args.key?(:google_maps)
37693
38055
  @google_search = args[:google_search] if args.key?(:google_search)
37694
38056
  @google_search_retrieval = args[:google_search_retrieval] if args.key?(:google_search_retrieval)
37695
38057
  @retrieval = args[:retrieval] if args.key?(:retrieval)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AiplatformV1
18
18
  # Version of the google-apis-aiplatform_v1 gem
19
- GEM_VERSION = "0.60.0"
19
+ GEM_VERSION = "0.61.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250715"
25
+ REVISION = "20250728"
26
26
  end
27
27
  end
28
28
  end
@@ -1774,6 +1774,36 @@ module Google
1774
1774
  include Google::Apis::Core::JsonObjectSupport
1775
1775
  end
1776
1776
 
1777
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteRequest
1778
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1779
+
1780
+ include Google::Apis::Core::JsonObjectSupport
1781
+ end
1782
+
1783
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues
1784
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1785
+
1786
+ include Google::Apis::Core::JsonObjectSupport
1787
+ end
1788
+
1789
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature
1790
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1791
+
1792
+ include Google::Apis::Core::JsonObjectSupport
1793
+ end
1794
+
1795
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteResponse
1796
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1797
+
1798
+ include Google::Apis::Core::JsonObjectSupport
1799
+ end
1800
+
1801
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse
1802
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1803
+
1804
+ include Google::Apis::Core::JsonObjectSupport
1805
+ end
1806
+
1777
1807
  class GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource
1778
1808
  class Representation < Google::Apis::Core::JsonRepresentation; end
1779
1809
 
@@ -2158,6 +2188,12 @@ module Google
2158
2188
  include Google::Apis::Core::JsonObjectSupport
2159
2189
  end
2160
2190
 
2191
+ class GoogleCloudAiplatformV1GoogleMaps
2192
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2193
+
2194
+ include Google::Apis::Core::JsonObjectSupport
2195
+ end
2196
+
2161
2197
  class GoogleCloudAiplatformV1GoogleSearchRetrieval
2162
2198
  class Representation < Google::Apis::Core::JsonRepresentation; end
2163
2199
 
@@ -2194,6 +2230,30 @@ module Google
2194
2230
  include Google::Apis::Core::JsonObjectSupport
2195
2231
  end
2196
2232
 
2233
+ class GoogleCloudAiplatformV1GroundingChunkMaps
2234
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2235
+
2236
+ include Google::Apis::Core::JsonObjectSupport
2237
+ end
2238
+
2239
+ class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources
2240
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2241
+
2242
+ include Google::Apis::Core::JsonObjectSupport
2243
+ end
2244
+
2245
+ class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
2246
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2247
+
2248
+ include Google::Apis::Core::JsonObjectSupport
2249
+ end
2250
+
2251
+ class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
2252
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2253
+
2254
+ include Google::Apis::Core::JsonObjectSupport
2255
+ end
2256
+
2197
2257
  class GoogleCloudAiplatformV1GroundingChunkRetrievedContext
2198
2258
  class Representation < Google::Apis::Core::JsonRepresentation; end
2199
2259
 
@@ -8282,6 +8342,7 @@ module Google
8282
8342
  class GoogleCloudAiplatformV1CreateEndpointOperationMetadata
8283
8343
  # @private
8284
8344
  class Representation < Google::Apis::Core::JsonRepresentation
8345
+ property :deployment_stage, as: 'deploymentStage'
8285
8346
  property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata::Representation
8286
8347
 
8287
8348
  end
@@ -8755,6 +8816,7 @@ module Google
8755
8816
  class GoogleCloudAiplatformV1DeployModelOperationMetadata
8756
8817
  # @private
8757
8818
  class Representation < Google::Apis::Core::JsonRepresentation
8819
+ property :deployment_stage, as: 'deploymentStage'
8758
8820
  property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata::Representation
8759
8821
 
8760
8822
  end
@@ -10072,6 +10134,52 @@ module Google
10072
10134
  end
10073
10135
  end
10074
10136
 
10137
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteRequest
10138
+ # @private
10139
+ class Representation < Google::Apis::Core::JsonRepresentation
10140
+ collection :data_key_and_feature_values, as: 'dataKeyAndFeatureValues', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues::Representation
10141
+
10142
+ end
10143
+ end
10144
+
10145
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues
10146
+ # @private
10147
+ class Representation < Google::Apis::Core::JsonRepresentation
10148
+ property :data_key, as: 'dataKey', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey::Representation
10149
+
10150
+ collection :features, as: 'features', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature::Representation
10151
+
10152
+ end
10153
+ end
10154
+
10155
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature
10156
+ # @private
10157
+ class Representation < Google::Apis::Core::JsonRepresentation
10158
+ property :name, as: 'name'
10159
+ property :value, as: 'value', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureValue, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureValue::Representation
10160
+
10161
+ end
10162
+ end
10163
+
10164
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteResponse
10165
+ # @private
10166
+ class Representation < Google::Apis::Core::JsonRepresentation
10167
+ property :status, as: 'status', class: Google::Apis::AiplatformV1::GoogleRpcStatus, decorator: Google::Apis::AiplatformV1::GoogleRpcStatus::Representation
10168
+
10169
+ collection :write_responses, as: 'writeResponses', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse::Representation
10170
+
10171
+ end
10172
+ end
10173
+
10174
+ class GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse
10175
+ # @private
10176
+ class Representation < Google::Apis::Core::JsonRepresentation
10177
+ property :data_key, as: 'dataKey', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey::Representation
10178
+
10179
+ property :online_store_write_time, as: 'onlineStoreWriteTime'
10180
+ end
10181
+ end
10182
+
10075
10183
  class GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource
10076
10184
  # @private
10077
10185
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10701,6 +10809,16 @@ module Google
10701
10809
  end
10702
10810
  end
10703
10811
 
10812
+ class GoogleCloudAiplatformV1GoogleMaps
10813
+ # @private
10814
+ class Representation < Google::Apis::Core::JsonRepresentation
10815
+ property :api_auth, as: 'apiAuth', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ApiAuth, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ApiAuth::Representation
10816
+
10817
+ property :auth_config, as: 'authConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AuthConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AuthConfig::Representation
10818
+
10819
+ end
10820
+ end
10821
+
10704
10822
  class GoogleCloudAiplatformV1GoogleSearchRetrieval
10705
10823
  # @private
10706
10824
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10746,6 +10864,8 @@ module Google
10746
10864
  class GoogleCloudAiplatformV1GroundingChunk
10747
10865
  # @private
10748
10866
  class Representation < Google::Apis::Core::JsonRepresentation
10867
+ property :maps, as: 'maps', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMaps, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMaps::Representation
10868
+
10749
10869
  property :retrieved_context, as: 'retrievedContext', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkRetrievedContext, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkRetrievedContext::Representation
10750
10870
 
10751
10871
  property :web, as: 'web', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkWeb, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkWeb::Representation
@@ -10753,6 +10873,48 @@ module Google
10753
10873
  end
10754
10874
  end
10755
10875
 
10876
+ class GoogleCloudAiplatformV1GroundingChunkMaps
10877
+ # @private
10878
+ class Representation < Google::Apis::Core::JsonRepresentation
10879
+ property :place_answer_sources, as: 'placeAnswerSources', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources::Representation
10880
+
10881
+ property :place_id, as: 'placeId'
10882
+ property :text, as: 'text'
10883
+ property :title, as: 'title'
10884
+ property :uri, as: 'uri'
10885
+ end
10886
+ end
10887
+
10888
+ class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources
10889
+ # @private
10890
+ class Representation < Google::Apis::Core::JsonRepresentation
10891
+ property :flag_content_uri, as: 'flagContentUri'
10892
+ collection :review_snippets, as: 'reviewSnippets', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet::Representation
10893
+
10894
+ end
10895
+ end
10896
+
10897
+ class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
10898
+ # @private
10899
+ class Representation < Google::Apis::Core::JsonRepresentation
10900
+ property :display_name, as: 'displayName'
10901
+ property :photo_uri, as: 'photoUri'
10902
+ property :uri, as: 'uri'
10903
+ end
10904
+ end
10905
+
10906
+ class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
10907
+ # @private
10908
+ class Representation < Google::Apis::Core::JsonRepresentation
10909
+ property :author_attribution, as: 'authorAttribution', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution::Representation
10910
+
10911
+ property :flag_content_uri, as: 'flagContentUri'
10912
+ property :google_maps_uri, as: 'googleMapsUri'
10913
+ property :relative_publish_time_description, as: 'relativePublishTimeDescription'
10914
+ property :review, as: 'review'
10915
+ end
10916
+ end
10917
+
10756
10918
  class GoogleCloudAiplatformV1GroundingChunkRetrievedContext
10757
10919
  # @private
10758
10920
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10776,6 +10938,7 @@ module Google
10776
10938
  class GoogleCloudAiplatformV1GroundingMetadata
10777
10939
  # @private
10778
10940
  class Representation < Google::Apis::Core::JsonRepresentation
10941
+ property :google_maps_widget_context_token, as: 'googleMapsWidgetContextToken'
10779
10942
  collection :grounding_chunks, as: 'groundingChunks', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunk, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunk::Representation
10780
10943
 
10781
10944
  collection :grounding_supports, as: 'groundingSupports', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingSupport, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingSupport::Representation
@@ -10995,6 +11158,7 @@ module Google
10995
11158
  property :crowding_tag, as: 'crowdingTag', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexDatapointCrowdingTag, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexDatapointCrowdingTag::Representation
10996
11159
 
10997
11160
  property :datapoint_id, as: 'datapointId'
11161
+ hash :embedding_metadata, as: 'embeddingMetadata'
10998
11162
  collection :feature_vector, as: 'featureVector'
10999
11163
  collection :numeric_restricts, as: 'numericRestricts', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexDatapointNumericRestriction, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexDatapointNumericRestriction::Representation
11000
11164
 
@@ -13558,6 +13722,7 @@ module Google
13558
13722
  class GoogleCloudAiplatformV1PublisherModelCallToActionRegionalResourceReferences
13559
13723
  # @private
13560
13724
  class Representation < Google::Apis::Core::JsonRepresentation
13725
+ property :colab_notebook_disabled, as: 'colabNotebookDisabled'
13561
13726
  hash :references, as: 'references', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelResourceReference, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelResourceReference::Representation
13562
13727
 
13563
13728
  property :resource_description, as: 'resourceDescription'
@@ -14317,6 +14482,8 @@ module Google
14317
14482
  property :create_time, as: 'createTime'
14318
14483
  property :description, as: 'description'
14319
14484
  property :display_name, as: 'displayName'
14485
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec::Representation
14486
+
14320
14487
  property :etag, as: 'etag'
14321
14488
  property :name, as: 'name'
14322
14489
  property :spec, as: 'spec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpec::Representation
@@ -14334,6 +14501,7 @@ module Google
14334
14501
 
14335
14502
  property :package_spec, as: 'packageSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec::Representation
14336
14503
 
14504
+ property :service_account, as: 'serviceAccount'
14337
14505
  end
14338
14506
  end
14339
14507
 
@@ -17550,6 +17718,8 @@ module Google
17550
17718
 
17551
17719
  collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration::Representation
17552
17720
 
17721
+ property :google_maps, as: 'googleMaps', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleMaps, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleMaps::Representation
17722
+
17553
17723
  property :google_search, as: 'googleSearch', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolGoogleSearch, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolGoogleSearch::Representation
17554
17724
 
17555
17725
  property :google_search_retrieval, as: 'googleSearchRetrieval', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleSearchRetrieval, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleSearchRetrieval::Representation
@@ -6839,6 +6839,42 @@ module Google
6839
6839
  execute_or_queue_command(command, &block)
6840
6840
  end
6841
6841
 
6842
+ # Bidirectional streaming RPC to directly write to feature values in a feature
6843
+ # view. Requests may not have a one-to-one mapping to responses and responses
6844
+ # may be returned out-of-order to reduce latency.
6845
+ # @param [String] feature_view
6846
+ # FeatureView resource format `projects/`project`/locations/`location`/
6847
+ # featureOnlineStores/`featureOnlineStore`/featureViews/`featureView``
6848
+ # @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequest] google_cloud_aiplatform_v1_feature_view_direct_write_request_object
6849
+ # @param [String] fields
6850
+ # Selector specifying which fields to include in a partial response.
6851
+ # @param [String] quota_user
6852
+ # Available to use for quota purposes for server-side applications. Can be any
6853
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
6854
+ # @param [Google::Apis::RequestOptions] options
6855
+ # Request-specific options
6856
+ #
6857
+ # @yield [result, err] Result & error if block supplied
6858
+ # @yieldparam result [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponse] parsed result object
6859
+ # @yieldparam err [StandardError] error object if request failed
6860
+ #
6861
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponse]
6862
+ #
6863
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6864
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6865
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
6866
+ def direct_project_location_feature_online_store_feature_view_write(feature_view, google_cloud_aiplatform_v1_feature_view_direct_write_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
6867
+ command = make_simple_command(:post, 'v1/{+featureView}:directWrite', options)
6868
+ command.request_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequest::Representation
6869
+ command.request_object = google_cloud_aiplatform_v1_feature_view_direct_write_request_object
6870
+ command.response_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponse::Representation
6871
+ command.response_class = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponse
6872
+ command.params['featureView'] = feature_view unless feature_view.nil?
6873
+ command.query['fields'] = fields unless fields.nil?
6874
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
6875
+ execute_or_queue_command(command, &block)
6876
+ end
6877
+
6842
6878
  # Fetch feature values under a FeatureView.
6843
6879
  # @param [String] feature_view
6844
6880
  # Required. FeatureView resource format `projects/`project`/locations/`location`/
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-aiplatform_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.60.0
4
+ version: 0.61.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.60.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.61.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1
62
62
  rdoc_options: []
63
63
  require_paths: