google-apis-aiplatform_v1 0.81.0 → 0.82.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: e66d3b24cb7d5297b46c297aaf81ad41d461bf77f26309934098cb998d803d21
4
- data.tar.gz: c7029367285511d5a2a3f437370b9d86247d5adbf1e2a24229250d0f9d0fb822
3
+ metadata.gz: 6ec216f71ad0a94628396dffdfe84b0a19da04aff1afc80447a4a82af11c5162
4
+ data.tar.gz: cb7513bc420ea05959e2c1a238b8adf7d94a882ae5d967b860cbe57c735890e4
5
5
  SHA512:
6
- metadata.gz: 22f1a7c88c110839a324ce542fb166f63eeef762d8fdb33c51b84754b0ae15a37016d1a7671e70d48986ad4320033284171a2bd33296da640df5a5024b6598a1
7
- data.tar.gz: f5f3448aa08ce3e2e4ce88b287698bf99a093f72739f353381505fa0836faba4bbe4cc16aa5992d1158d6c82ffcdf0a1aade4a9d7fdcf04c112a4b69620cd0ea
6
+ metadata.gz: 6eef615efdb90466b765102b80d824cbd8e0b15948cc071d3ed4e66c922fa8cc1e85283fa950fed309e0cd45a1ff007eda1afc13712b54295cc4db3e68ad92f2
7
+ data.tar.gz: 6de25a2ad6d6b80c2161acf7ee4215dd910fa1f862508285e427be19a08d562f8fc542079a14a058f78ce7d182165857c746b3252e4a25d47b106f83688b59e3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1
2
2
 
3
+ ### v0.82.0 (2026-03-01)
4
+
5
+ * Regenerated from discovery document revision 20260217
6
+
3
7
  ### v0.81.0 (2026-02-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20260208
@@ -14934,6 +14934,13 @@ module Google
14934
14934
  # @return [Hash<String,Object>]
14935
14935
  attr_accessor :response
14936
14936
 
14937
+ # Optional. Specifies how the response should be scheduled in the conversation.
14938
+ # Only applicable to NON_BLOCKING function calls, is ignored otherwise. Defaults
14939
+ # to WHEN_IDLE.
14940
+ # Corresponds to the JSON property `scheduling`
14941
+ # @return [String]
14942
+ attr_accessor :scheduling
14943
+
14937
14944
  def initialize(**args)
14938
14945
  update!(**args)
14939
14946
  end
@@ -14943,6 +14950,7 @@ module Google
14943
14950
  @name = args[:name] if args.key?(:name)
14944
14951
  @parts = args[:parts] if args.key?(:parts)
14945
14952
  @response = args[:response] if args.key?(:response)
14953
+ @scheduling = args[:scheduling] if args.key?(:scheduling)
14946
14954
  end
14947
14955
  end
14948
14956
 
@@ -16485,9 +16493,9 @@ module Google
16485
16493
  class GoogleCloudAiplatformV1GroundingChunk
16486
16494
  include Google::Apis::Core::Hashable
16487
16495
 
16488
- # A `Maps` chunk is a piece of evidence that comes from Google Maps. It contains
16489
- # information about a place, such as its name, address, and reviews. This is
16490
- # used to provide the user with rich, location-based information.
16496
+ # A `Maps` chunk is a piece of evidence that comes from Google Maps, containing
16497
+ # information about places or routes. This is used to provide the user with rich,
16498
+ # location-based information.
16491
16499
  # Corresponds to the JSON property `maps`
16492
16500
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMaps]
16493
16501
  attr_accessor :maps
@@ -16518,9 +16526,9 @@ module Google
16518
16526
  end
16519
16527
  end
16520
16528
 
16521
- # A `Maps` chunk is a piece of evidence that comes from Google Maps. It contains
16522
- # information about a place, such as its name, address, and reviews. This is
16523
- # used to provide the user with rich, location-based information.
16529
+ # A `Maps` chunk is a piece of evidence that comes from Google Maps, containing
16530
+ # information about places or routes. This is used to provide the user with rich,
16531
+ # location-based information.
16524
16532
  class GoogleCloudAiplatformV1GroundingChunkMaps
16525
16533
  include Google::Apis::Core::Hashable
16526
16534
 
@@ -31244,6 +31252,12 @@ module Google
31244
31252
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecDeveloperConnectSource]
31245
31253
  attr_accessor :developer_connect_source
31246
31254
 
31255
+ # The image spec for building an image (within a single build step), based on
31256
+ # the config file (i.e. Dockerfile) in the source directory.
31257
+ # Corresponds to the JSON property `imageSpec`
31258
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecImageSpec]
31259
+ attr_accessor :image_spec
31260
+
31247
31261
  # Specifies source code provided as a byte stream.
31248
31262
  # Corresponds to the JSON property `inlineSource`
31249
31263
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource]
@@ -31261,6 +31275,7 @@ module Google
31261
31275
  # Update properties of this object
31262
31276
  def update!(**args)
31263
31277
  @developer_connect_source = args[:developer_connect_source] if args.key?(:developer_connect_source)
31278
+ @image_spec = args[:image_spec] if args.key?(:image_spec)
31264
31279
  @inline_source = args[:inline_source] if args.key?(:inline_source)
31265
31280
  @python_spec = args[:python_spec] if args.key?(:python_spec)
31266
31281
  end
@@ -31323,6 +31338,27 @@ module Google
31323
31338
  end
31324
31339
  end
31325
31340
 
31341
+ # The image spec for building an image (within a single build step), based on
31342
+ # the config file (i.e. Dockerfile) in the source directory.
31343
+ class GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecImageSpec
31344
+ include Google::Apis::Core::Hashable
31345
+
31346
+ # Optional. Build arguments to be used. They will be passed through --build-arg
31347
+ # flags.
31348
+ # Corresponds to the JSON property `buildArgs`
31349
+ # @return [Hash<String,String>]
31350
+ attr_accessor :build_args
31351
+
31352
+ def initialize(**args)
31353
+ update!(**args)
31354
+ end
31355
+
31356
+ # Update properties of this object
31357
+ def update!(**args)
31358
+ @build_args = args[:build_args] if args.key?(:build_args)
31359
+ end
31360
+ end
31361
+
31326
31362
  # Specifies source code provided as a byte stream.
31327
31363
  class GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource
31328
31364
  include Google::Apis::Core::Hashable
@@ -33220,6 +33256,14 @@ module Google
33220
33256
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ScheduleRunResponse]
33221
33257
  attr_accessor :last_scheduled_run_response
33222
33258
 
33259
+ # Optional. Specifies the maximum number of active runs that can be executed
33260
+ # concurrently for this Schedule. This limits the number of runs that can be in
33261
+ # a non-terminal state at the same time. Currently, this field is only supported
33262
+ # for requests of type CreatePipelineJobRequest.
33263
+ # Corresponds to the JSON property `maxConcurrentActiveRunCount`
33264
+ # @return [Fixnum]
33265
+ attr_accessor :max_concurrent_active_run_count
33266
+
33223
33267
  # Required. Maximum number of runs that can be started concurrently for this
33224
33268
  # Schedule. This is the limit for starting the scheduled requests and not the
33225
33269
  # execution of the operations/jobs created by the requests (if applicable).
@@ -33285,6 +33329,7 @@ module Google
33285
33329
  @last_pause_time = args[:last_pause_time] if args.key?(:last_pause_time)
33286
33330
  @last_resume_time = args[:last_resume_time] if args.key?(:last_resume_time)
33287
33331
  @last_scheduled_run_response = args[:last_scheduled_run_response] if args.key?(:last_scheduled_run_response)
33332
+ @max_concurrent_active_run_count = args[:max_concurrent_active_run_count] if args.key?(:max_concurrent_active_run_count)
33288
33333
  @max_concurrent_run_count = args[:max_concurrent_run_count] if args.key?(:max_concurrent_run_count)
33289
33334
  @max_run_count = args[:max_run_count] if args.key?(:max_run_count)
33290
33335
  @name = args[:name] if args.key?(:name)
@@ -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.81.0"
19
+ GEM_VERSION = "0.82.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 = "20260208"
25
+ REVISION = "20260217"
26
26
  end
27
27
  end
28
28
  end
@@ -5080,6 +5080,12 @@ module Google
5080
5080
  include Google::Apis::Core::JsonObjectSupport
5081
5081
  end
5082
5082
 
5083
+ class GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecImageSpec
5084
+ class Representation < Google::Apis::Core::JsonRepresentation; end
5085
+
5086
+ include Google::Apis::Core::JsonObjectSupport
5087
+ end
5088
+
5083
5089
  class GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource
5084
5090
  class Representation < Google::Apis::Core::JsonRepresentation; end
5085
5091
 
@@ -12236,6 +12242,7 @@ module Google
12236
12242
  collection :parts, as: 'parts', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionResponsePart, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionResponsePart::Representation
12237
12243
 
12238
12244
  hash :response, as: 'response'
12245
+ property :scheduling, as: 'scheduling'
12239
12246
  end
12240
12247
  end
12241
12248
 
@@ -16868,6 +16875,8 @@ module Google
16868
16875
  class Representation < Google::Apis::Core::JsonRepresentation
16869
16876
  property :developer_connect_source, as: 'developerConnectSource', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecDeveloperConnectSource, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecDeveloperConnectSource::Representation
16870
16877
 
16878
+ property :image_spec, as: 'imageSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecImageSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecImageSpec::Representation
16879
+
16871
16880
  property :inline_source, as: 'inlineSource', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource::Representation
16872
16881
 
16873
16882
  property :python_spec, as: 'pythonSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecPythonSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecPythonSpec::Representation
@@ -16892,6 +16901,13 @@ module Google
16892
16901
  end
16893
16902
  end
16894
16903
 
16904
+ class GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecImageSpec
16905
+ # @private
16906
+ class Representation < Google::Apis::Core::JsonRepresentation
16907
+ hash :build_args, as: 'buildArgs'
16908
+ end
16909
+ end
16910
+
16895
16911
  class GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource
16896
16912
  # @private
16897
16913
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -17474,6 +17490,7 @@ module Google
17474
17490
  property :last_resume_time, as: 'lastResumeTime'
17475
17491
  property :last_scheduled_run_response, as: 'lastScheduledRunResponse', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ScheduleRunResponse, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ScheduleRunResponse::Representation
17476
17492
 
17493
+ property :max_concurrent_active_run_count, :numeric_string => true, as: 'maxConcurrentActiveRunCount'
17477
17494
  property :max_concurrent_run_count, :numeric_string => true, as: 'maxConcurrentRunCount'
17478
17495
  property :max_run_count, :numeric_string => true, as: 'maxRunCount'
17479
17496
  property :name, as: 'name'
@@ -25217,6 +25217,44 @@ module Google
25217
25217
  execute_or_queue_command(command, &block)
25218
25218
  end
25219
25219
 
25220
+ # Forwards arbitrary HTTP requests for both streaming and non-streaming cases.
25221
+ # To use this method, invoke_route_prefix must be set to allow the paths that
25222
+ # will be specified in the request.
25223
+ # @param [String] endpoint
25224
+ # Required. The name of the Endpoint requested to serve the prediction. Format: `
25225
+ # projects/`project`/locations/`location`/endpoints/`endpoint``
25226
+ # @param [String] invoke_id
25227
+ # @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1InvokeRequest] google_cloud_aiplatform_v1_invoke_request_object
25228
+ # @param [String] fields
25229
+ # Selector specifying which fields to include in a partial response.
25230
+ # @param [String] quota_user
25231
+ # Available to use for quota purposes for server-side applications. Can be any
25232
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
25233
+ # @param [Google::Apis::RequestOptions] options
25234
+ # Request-specific options
25235
+ #
25236
+ # @yield [result, err] Result & error if block supplied
25237
+ # @yieldparam result [Google::Apis::AiplatformV1::GoogleApiHttpBody] parsed result object
25238
+ # @yieldparam err [StandardError] error object if request failed
25239
+ #
25240
+ # @return [Google::Apis::AiplatformV1::GoogleApiHttpBody]
25241
+ #
25242
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
25243
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
25244
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
25245
+ def invoke_project_location_publisher_model_invoke(endpoint, invoke_id, google_cloud_aiplatform_v1_invoke_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
25246
+ command = make_simple_command(:post, 'v1/{+endpoint}/invoke/{+invokeId}', options)
25247
+ command.request_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1InvokeRequest::Representation
25248
+ command.request_object = google_cloud_aiplatform_v1_invoke_request_object
25249
+ command.response_representation = Google::Apis::AiplatformV1::GoogleApiHttpBody::Representation
25250
+ command.response_class = Google::Apis::AiplatformV1::GoogleApiHttpBody
25251
+ command.params['endpoint'] = endpoint unless endpoint.nil?
25252
+ command.params['invokeId'] = invoke_id unless invoke_id.nil?
25253
+ command.query['fields'] = fields unless fields.nil?
25254
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
25255
+ execute_or_queue_command(command, &block)
25256
+ end
25257
+
25220
25258
  # Creates a RagCorpus.
25221
25259
  # @param [String] parent
25222
25260
  # Required. The resource name of the Location to create the RagCorpus in. Format:
@@ -25322,7 +25360,8 @@ module Google
25322
25360
  # Required. The resource name of the Location from which to list the RagCorpora.
25323
25361
  # Format: `projects/`project`/locations/`location``
25324
25362
  # @param [Fixnum] page_size
25325
- # Optional. The standard list page size.
25363
+ # Optional. The standard list page size. The maximum value is 100. If not
25364
+ # specified, a default value of 100 will be used.
25326
25365
  # @param [String] page_token
25327
25366
  # Optional. The standard list page token. Typically obtained via
25328
25367
  # ListRagCorporaResponse.next_page_token of the previous VertexRagDataService.
@@ -25686,7 +25725,8 @@ module Google
25686
25725
  # Required. The resource name of the RagCorpus from which to list the RagFiles.
25687
25726
  # Format: `projects/`project`/locations/`location`/ragCorpora/`rag_corpus``
25688
25727
  # @param [Fixnum] page_size
25689
- # Optional. The standard list page size.
25728
+ # Optional. The standard list page size. The maximum value is 100. If not
25729
+ # specified, a default value of 100 will be used.
25690
25730
  # @param [String] page_token
25691
25731
  # Optional. The standard list page token. Typically obtained via
25692
25732
  # ListRagFilesResponse.next_page_token of the previous VertexRagDataService.
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.81.0
4
+ version: 0.82.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.81.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.82.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: