google-apis-aiplatform_v1beta1 0.39.0 → 0.41.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: e86d3e365fd2fb23a02b73141e3636a0a9ad9c0513862e4c58b8abd25e00cf21
4
- data.tar.gz: 7567569f5b78a948719d360b2c5351993308a6660d86ef0bd094d63417f1f7af
3
+ metadata.gz: 98d0abc1a71a743f6d0c5e38ef54c38be63dc5e9dd27bf517f106fb9843abb03
4
+ data.tar.gz: 8dee00cbfaa6058583801a95d62e42528c0437cfd5f304a747298629aff4a1a7
5
5
  SHA512:
6
- metadata.gz: c0dc4200a261556545412d33423c177a33dd570bb1872a846630304038c8e2690cdc3dadf67a889f941f413013cc9e864dd3038fa3a1fef3fd6b76ebfde42222
7
- data.tar.gz: 30cfcf950dc5bc92d63c6a974ef89e0843e0a3e2bbf2737a8b21e2e7dc2479b150fe799caf073f0355811ff693db43357a45523ab0cfe2c273b2b9130178d43f
6
+ metadata.gz: bb3e0157b7c48fbe0f0e426da3fd507602f30ae130b3611f8f88bbc9d0d6cca9ed66a9e547169fdd70143a7a7a84211e06c5ec7598df8475432b9be6f2e90ba3
7
+ data.tar.gz: 0fefb574ab5a9d76336e5d8407f33588befd347369fe366212e976664f826b6dcb5f23c2117bba2acd5be8325548edda2a3c4be3bdb93432d0a4a3c7a61c6e20
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.41.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250319
6
+
7
+ ### v0.40.0 (2025-03-23)
8
+
9
+ * Regenerated from discovery document revision 20250307
10
+
3
11
  ### v0.39.0 (2025-03-16)
4
12
 
5
13
  * Regenerated from discovery document revision 20250304
@@ -1068,6 +1068,102 @@ module Google
1068
1068
  end
1069
1069
  end
1070
1070
 
1071
+ # Request message for DatasetService.AssembleData. Used only for MULTIMODAL
1072
+ # datasets.
1073
+ class GoogleCloudAiplatformV1beta1AssembleDataRequest
1074
+ include Google::Apis::Core::Hashable
1075
+
1076
+ # Template configuration to create Gemini examples from a multimodal dataset.
1077
+ # Corresponds to the JSON property `geminiTemplateConfig`
1078
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GeminiTemplateConfig]
1079
+ attr_accessor :gemini_template_config
1080
+
1081
+ def initialize(**args)
1082
+ update!(**args)
1083
+ end
1084
+
1085
+ # Update properties of this object
1086
+ def update!(**args)
1087
+ @gemini_template_config = args[:gemini_template_config] if args.key?(:gemini_template_config)
1088
+ end
1089
+ end
1090
+
1091
+ # Request message for DatasetService.AssessData. Used only for MULTIMODAL
1092
+ # datasets.
1093
+ class GoogleCloudAiplatformV1beta1AssessDataRequest
1094
+ include Google::Apis::Core::Hashable
1095
+
1096
+ # Template configuration to create Gemini examples from a multimodal dataset.
1097
+ # Corresponds to the JSON property `geminiTemplateConfig`
1098
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GeminiTemplateConfig]
1099
+ attr_accessor :gemini_template_config
1100
+
1101
+ # Configuration for the tuning resource usage assessment.
1102
+ # Corresponds to the JSON property `tuningResourceUsageAssessmentConfig`
1103
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AssessDataRequestTuningResourceUsageAssessmentConfig]
1104
+ attr_accessor :tuning_resource_usage_assessment_config
1105
+
1106
+ # Configuration for the tuning validation assessment.
1107
+ # Corresponds to the JSON property `tuningValidationAssessmentConfig`
1108
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AssessDataRequestTuningValidationAssessmentConfig]
1109
+ attr_accessor :tuning_validation_assessment_config
1110
+
1111
+ def initialize(**args)
1112
+ update!(**args)
1113
+ end
1114
+
1115
+ # Update properties of this object
1116
+ def update!(**args)
1117
+ @gemini_template_config = args[:gemini_template_config] if args.key?(:gemini_template_config)
1118
+ @tuning_resource_usage_assessment_config = args[:tuning_resource_usage_assessment_config] if args.key?(:tuning_resource_usage_assessment_config)
1119
+ @tuning_validation_assessment_config = args[:tuning_validation_assessment_config] if args.key?(:tuning_validation_assessment_config)
1120
+ end
1121
+ end
1122
+
1123
+ # Configuration for the tuning resource usage assessment.
1124
+ class GoogleCloudAiplatformV1beta1AssessDataRequestTuningResourceUsageAssessmentConfig
1125
+ include Google::Apis::Core::Hashable
1126
+
1127
+ # Required. The name of the model used for tuning.
1128
+ # Corresponds to the JSON property `modelName`
1129
+ # @return [String]
1130
+ attr_accessor :model_name
1131
+
1132
+ def initialize(**args)
1133
+ update!(**args)
1134
+ end
1135
+
1136
+ # Update properties of this object
1137
+ def update!(**args)
1138
+ @model_name = args[:model_name] if args.key?(:model_name)
1139
+ end
1140
+ end
1141
+
1142
+ # Configuration for the tuning validation assessment.
1143
+ class GoogleCloudAiplatformV1beta1AssessDataRequestTuningValidationAssessmentConfig
1144
+ include Google::Apis::Core::Hashable
1145
+
1146
+ # Required. The dataset usage (e.g. training/validation).
1147
+ # Corresponds to the JSON property `datasetUsage`
1148
+ # @return [String]
1149
+ attr_accessor :dataset_usage
1150
+
1151
+ # Required. The name of the model used for tuning.
1152
+ # Corresponds to the JSON property `modelName`
1153
+ # @return [String]
1154
+ attr_accessor :model_name
1155
+
1156
+ def initialize(**args)
1157
+ update!(**args)
1158
+ end
1159
+
1160
+ # Update properties of this object
1161
+ def update!(**args)
1162
+ @dataset_usage = args[:dataset_usage] if args.key?(:dataset_usage)
1163
+ @model_name = args[:model_name] if args.key?(:model_name)
1164
+ end
1165
+ end
1166
+
1071
1167
  # Metadata information for NotebookService.AssignNotebookRuntime.
1072
1168
  class GoogleCloudAiplatformV1beta1AssignNotebookRuntimeOperationMetadata
1073
1169
  include Google::Apis::Core::Hashable
@@ -13143,6 +13239,12 @@ module Google
13143
13239
  # @return [Hash<String,Object>]
13144
13240
  attr_accessor :args
13145
13241
 
13242
+ # Optional. The unique id of the function call. If populated, the client to
13243
+ # execute the `function_call` and return the response with the matching `id`.
13244
+ # Corresponds to the JSON property `id`
13245
+ # @return [String]
13246
+ attr_accessor :id
13247
+
13146
13248
  # Required. The name of the function to call. Matches [FunctionDeclaration.name].
13147
13249
  # Corresponds to the JSON property `name`
13148
13250
  # @return [String]
@@ -13155,6 +13257,7 @@ module Google
13155
13257
  # Update properties of this object
13156
13258
  def update!(**args)
13157
13259
  @args = args[:args] if args.key?(:args)
13260
+ @id = args[:id] if args.key?(:id)
13158
13261
  @name = args[:name] if args.key?(:name)
13159
13262
  end
13160
13263
  end
@@ -13241,6 +13344,12 @@ module Google
13241
13344
  class GoogleCloudAiplatformV1beta1FunctionResponse
13242
13345
  include Google::Apis::Core::Hashable
13243
13346
 
13347
+ # Optional. The id of the function call this response is for. Populated by the
13348
+ # client to match the corresponding function call `id`.
13349
+ # Corresponds to the JSON property `id`
13350
+ # @return [String]
13351
+ attr_accessor :id
13352
+
13244
13353
  # Required. The name of the function to call. Matches [FunctionDeclaration.name]
13245
13354
  # and [FunctionCall.name].
13246
13355
  # Corresponds to the JSON property `name`
@@ -13261,6 +13370,7 @@ module Google
13261
13370
 
13262
13371
  # Update properties of this object
13263
13372
  def update!(**args)
13373
+ @id = args[:id] if args.key?(:id)
13264
13374
  @name = args[:name] if args.key?(:name)
13265
13375
  @response = args[:response] if args.key?(:response)
13266
13376
  end
@@ -13308,6 +13418,118 @@ module Google
13308
13418
  end
13309
13419
  end
13310
13420
 
13421
+ # Format for Gemini examples used for Vertex Multimodal datasets.
13422
+ class GoogleCloudAiplatformV1beta1GeminiExample
13423
+ include Google::Apis::Core::Hashable
13424
+
13425
+ # Optional. The name of the cached content used as context to serve the
13426
+ # prediction. Note: only used in explicit caching, where users can have control
13427
+ # over caching (e.g. what content to cache) and enjoy guaranteed cost savings.
13428
+ # Format: `projects/`project`/locations/`location`/cachedContents/`cachedContent`
13429
+ # `
13430
+ # Corresponds to the JSON property `cachedContent`
13431
+ # @return [String]
13432
+ attr_accessor :cached_content
13433
+
13434
+ # Required. The content of the current conversation with the model. For single-
13435
+ # turn queries, this is a single instance. For multi-turn queries, this is a
13436
+ # repeated field that contains conversation history + latest request.
13437
+ # Corresponds to the JSON property `contents`
13438
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Content>]
13439
+ attr_accessor :contents
13440
+
13441
+ # Generation config.
13442
+ # Corresponds to the JSON property `generationConfig`
13443
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerationConfig]
13444
+ attr_accessor :generation_config
13445
+
13446
+ # Optional. The labels with user-defined metadata for the request. It is used
13447
+ # for billing and reporting only. Label keys and values can be no longer than 63
13448
+ # characters (Unicode codepoints) and can only contain lowercase letters,
13449
+ # numeric characters, underscores, and dashes. International characters are
13450
+ # allowed. Label values are optional. Label keys must start with a letter.
13451
+ # Corresponds to the JSON property `labels`
13452
+ # @return [Hash<String,String>]
13453
+ attr_accessor :labels
13454
+
13455
+ # Optional. The fully qualified name of the publisher model or tuned model
13456
+ # endpoint to use. Publisher model format: `projects/`project`/locations/`
13457
+ # location`/publishers/*/models/*` Tuned model endpoint format: `projects/`
13458
+ # project`/locations/`location`/endpoints/`endpoint``
13459
+ # Corresponds to the JSON property `model`
13460
+ # @return [String]
13461
+ attr_accessor :model
13462
+
13463
+ # Optional. Per request settings for blocking unsafe content. Enforced on
13464
+ # GenerateContentResponse.candidates.
13465
+ # Corresponds to the JSON property `safetySettings`
13466
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SafetySetting>]
13467
+ attr_accessor :safety_settings
13468
+
13469
+ # The base structured datatype containing multi-part content of a message. A `
13470
+ # Content` includes a `role` field designating the producer of the `Content` and
13471
+ # a `parts` field containing multi-part data that contains the content of the
13472
+ # message turn.
13473
+ # Corresponds to the JSON property `systemInstruction`
13474
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Content]
13475
+ attr_accessor :system_instruction
13476
+
13477
+ # Tool config. This config is shared for all tools provided in the request.
13478
+ # Corresponds to the JSON property `toolConfig`
13479
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolConfig]
13480
+ attr_accessor :tool_config
13481
+
13482
+ # Optional. A list of `Tools` the model may use to generate the next response. A
13483
+ # `Tool` is a piece of code that enables the system to interact with external
13484
+ # systems to perform an action, or set of actions, outside of knowledge and
13485
+ # scope of the model.
13486
+ # Corresponds to the JSON property `tools`
13487
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Tool>]
13488
+ attr_accessor :tools
13489
+
13490
+ def initialize(**args)
13491
+ update!(**args)
13492
+ end
13493
+
13494
+ # Update properties of this object
13495
+ def update!(**args)
13496
+ @cached_content = args[:cached_content] if args.key?(:cached_content)
13497
+ @contents = args[:contents] if args.key?(:contents)
13498
+ @generation_config = args[:generation_config] if args.key?(:generation_config)
13499
+ @labels = args[:labels] if args.key?(:labels)
13500
+ @model = args[:model] if args.key?(:model)
13501
+ @safety_settings = args[:safety_settings] if args.key?(:safety_settings)
13502
+ @system_instruction = args[:system_instruction] if args.key?(:system_instruction)
13503
+ @tool_config = args[:tool_config] if args.key?(:tool_config)
13504
+ @tools = args[:tools] if args.key?(:tools)
13505
+ end
13506
+ end
13507
+
13508
+ # Template configuration to create Gemini examples from a multimodal dataset.
13509
+ class GoogleCloudAiplatformV1beta1GeminiTemplateConfig
13510
+ include Google::Apis::Core::Hashable
13511
+
13512
+ # Required. Map of template params to the columns in the dataset table.
13513
+ # Corresponds to the JSON property `fieldMapping`
13514
+ # @return [Hash<String,String>]
13515
+ attr_accessor :field_mapping
13516
+
13517
+ # Format for Gemini examples used for Vertex Multimodal datasets.
13518
+ # Corresponds to the JSON property `geminiExample`
13519
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GeminiExample]
13520
+ attr_accessor :gemini_example
13521
+
13522
+ def initialize(**args)
13523
+ update!(**args)
13524
+ end
13525
+
13526
+ # Update properties of this object
13527
+ def update!(**args)
13528
+ @field_mapping = args[:field_mapping] if args.key?(:field_mapping)
13529
+ @gemini_example = args[:gemini_example] if args.key?(:gemini_example)
13530
+ end
13531
+ end
13532
+
13311
13533
  # Configuration for GenAiAdvancedFeatures.
13312
13534
  class GoogleCloudAiplatformV1beta1GenAiAdvancedFeaturesConfig
13313
13535
  include Google::Apis::Core::Hashable
@@ -14188,6 +14410,11 @@ module Google
14188
14410
  class GoogleCloudAiplatformV1beta1GroundingChunkWeb
14189
14411
  include Google::Apis::Core::Hashable
14190
14412
 
14413
+ # Domain of the (original) URI.
14414
+ # Corresponds to the JSON property `domain`
14415
+ # @return [String]
14416
+ attr_accessor :domain
14417
+
14191
14418
  # Title of the chunk.
14192
14419
  # Corresponds to the JSON property `title`
14193
14420
  # @return [String]
@@ -14204,6 +14431,7 @@ module Google
14204
14431
 
14205
14432
  # Update properties of this object
14206
14433
  def update!(**args)
14434
+ @domain = args[:domain] if args.key?(:domain)
14207
14435
  @title = args[:title] if args.key?(:title)
14208
14436
  @uri = args[:uri] if args.key?(:uri)
14209
14437
  end
@@ -14827,6 +15055,16 @@ module Google
14827
15055
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GoogleDriveSource]
14828
15056
  attr_accessor :google_drive_source
14829
15057
 
15058
+ # The BigQuery location for the output content.
15059
+ # Corresponds to the JSON property `importResultBigquerySink`
15060
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1BigQueryDestination]
15061
+ attr_accessor :import_result_bigquery_sink
15062
+
15063
+ # The Google Cloud Storage location where the output is to be written to.
15064
+ # Corresponds to the JSON property `importResultGcsSink`
15065
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GcsDestination]
15066
+ attr_accessor :import_result_gcs_sink
15067
+
14830
15068
  # The Jira source for the ImportRagFilesRequest.
14831
15069
  # Corresponds to the JSON property `jiraSource`
14832
15070
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1JiraSource]
@@ -14884,6 +15122,8 @@ module Google
14884
15122
  def update!(**args)
14885
15123
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
14886
15124
  @google_drive_source = args[:google_drive_source] if args.key?(:google_drive_source)
15125
+ @import_result_bigquery_sink = args[:import_result_bigquery_sink] if args.key?(:import_result_bigquery_sink)
15126
+ @import_result_gcs_sink = args[:import_result_gcs_sink] if args.key?(:import_result_gcs_sink)
14887
15127
  @jira_source = args[:jira_source] if args.key?(:jira_source)
14888
15128
  @max_embedding_requests_per_min = args[:max_embedding_requests_per_min] if args.key?(:max_embedding_requests_per_min)
14889
15129
  @partial_failure_bigquery_sink = args[:partial_failure_bigquery_sink] if args.key?(:partial_failure_bigquery_sink)
@@ -24649,8 +24889,7 @@ module Google
24649
24889
  # @return [String]
24650
24890
  attr_accessor :post_startup_script_behavior
24651
24891
 
24652
- # Optional. Post startup script url to download. Example: https://bucket/script.
24653
- # sh
24892
+ # Optional. Post startup script url to download. Example: `gs://bucket/script.sh`
24654
24893
  # Corresponds to the JSON property `postStartupScriptUrl`
24655
24894
  # @return [String]
24656
24895
  attr_accessor :post_startup_script_url
@@ -28266,6 +28505,12 @@ module Google
28266
28505
  class GoogleCloudAiplatformV1beta1ReasoningEngineSpec
28267
28506
  include Google::Apis::Core::Hashable
28268
28507
 
28508
+ # Optional. The OSS agent framework used to develop the agent. Currently
28509
+ # supported values: "langchain", "langgraph", "ag2", "custom".
28510
+ # Corresponds to the JSON property `agentFramework`
28511
+ # @return [String]
28512
+ attr_accessor :agent_framework
28513
+
28269
28514
  # Optional. Declarations for object class methods in OpenAPI specification
28270
28515
  # format.
28271
28516
  # Corresponds to the JSON property `classMethods`
@@ -28288,6 +28533,7 @@ module Google
28288
28533
 
28289
28534
  # Update properties of this object
28290
28535
  def update!(**args)
28536
+ @agent_framework = args[:agent_framework] if args.key?(:agent_framework)
28291
28537
  @class_methods = args[:class_methods] if args.key?(:class_methods)
28292
28538
  @deployment_spec = args[:deployment_spec] if args.key?(:deployment_spec)
28293
28539
  @package_spec = args[:package_spec] if args.key?(:package_spec)
@@ -37372,8 +37618,7 @@ module Google
37372
37618
  include Google::Apis::Core::Hashable
37373
37619
 
37374
37620
  # Required. The name of the secret in Cloud Secret Manager. Format: `secret_name`
37375
- # if the secret is in the same project. projects/`project`/secrets/`secret_name`
37376
- # if the secret is in a different project.
37621
+ # .
37377
37622
  # Corresponds to the JSON property `secret`
37378
37623
  # @return [String]
37379
37624
  attr_accessor :secret
@@ -43219,6 +43464,13 @@ module Google
43219
43464
  # @return [String]
43220
43465
  attr_accessor :datastore
43221
43466
 
43467
+ # Optional. Fully-qualified Vertex AI Search engine resource ID. Format: `
43468
+ # projects/`project`/locations/`location`/collections/`collection`/engines/`
43469
+ # engine``
43470
+ # Corresponds to the JSON property `engine`
43471
+ # @return [String]
43472
+ attr_accessor :engine
43473
+
43222
43474
  def initialize(**args)
43223
43475
  update!(**args)
43224
43476
  end
@@ -43226,6 +43478,7 @@ module Google
43226
43478
  # Update properties of this object
43227
43479
  def update!(**args)
43228
43480
  @datastore = args[:datastore] if args.key?(:datastore)
43481
+ @engine = args[:engine] if args.key?(:engine)
43229
43482
  end
43230
43483
  end
43231
43484
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AiplatformV1beta1
18
18
  # Version of the google-apis-aiplatform_v1beta1 gem
19
- GEM_VERSION = "0.39.0"
19
+ GEM_VERSION = "0.41.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250304"
25
+ REVISION = "20250319"
26
26
  end
27
27
  end
28
28
  end
@@ -196,6 +196,30 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class GoogleCloudAiplatformV1beta1AssembleDataRequest
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
205
+ class GoogleCloudAiplatformV1beta1AssessDataRequest
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
211
+ class GoogleCloudAiplatformV1beta1AssessDataRequestTuningResourceUsageAssessmentConfig
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
217
+ class GoogleCloudAiplatformV1beta1AssessDataRequestTuningValidationAssessmentConfig
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
199
223
  class GoogleCloudAiplatformV1beta1AssignNotebookRuntimeOperationMetadata
200
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
225
 
@@ -2182,6 +2206,18 @@ module Google
2182
2206
  include Google::Apis::Core::JsonObjectSupport
2183
2207
  end
2184
2208
 
2209
+ class GoogleCloudAiplatformV1beta1GeminiExample
2210
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2211
+
2212
+ include Google::Apis::Core::JsonObjectSupport
2213
+ end
2214
+
2215
+ class GoogleCloudAiplatformV1beta1GeminiTemplateConfig
2216
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2217
+
2218
+ include Google::Apis::Core::JsonObjectSupport
2219
+ end
2220
+
2185
2221
  class GoogleCloudAiplatformV1beta1GenAiAdvancedFeaturesConfig
2186
2222
  class Representation < Google::Apis::Core::JsonRepresentation; end
2187
2223
 
@@ -7805,6 +7841,41 @@ module Google
7805
7841
  end
7806
7842
  end
7807
7843
 
7844
+ class GoogleCloudAiplatformV1beta1AssembleDataRequest
7845
+ # @private
7846
+ class Representation < Google::Apis::Core::JsonRepresentation
7847
+ property :gemini_template_config, as: 'geminiTemplateConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GeminiTemplateConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GeminiTemplateConfig::Representation
7848
+
7849
+ end
7850
+ end
7851
+
7852
+ class GoogleCloudAiplatformV1beta1AssessDataRequest
7853
+ # @private
7854
+ class Representation < Google::Apis::Core::JsonRepresentation
7855
+ property :gemini_template_config, as: 'geminiTemplateConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GeminiTemplateConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GeminiTemplateConfig::Representation
7856
+
7857
+ property :tuning_resource_usage_assessment_config, as: 'tuningResourceUsageAssessmentConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AssessDataRequestTuningResourceUsageAssessmentConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AssessDataRequestTuningResourceUsageAssessmentConfig::Representation
7858
+
7859
+ property :tuning_validation_assessment_config, as: 'tuningValidationAssessmentConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AssessDataRequestTuningValidationAssessmentConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AssessDataRequestTuningValidationAssessmentConfig::Representation
7860
+
7861
+ end
7862
+ end
7863
+
7864
+ class GoogleCloudAiplatformV1beta1AssessDataRequestTuningResourceUsageAssessmentConfig
7865
+ # @private
7866
+ class Representation < Google::Apis::Core::JsonRepresentation
7867
+ property :model_name, as: 'modelName'
7868
+ end
7869
+ end
7870
+
7871
+ class GoogleCloudAiplatformV1beta1AssessDataRequestTuningValidationAssessmentConfig
7872
+ # @private
7873
+ class Representation < Google::Apis::Core::JsonRepresentation
7874
+ property :dataset_usage, as: 'datasetUsage'
7875
+ property :model_name, as: 'modelName'
7876
+ end
7877
+ end
7878
+
7808
7879
  class GoogleCloudAiplatformV1beta1AssignNotebookRuntimeOperationMetadata
7809
7880
  # @private
7810
7881
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -11224,6 +11295,7 @@ module Google
11224
11295
  # @private
11225
11296
  class Representation < Google::Apis::Core::JsonRepresentation
11226
11297
  hash :args, as: 'args'
11298
+ property :id, as: 'id'
11227
11299
  property :name, as: 'name'
11228
11300
  end
11229
11301
  end
@@ -11251,6 +11323,7 @@ module Google
11251
11323
  class GoogleCloudAiplatformV1beta1FunctionResponse
11252
11324
  # @private
11253
11325
  class Representation < Google::Apis::Core::JsonRepresentation
11326
+ property :id, as: 'id'
11254
11327
  property :name, as: 'name'
11255
11328
  hash :response, as: 'response'
11256
11329
  end
@@ -11270,6 +11343,36 @@ module Google
11270
11343
  end
11271
11344
  end
11272
11345
 
11346
+ class GoogleCloudAiplatformV1beta1GeminiExample
11347
+ # @private
11348
+ class Representation < Google::Apis::Core::JsonRepresentation
11349
+ property :cached_content, as: 'cachedContent'
11350
+ collection :contents, as: 'contents', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Content, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Content::Representation
11351
+
11352
+ property :generation_config, as: 'generationConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerationConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerationConfig::Representation
11353
+
11354
+ hash :labels, as: 'labels'
11355
+ property :model, as: 'model'
11356
+ collection :safety_settings, as: 'safetySettings', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SafetySetting, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SafetySetting::Representation
11357
+
11358
+ property :system_instruction, as: 'systemInstruction', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Content, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Content::Representation
11359
+
11360
+ property :tool_config, as: 'toolConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolConfig::Representation
11361
+
11362
+ collection :tools, as: 'tools', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Tool, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Tool::Representation
11363
+
11364
+ end
11365
+ end
11366
+
11367
+ class GoogleCloudAiplatformV1beta1GeminiTemplateConfig
11368
+ # @private
11369
+ class Representation < Google::Apis::Core::JsonRepresentation
11370
+ hash :field_mapping, as: 'fieldMapping'
11371
+ property :gemini_example, as: 'geminiExample', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GeminiExample, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GeminiExample::Representation
11372
+
11373
+ end
11374
+ end
11375
+
11273
11376
  class GoogleCloudAiplatformV1beta1GenAiAdvancedFeaturesConfig
11274
11377
  # @private
11275
11378
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -11535,6 +11638,7 @@ module Google
11535
11638
  class GoogleCloudAiplatformV1beta1GroundingChunkWeb
11536
11639
  # @private
11537
11640
  class Representation < Google::Apis::Core::JsonRepresentation
11641
+ property :domain, as: 'domain'
11538
11642
  property :title, as: 'title'
11539
11643
  property :uri, as: 'uri'
11540
11644
  end
@@ -11710,6 +11814,10 @@ module Google
11710
11814
 
11711
11815
  property :google_drive_source, as: 'googleDriveSource', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GoogleDriveSource, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GoogleDriveSource::Representation
11712
11816
 
11817
+ property :import_result_bigquery_sink, as: 'importResultBigquerySink', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1BigQueryDestination, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1BigQueryDestination::Representation
11818
+
11819
+ property :import_result_gcs_sink, as: 'importResultGcsSink', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GcsDestination, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GcsDestination::Representation
11820
+
11713
11821
  property :jira_source, as: 'jiraSource', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1JiraSource, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1JiraSource::Representation
11714
11822
 
11715
11823
  property :max_embedding_requests_per_min, as: 'maxEmbeddingRequestsPerMin'
@@ -15599,6 +15707,7 @@ module Google
15599
15707
  class GoogleCloudAiplatformV1beta1ReasoningEngineSpec
15600
15708
  # @private
15601
15709
  class Representation < Google::Apis::Core::JsonRepresentation
15710
+ property :agent_framework, as: 'agentFramework'
15602
15711
  collection :class_methods, as: 'classMethods'
15603
15712
  property :deployment_spec, as: 'deploymentSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec::Representation
15604
15713
 
@@ -19881,6 +19990,7 @@ module Google
19881
19990
  # @private
19882
19991
  class Representation < Google::Apis::Core::JsonRepresentation
19883
19992
  property :datastore, as: 'datastore'
19993
+ property :engine, as: 'engine'
19884
19994
  end
19885
19995
  end
19886
19996
 
@@ -2535,6 +2535,75 @@ module Google
2535
2535
  execute_or_queue_command(command, &block)
2536
2536
  end
2537
2537
 
2538
+ # Assembles each row of a multimodal dataset and writes the result into a
2539
+ # BigQuery table.
2540
+ # @param [String] name
2541
+ # Required. The name of the Dataset resource (used only for MULTIMODAL datasets).
2542
+ # Format: `projects/`project`/locations/`location`/datasets/`dataset``
2543
+ # @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AssembleDataRequest] google_cloud_aiplatform_v1beta1_assemble_data_request_object
2544
+ # @param [String] fields
2545
+ # Selector specifying which fields to include in a partial response.
2546
+ # @param [String] quota_user
2547
+ # Available to use for quota purposes for server-side applications. Can be any
2548
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2549
+ # @param [Google::Apis::RequestOptions] options
2550
+ # Request-specific options
2551
+ #
2552
+ # @yield [result, err] Result & error if block supplied
2553
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
2554
+ # @yieldparam err [StandardError] error object if request failed
2555
+ #
2556
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
2557
+ #
2558
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2559
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2560
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2561
+ def assemble_project_location_dataset(name, google_cloud_aiplatform_v1beta1_assemble_data_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
2562
+ command = make_simple_command(:post, 'v1beta1/{+name}:assemble', options)
2563
+ command.request_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AssembleDataRequest::Representation
2564
+ command.request_object = google_cloud_aiplatform_v1beta1_assemble_data_request_object
2565
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
2566
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
2567
+ command.params['name'] = name unless name.nil?
2568
+ command.query['fields'] = fields unless fields.nil?
2569
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2570
+ execute_or_queue_command(command, &block)
2571
+ end
2572
+
2573
+ # Assesses the state or validity of the dataset with respect to a given use case.
2574
+ # @param [String] name
2575
+ # Required. The name of the Dataset resource. Used only for MULTIMODAL datasets.
2576
+ # Format: `projects/`project`/locations/`location`/datasets/`dataset``
2577
+ # @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AssessDataRequest] google_cloud_aiplatform_v1beta1_assess_data_request_object
2578
+ # @param [String] fields
2579
+ # Selector specifying which fields to include in a partial response.
2580
+ # @param [String] quota_user
2581
+ # Available to use for quota purposes for server-side applications. Can be any
2582
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2583
+ # @param [Google::Apis::RequestOptions] options
2584
+ # Request-specific options
2585
+ #
2586
+ # @yield [result, err] Result & error if block supplied
2587
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
2588
+ # @yieldparam err [StandardError] error object if request failed
2589
+ #
2590
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
2591
+ #
2592
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2593
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2594
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2595
+ def assess_project_location_dataset(name, google_cloud_aiplatform_v1beta1_assess_data_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
2596
+ command = make_simple_command(:post, 'v1beta1/{+name}:assess', options)
2597
+ command.request_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AssessDataRequest::Representation
2598
+ command.request_object = google_cloud_aiplatform_v1beta1_assess_data_request_object
2599
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
2600
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
2601
+ command.params['name'] = name unless name.nil?
2602
+ command.query['fields'] = fields unless fields.nil?
2603
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2604
+ execute_or_queue_command(command, &block)
2605
+ end
2606
+
2538
2607
  # Creates a Dataset.
2539
2608
  # @param [String] parent
2540
2609
  # Required. The resource name of the Location to create the Dataset in. Format: `
@@ -3150,9 +3219,7 @@ module Google
3150
3219
  execute_or_queue_command(command, &block)
3151
3220
  end
3152
3221
 
3153
- # Lists Annotations belongs to a dataitem This RPC is only available in
3154
- # InternalDatasetService. It is only used for exporting conversation data to
3155
- # CCAI Insights.
3222
+ # Lists Annotations belongs to a dataitem.
3156
3223
  # @param [String] parent
3157
3224
  # Required. The resource name of the DataItem to list Annotations from. Format: `
3158
3225
  # projects/`project`/locations/`location`/datasets/`dataset`/dataItems/`
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-aiplatform_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.39.0
4
+ version: 0.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-16 00:00:00.000000000 Z
10
+ date: 2025-03-30 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.39.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.41.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: