google-apis-aiplatform_v1 0.75.0 → 0.77.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/aiplatform_v1/classes.rb +686 -123
- data/lib/google/apis/aiplatform_v1/gem_version.rb +2 -2
- data/lib/google/apis/aiplatform_v1/representations.rb +270 -0
- data/lib/google/apis/aiplatform_v1/service.rb +1004 -251
- metadata +2 -2
|
@@ -2065,8 +2065,8 @@ module Google
|
|
|
2065
2065
|
# @return [String]
|
|
2066
2066
|
attr_accessor :display_name
|
|
2067
2067
|
|
|
2068
|
-
# Represents a customer-managed encryption key
|
|
2069
|
-
#
|
|
2068
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
2069
|
+
# to a Vertex AI resource.
|
|
2070
2070
|
# Corresponds to the JSON property `encryptionSpec`
|
|
2071
2071
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
2072
2072
|
attr_accessor :encryption_spec
|
|
@@ -2291,6 +2291,11 @@ module Google
|
|
|
2291
2291
|
# @return [String]
|
|
2292
2292
|
attr_accessor :instances_format
|
|
2293
2293
|
|
|
2294
|
+
# The Vertex Multimodal Dataset for the input content.
|
|
2295
|
+
# Corresponds to the JSON property `vertexMultimodalDatasetSource`
|
|
2296
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetSource]
|
|
2297
|
+
attr_accessor :vertex_multimodal_dataset_source
|
|
2298
|
+
|
|
2294
2299
|
def initialize(**args)
|
|
2295
2300
|
update!(**args)
|
|
2296
2301
|
end
|
|
@@ -2300,6 +2305,7 @@ module Google
|
|
|
2300
2305
|
@bigquery_source = args[:bigquery_source] if args.key?(:bigquery_source)
|
|
2301
2306
|
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
|
2302
2307
|
@instances_format = args[:instances_format] if args.key?(:instances_format)
|
|
2308
|
+
@vertex_multimodal_dataset_source = args[:vertex_multimodal_dataset_source] if args.key?(:vertex_multimodal_dataset_source)
|
|
2303
2309
|
end
|
|
2304
2310
|
end
|
|
2305
2311
|
|
|
@@ -2399,6 +2405,11 @@ module Google
|
|
|
2399
2405
|
# @return [String]
|
|
2400
2406
|
attr_accessor :predictions_format
|
|
2401
2407
|
|
|
2408
|
+
# The details for a Vertex Multimodal Dataset output.
|
|
2409
|
+
# Corresponds to the JSON property `vertexMultimodalDatasetDestination`
|
|
2410
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetDestination]
|
|
2411
|
+
attr_accessor :vertex_multimodal_dataset_destination
|
|
2412
|
+
|
|
2402
2413
|
def initialize(**args)
|
|
2403
2414
|
update!(**args)
|
|
2404
2415
|
end
|
|
@@ -2408,6 +2419,7 @@ module Google
|
|
|
2408
2419
|
@bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
|
|
2409
2420
|
@gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
|
|
2410
2421
|
@predictions_format = args[:predictions_format] if args.key?(:predictions_format)
|
|
2422
|
+
@vertex_multimodal_dataset_destination = args[:vertex_multimodal_dataset_destination] if args.key?(:vertex_multimodal_dataset_destination)
|
|
2411
2423
|
end
|
|
2412
2424
|
end
|
|
2413
2425
|
|
|
@@ -2434,6 +2446,13 @@ module Google
|
|
|
2434
2446
|
# @return [String]
|
|
2435
2447
|
attr_accessor :gcs_output_directory
|
|
2436
2448
|
|
|
2449
|
+
# Output only. The resource name of the Vertex Managed Dataset created, into
|
|
2450
|
+
# which the prediction output is written. Format: `projects/`project`/locations/`
|
|
2451
|
+
# location`/datasets/`dataset``
|
|
2452
|
+
# Corresponds to the JSON property `vertexMultimodalDatasetName`
|
|
2453
|
+
# @return [String]
|
|
2454
|
+
attr_accessor :vertex_multimodal_dataset_name
|
|
2455
|
+
|
|
2437
2456
|
def initialize(**args)
|
|
2438
2457
|
update!(**args)
|
|
2439
2458
|
end
|
|
@@ -2443,6 +2462,7 @@ module Google
|
|
|
2443
2462
|
@bigquery_output_dataset = args[:bigquery_output_dataset] if args.key?(:bigquery_output_dataset)
|
|
2444
2463
|
@bigquery_output_table = args[:bigquery_output_table] if args.key?(:bigquery_output_table)
|
|
2445
2464
|
@gcs_output_directory = args[:gcs_output_directory] if args.key?(:gcs_output_directory)
|
|
2465
|
+
@vertex_multimodal_dataset_name = args[:vertex_multimodal_dataset_name] if args.key?(:vertex_multimodal_dataset_name)
|
|
2446
2466
|
end
|
|
2447
2467
|
end
|
|
2448
2468
|
|
|
@@ -2966,8 +2986,8 @@ module Google
|
|
|
2966
2986
|
# @return [String]
|
|
2967
2987
|
attr_accessor :display_name
|
|
2968
2988
|
|
|
2969
|
-
# Represents a customer-managed encryption key
|
|
2970
|
-
#
|
|
2989
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
2990
|
+
# to a Vertex AI resource.
|
|
2971
2991
|
# Corresponds to the JSON property `encryptionSpec`
|
|
2972
2992
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
2973
2993
|
attr_accessor :encryption_spec
|
|
@@ -3476,6 +3496,40 @@ module Google
|
|
|
3476
3496
|
end
|
|
3477
3497
|
end
|
|
3478
3498
|
|
|
3499
|
+
# Container for bytes-encoded data such as video frame, audio sample, or a
|
|
3500
|
+
# complete binary/text data.
|
|
3501
|
+
class GoogleCloudAiplatformV1Chunk
|
|
3502
|
+
include Google::Apis::Core::Hashable
|
|
3503
|
+
|
|
3504
|
+
# Required. The data in the chunk.
|
|
3505
|
+
# Corresponds to the JSON property `data`
|
|
3506
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
3507
|
+
# @return [String]
|
|
3508
|
+
attr_accessor :data
|
|
3509
|
+
|
|
3510
|
+
# Metadata for a chunk.
|
|
3511
|
+
# Corresponds to the JSON property `metadata`
|
|
3512
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Metadata]
|
|
3513
|
+
attr_accessor :metadata
|
|
3514
|
+
|
|
3515
|
+
# Required. Mime type of the chunk data. See https://www.iana.org/assignments/
|
|
3516
|
+
# media-types/media-types.xhtml for the full list.
|
|
3517
|
+
# Corresponds to the JSON property `mimeType`
|
|
3518
|
+
# @return [String]
|
|
3519
|
+
attr_accessor :mime_type
|
|
3520
|
+
|
|
3521
|
+
def initialize(**args)
|
|
3522
|
+
update!(**args)
|
|
3523
|
+
end
|
|
3524
|
+
|
|
3525
|
+
# Update properties of this object
|
|
3526
|
+
def update!(**args)
|
|
3527
|
+
@data = args[:data] if args.key?(:data)
|
|
3528
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
|
3529
|
+
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
|
3530
|
+
end
|
|
3531
|
+
end
|
|
3532
|
+
|
|
3479
3533
|
# A citation for a piece of generatedcontent.
|
|
3480
3534
|
class GoogleCloudAiplatformV1Citation
|
|
3481
3535
|
include Google::Apis::Core::Hashable
|
|
@@ -4247,8 +4301,8 @@ module Google
|
|
|
4247
4301
|
class GoogleCloudAiplatformV1CopyModelRequest
|
|
4248
4302
|
include Google::Apis::Core::Hashable
|
|
4249
4303
|
|
|
4250
|
-
# Represents a customer-managed encryption key
|
|
4251
|
-
#
|
|
4304
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
4305
|
+
# to a Vertex AI resource.
|
|
4252
4306
|
# Corresponds to the JSON property `encryptionSpec`
|
|
4253
4307
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
4254
4308
|
attr_accessor :encryption_spec
|
|
@@ -5188,8 +5242,8 @@ module Google
|
|
|
5188
5242
|
# @return [String]
|
|
5189
5243
|
attr_accessor :display_name
|
|
5190
5244
|
|
|
5191
|
-
# Represents a customer-managed encryption key
|
|
5192
|
-
#
|
|
5245
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
5246
|
+
# to a Vertex AI resource.
|
|
5193
5247
|
# Corresponds to the JSON property `encryptionSpec`
|
|
5194
5248
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
5195
5249
|
attr_accessor :encryption_spec
|
|
@@ -5636,8 +5690,8 @@ module Google
|
|
|
5636
5690
|
# @return [String]
|
|
5637
5691
|
attr_accessor :display_name
|
|
5638
5692
|
|
|
5639
|
-
# Represents a customer-managed encryption key
|
|
5640
|
-
#
|
|
5693
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
5694
|
+
# to a Vertex AI resource.
|
|
5641
5695
|
# Corresponds to the JSON property `encryptionSpec`
|
|
5642
5696
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
5643
5697
|
attr_accessor :encryption_spec
|
|
@@ -5768,8 +5822,8 @@ module Google
|
|
|
5768
5822
|
# @return [String]
|
|
5769
5823
|
attr_accessor :display_name
|
|
5770
5824
|
|
|
5771
|
-
# Represents a customer-managed encryption key
|
|
5772
|
-
#
|
|
5825
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
5826
|
+
# to a Vertex AI resource.
|
|
5773
5827
|
# Corresponds to the JSON property `encryptionSpec`
|
|
5774
5828
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
5775
5829
|
attr_accessor :encryption_spec
|
|
@@ -7300,8 +7354,8 @@ module Google
|
|
|
7300
7354
|
attr_accessor :disable_container_logging
|
|
7301
7355
|
alias_method :disable_container_logging?, :disable_container_logging
|
|
7302
7356
|
|
|
7303
|
-
# Represents a customer-managed encryption key
|
|
7304
|
-
#
|
|
7357
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
7358
|
+
# to a Vertex AI resource.
|
|
7305
7359
|
# Corresponds to the JSON property `encryptionSpec`
|
|
7306
7360
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
7307
7361
|
attr_accessor :encryption_spec
|
|
@@ -7699,15 +7753,15 @@ module Google
|
|
|
7699
7753
|
end
|
|
7700
7754
|
end
|
|
7701
7755
|
|
|
7702
|
-
# Represents a customer-managed encryption key
|
|
7703
|
-
#
|
|
7756
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
7757
|
+
# to a Vertex AI resource.
|
|
7704
7758
|
class GoogleCloudAiplatformV1EncryptionSpec
|
|
7705
7759
|
include Google::Apis::Core::Hashable
|
|
7706
7760
|
|
|
7707
|
-
# Required.
|
|
7708
|
-
# key
|
|
7709
|
-
#
|
|
7710
|
-
#
|
|
7761
|
+
# Required. Resource name of the Cloud KMS key used to protect the resource. The
|
|
7762
|
+
# Cloud KMS key must be in the same region as the resource. It must have the
|
|
7763
|
+
# format `projects/`project`/locations/`location`/keyRings/`key_ring`/cryptoKeys/
|
|
7764
|
+
# `crypto_key``.
|
|
7711
7765
|
# Corresponds to the JSON property `kmsKeyName`
|
|
7712
7766
|
# @return [String]
|
|
7713
7767
|
attr_accessor :kms_key_name
|
|
@@ -7782,8 +7836,8 @@ module Google
|
|
|
7782
7836
|
attr_accessor :enable_private_service_connect
|
|
7783
7837
|
alias_method :enable_private_service_connect?, :enable_private_service_connect
|
|
7784
7838
|
|
|
7785
|
-
# Represents a customer-managed encryption key
|
|
7786
|
-
#
|
|
7839
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
7840
|
+
# to a Vertex AI resource.
|
|
7787
7841
|
# Corresponds to the JSON property `encryptionSpec`
|
|
7788
7842
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
7789
7843
|
attr_accessor :encryption_spec
|
|
@@ -10333,6 +10387,82 @@ module Google
|
|
|
10333
10387
|
end
|
|
10334
10388
|
end
|
|
10335
10389
|
|
|
10390
|
+
# Request message for SandboxEnvironmentExecutionService.ExecuteCode.
|
|
10391
|
+
class GoogleCloudAiplatformV1ExecuteCodeRequest
|
|
10392
|
+
include Google::Apis::Core::Hashable
|
|
10393
|
+
|
|
10394
|
+
# Required. The inputs used for the stateless code execution.
|
|
10395
|
+
# Corresponds to the JSON property `inputs`
|
|
10396
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Chunk>]
|
|
10397
|
+
attr_accessor :inputs
|
|
10398
|
+
|
|
10399
|
+
def initialize(**args)
|
|
10400
|
+
update!(**args)
|
|
10401
|
+
end
|
|
10402
|
+
|
|
10403
|
+
# Update properties of this object
|
|
10404
|
+
def update!(**args)
|
|
10405
|
+
@inputs = args[:inputs] if args.key?(:inputs)
|
|
10406
|
+
end
|
|
10407
|
+
end
|
|
10408
|
+
|
|
10409
|
+
# Response message for SandboxEnvironmentExecutionService.ExecuteCode.
|
|
10410
|
+
class GoogleCloudAiplatformV1ExecuteCodeResponse
|
|
10411
|
+
include Google::Apis::Core::Hashable
|
|
10412
|
+
|
|
10413
|
+
# The outputs from the sandbox environment.
|
|
10414
|
+
# Corresponds to the JSON property `outputs`
|
|
10415
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Chunk>]
|
|
10416
|
+
attr_accessor :outputs
|
|
10417
|
+
|
|
10418
|
+
def initialize(**args)
|
|
10419
|
+
update!(**args)
|
|
10420
|
+
end
|
|
10421
|
+
|
|
10422
|
+
# Update properties of this object
|
|
10423
|
+
def update!(**args)
|
|
10424
|
+
@outputs = args[:outputs] if args.key?(:outputs)
|
|
10425
|
+
end
|
|
10426
|
+
end
|
|
10427
|
+
|
|
10428
|
+
# Request message for SandboxEnvironmentExecutionService.Execute.
|
|
10429
|
+
class GoogleCloudAiplatformV1ExecuteSandboxEnvironmentRequest
|
|
10430
|
+
include Google::Apis::Core::Hashable
|
|
10431
|
+
|
|
10432
|
+
# Required. The inputs to the sandbox environment.
|
|
10433
|
+
# Corresponds to the JSON property `inputs`
|
|
10434
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Chunk>]
|
|
10435
|
+
attr_accessor :inputs
|
|
10436
|
+
|
|
10437
|
+
def initialize(**args)
|
|
10438
|
+
update!(**args)
|
|
10439
|
+
end
|
|
10440
|
+
|
|
10441
|
+
# Update properties of this object
|
|
10442
|
+
def update!(**args)
|
|
10443
|
+
@inputs = args[:inputs] if args.key?(:inputs)
|
|
10444
|
+
end
|
|
10445
|
+
end
|
|
10446
|
+
|
|
10447
|
+
# Response message for SandboxEnvironmentExecutionService.Execute.
|
|
10448
|
+
class GoogleCloudAiplatformV1ExecuteSandboxEnvironmentResponse
|
|
10449
|
+
include Google::Apis::Core::Hashable
|
|
10450
|
+
|
|
10451
|
+
# The outputs from the sandbox environment.
|
|
10452
|
+
# Corresponds to the JSON property `outputs`
|
|
10453
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Chunk>]
|
|
10454
|
+
attr_accessor :outputs
|
|
10455
|
+
|
|
10456
|
+
def initialize(**args)
|
|
10457
|
+
update!(**args)
|
|
10458
|
+
end
|
|
10459
|
+
|
|
10460
|
+
# Update properties of this object
|
|
10461
|
+
def update!(**args)
|
|
10462
|
+
@outputs = args[:outputs] if args.key?(:outputs)
|
|
10463
|
+
end
|
|
10464
|
+
end
|
|
10465
|
+
|
|
10336
10466
|
# Instance of a general execution.
|
|
10337
10467
|
class GoogleCloudAiplatformV1Execution
|
|
10338
10468
|
include Google::Apis::Core::Hashable
|
|
@@ -12157,8 +12287,8 @@ module Google
|
|
|
12157
12287
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureOnlineStoreDedicatedServingEndpoint]
|
|
12158
12288
|
attr_accessor :dedicated_serving_endpoint
|
|
12159
12289
|
|
|
12160
|
-
# Represents a customer-managed encryption key
|
|
12161
|
-
#
|
|
12290
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
12291
|
+
# to a Vertex AI resource.
|
|
12162
12292
|
# Corresponds to the JSON property `encryptionSpec`
|
|
12163
12293
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
12164
12294
|
attr_accessor :encryption_spec
|
|
@@ -13340,8 +13470,8 @@ module Google
|
|
|
13340
13470
|
# @return [String]
|
|
13341
13471
|
attr_accessor :create_time
|
|
13342
13472
|
|
|
13343
|
-
# Represents a customer-managed encryption key
|
|
13344
|
-
#
|
|
13473
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
13474
|
+
# to a Vertex AI resource.
|
|
13345
13475
|
# Corresponds to the JSON property `encryptionSpec`
|
|
13346
13476
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
13347
13477
|
attr_accessor :encryption_spec
|
|
@@ -14394,9 +14524,8 @@ module Google
|
|
|
14394
14524
|
# @return [String]
|
|
14395
14525
|
attr_accessor :name
|
|
14396
14526
|
|
|
14397
|
-
#
|
|
14398
|
-
#
|
|
14399
|
-
# schema-object). More fields may be added in the future as needed.
|
|
14527
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
14528
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
14400
14529
|
# Corresponds to the JSON property `parameters`
|
|
14401
14530
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
|
14402
14531
|
attr_accessor :parameters
|
|
@@ -14411,9 +14540,8 @@ module Google
|
|
|
14411
14540
|
# @return [Object]
|
|
14412
14541
|
attr_accessor :parameters_json_schema
|
|
14413
14542
|
|
|
14414
|
-
#
|
|
14415
|
-
#
|
|
14416
|
-
# schema-object). More fields may be added in the future as needed.
|
|
14543
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
14544
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
14417
14545
|
# Corresponds to the JSON property `response`
|
|
14418
14546
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
|
14419
14547
|
attr_accessor :response
|
|
@@ -15135,6 +15263,17 @@ module Google
|
|
|
15135
15263
|
attr_accessor :disable_memory_revisions
|
|
15136
15264
|
alias_method :disable_memory_revisions?, :disable_memory_revisions
|
|
15137
15265
|
|
|
15266
|
+
# Optional. User-provided metadata for the generated memories. This is not
|
|
15267
|
+
# generated by Memory Bank.
|
|
15268
|
+
# Corresponds to the JSON property `metadata`
|
|
15269
|
+
# @return [Hash<String,Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryMetadataValue>]
|
|
15270
|
+
attr_accessor :metadata
|
|
15271
|
+
|
|
15272
|
+
# Optional. The strategy to use when applying metadata to existing memories.
|
|
15273
|
+
# Corresponds to the JSON property `metadataMergeStrategy`
|
|
15274
|
+
# @return [String]
|
|
15275
|
+
attr_accessor :metadata_merge_strategy
|
|
15276
|
+
|
|
15138
15277
|
# Optional. Timestamp of when the revision is considered expired. If not set,
|
|
15139
15278
|
# the memory revision will be kept until manually deleted.
|
|
15140
15279
|
# Corresponds to the JSON property `revisionExpireTime`
|
|
@@ -15178,6 +15317,8 @@ module Google
|
|
|
15178
15317
|
@direct_memories_source = args[:direct_memories_source] if args.key?(:direct_memories_source)
|
|
15179
15318
|
@disable_consolidation = args[:disable_consolidation] if args.key?(:disable_consolidation)
|
|
15180
15319
|
@disable_memory_revisions = args[:disable_memory_revisions] if args.key?(:disable_memory_revisions)
|
|
15320
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
|
15321
|
+
@metadata_merge_strategy = args[:metadata_merge_strategy] if args.key?(:metadata_merge_strategy)
|
|
15181
15322
|
@revision_expire_time = args[:revision_expire_time] if args.key?(:revision_expire_time)
|
|
15182
15323
|
@revision_labels = args[:revision_labels] if args.key?(:revision_labels)
|
|
15183
15324
|
@revision_ttl = args[:revision_ttl] if args.key?(:revision_ttl)
|
|
@@ -15545,9 +15686,8 @@ module Google
|
|
|
15545
15686
|
# @return [Array<String>]
|
|
15546
15687
|
attr_accessor :response_modalities
|
|
15547
15688
|
|
|
15548
|
-
#
|
|
15549
|
-
#
|
|
15550
|
-
# schema-object). More fields may be added in the future as needed.
|
|
15689
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
15690
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
15551
15691
|
# Corresponds to the JSON property `responseSchema`
|
|
15552
15692
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
|
15553
15693
|
attr_accessor :response_schema
|
|
@@ -16374,8 +16514,8 @@ module Google
|
|
|
16374
16514
|
# @return [String]
|
|
16375
16515
|
attr_accessor :display_name
|
|
16376
16516
|
|
|
16377
|
-
# Represents a customer-managed encryption key
|
|
16378
|
-
#
|
|
16517
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
16518
|
+
# to a Vertex AI resource.
|
|
16379
16519
|
# Corresponds to the JSON property `encryptionSpec`
|
|
16380
16520
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
16381
16521
|
attr_accessor :encryption_spec
|
|
@@ -17072,8 +17212,8 @@ module Google
|
|
|
17072
17212
|
# @return [String]
|
|
17073
17213
|
attr_accessor :display_name
|
|
17074
17214
|
|
|
17075
|
-
# Represents a customer-managed encryption key
|
|
17076
|
-
#
|
|
17215
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
17216
|
+
# to a Vertex AI resource.
|
|
17077
17217
|
# Corresponds to the JSON property `encryptionSpec`
|
|
17078
17218
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
17079
17219
|
attr_accessor :encryption_spec
|
|
@@ -17398,8 +17538,8 @@ module Google
|
|
|
17398
17538
|
attr_accessor :enable_private_service_connect
|
|
17399
17539
|
alias_method :enable_private_service_connect?, :enable_private_service_connect
|
|
17400
17540
|
|
|
17401
|
-
# Represents a customer-managed encryption key
|
|
17402
|
-
#
|
|
17541
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
17542
|
+
# to a Vertex AI resource.
|
|
17403
17543
|
# Corresponds to the JSON property `encryptionSpec`
|
|
17404
17544
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
17405
17545
|
attr_accessor :encryption_spec
|
|
@@ -19254,6 +19394,33 @@ module Google
|
|
|
19254
19394
|
end
|
|
19255
19395
|
end
|
|
19256
19396
|
|
|
19397
|
+
# Response message for SandboxEnvironmentService.ListSandboxEnvironments.
|
|
19398
|
+
class GoogleCloudAiplatformV1ListSandboxEnvironmentsResponse
|
|
19399
|
+
include Google::Apis::Core::Hashable
|
|
19400
|
+
|
|
19401
|
+
# A token, which can be sent as ListSandboxEnvironmentsRequest.page_token to
|
|
19402
|
+
# retrieve the next page. Absence of this field indicates there are no
|
|
19403
|
+
# subsequent pages.
|
|
19404
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
19405
|
+
# @return [String]
|
|
19406
|
+
attr_accessor :next_page_token
|
|
19407
|
+
|
|
19408
|
+
# The SandboxEnvironments matching the request.
|
|
19409
|
+
# Corresponds to the JSON property `sandboxEnvironments`
|
|
19410
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironment>]
|
|
19411
|
+
attr_accessor :sandbox_environments
|
|
19412
|
+
|
|
19413
|
+
def initialize(**args)
|
|
19414
|
+
update!(**args)
|
|
19415
|
+
end
|
|
19416
|
+
|
|
19417
|
+
# Update properties of this object
|
|
19418
|
+
def update!(**args)
|
|
19419
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
19420
|
+
@sandbox_environments = args[:sandbox_environments] if args.key?(:sandbox_environments)
|
|
19421
|
+
end
|
|
19422
|
+
end
|
|
19423
|
+
|
|
19257
19424
|
# Response message for DatasetService.ListSavedQueries.
|
|
19258
19425
|
class GoogleCloudAiplatformV1ListSavedQueriesResponse
|
|
19259
19426
|
include Google::Apis::Core::Hashable
|
|
@@ -19916,6 +20083,13 @@ module Google
|
|
|
19916
20083
|
# @return [String]
|
|
19917
20084
|
attr_accessor :fact
|
|
19918
20085
|
|
|
20086
|
+
# Optional. User-provided metadata for the Memory. This information was provided
|
|
20087
|
+
# when creating, updating, or generating the Memory. It was not generated by
|
|
20088
|
+
# Memory Bank.
|
|
20089
|
+
# Corresponds to the JSON property `metadata`
|
|
20090
|
+
# @return [Hash<String,Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryMetadataValue>]
|
|
20091
|
+
attr_accessor :metadata
|
|
20092
|
+
|
|
19919
20093
|
# Identifier. The resource name of the Memory. Format: `projects/`project`/
|
|
19920
20094
|
# locations/`location`/reasoningEngines/`reasoning_engine`/memories/`memory``
|
|
19921
20095
|
# Corresponds to the JSON property `name`
|
|
@@ -19975,6 +20149,7 @@ module Google
|
|
|
19975
20149
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
19976
20150
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
|
19977
20151
|
@fact = args[:fact] if args.key?(:fact)
|
|
20152
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
|
19978
20153
|
@name = args[:name] if args.key?(:name)
|
|
19979
20154
|
@revision_expire_time = args[:revision_expire_time] if args.key?(:revision_expire_time)
|
|
19980
20155
|
@revision_labels = args[:revision_labels] if args.key?(:revision_labels)
|
|
@@ -20200,6 +20375,103 @@ module Google
|
|
|
20200
20375
|
end
|
|
20201
20376
|
end
|
|
20202
20377
|
|
|
20378
|
+
# A conjunction of filters that will be combined using AND logic.
|
|
20379
|
+
class GoogleCloudAiplatformV1MemoryConjunctionFilter
|
|
20380
|
+
include Google::Apis::Core::Hashable
|
|
20381
|
+
|
|
20382
|
+
# Filters that will combined using AND logic.
|
|
20383
|
+
# Corresponds to the JSON property `filters`
|
|
20384
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryFilter>]
|
|
20385
|
+
attr_accessor :filters
|
|
20386
|
+
|
|
20387
|
+
def initialize(**args)
|
|
20388
|
+
update!(**args)
|
|
20389
|
+
end
|
|
20390
|
+
|
|
20391
|
+
# Update properties of this object
|
|
20392
|
+
def update!(**args)
|
|
20393
|
+
@filters = args[:filters] if args.key?(:filters)
|
|
20394
|
+
end
|
|
20395
|
+
end
|
|
20396
|
+
|
|
20397
|
+
# Filter to apply when retrieving memories.
|
|
20398
|
+
class GoogleCloudAiplatformV1MemoryFilter
|
|
20399
|
+
include Google::Apis::Core::Hashable
|
|
20400
|
+
|
|
20401
|
+
# Key of the filter. For example, "author" would apply to `metadata` entries
|
|
20402
|
+
# with the key "author".
|
|
20403
|
+
# Corresponds to the JSON property `key`
|
|
20404
|
+
# @return [String]
|
|
20405
|
+
attr_accessor :key
|
|
20406
|
+
|
|
20407
|
+
# If true, the filter will be negated.
|
|
20408
|
+
# Corresponds to the JSON property `negate`
|
|
20409
|
+
# @return [Boolean]
|
|
20410
|
+
attr_accessor :negate
|
|
20411
|
+
alias_method :negate?, :negate
|
|
20412
|
+
|
|
20413
|
+
# Operator to apply to the filter. If not set, then EQUAL will be used.
|
|
20414
|
+
# Corresponds to the JSON property `op`
|
|
20415
|
+
# @return [String]
|
|
20416
|
+
attr_accessor :op
|
|
20417
|
+
|
|
20418
|
+
# Memory metadata.
|
|
20419
|
+
# Corresponds to the JSON property `value`
|
|
20420
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryMetadataValue]
|
|
20421
|
+
attr_accessor :value
|
|
20422
|
+
|
|
20423
|
+
def initialize(**args)
|
|
20424
|
+
update!(**args)
|
|
20425
|
+
end
|
|
20426
|
+
|
|
20427
|
+
# Update properties of this object
|
|
20428
|
+
def update!(**args)
|
|
20429
|
+
@key = args[:key] if args.key?(:key)
|
|
20430
|
+
@negate = args[:negate] if args.key?(:negate)
|
|
20431
|
+
@op = args[:op] if args.key?(:op)
|
|
20432
|
+
@value = args[:value] if args.key?(:value)
|
|
20433
|
+
end
|
|
20434
|
+
end
|
|
20435
|
+
|
|
20436
|
+
# Memory metadata.
|
|
20437
|
+
class GoogleCloudAiplatformV1MemoryMetadataValue
|
|
20438
|
+
include Google::Apis::Core::Hashable
|
|
20439
|
+
|
|
20440
|
+
# Boolean value.
|
|
20441
|
+
# Corresponds to the JSON property `boolValue`
|
|
20442
|
+
# @return [Boolean]
|
|
20443
|
+
attr_accessor :bool_value
|
|
20444
|
+
alias_method :bool_value?, :bool_value
|
|
20445
|
+
|
|
20446
|
+
# Double value.
|
|
20447
|
+
# Corresponds to the JSON property `doubleValue`
|
|
20448
|
+
# @return [Float]
|
|
20449
|
+
attr_accessor :double_value
|
|
20450
|
+
|
|
20451
|
+
# String value.
|
|
20452
|
+
# Corresponds to the JSON property `stringValue`
|
|
20453
|
+
# @return [String]
|
|
20454
|
+
attr_accessor :string_value
|
|
20455
|
+
|
|
20456
|
+
# Timestamp value. When filtering on timestamp values, only the seconds field
|
|
20457
|
+
# will be compared.
|
|
20458
|
+
# Corresponds to the JSON property `timestampValue`
|
|
20459
|
+
# @return [String]
|
|
20460
|
+
attr_accessor :timestamp_value
|
|
20461
|
+
|
|
20462
|
+
def initialize(**args)
|
|
20463
|
+
update!(**args)
|
|
20464
|
+
end
|
|
20465
|
+
|
|
20466
|
+
# Update properties of this object
|
|
20467
|
+
def update!(**args)
|
|
20468
|
+
@bool_value = args[:bool_value] if args.key?(:bool_value)
|
|
20469
|
+
@double_value = args[:double_value] if args.key?(:double_value)
|
|
20470
|
+
@string_value = args[:string_value] if args.key?(:string_value)
|
|
20471
|
+
@timestamp_value = args[:timestamp_value] if args.key?(:timestamp_value)
|
|
20472
|
+
end
|
|
20473
|
+
end
|
|
20474
|
+
|
|
20203
20475
|
# A revision of a Memory.
|
|
20204
20476
|
class GoogleCloudAiplatformV1MemoryRevision
|
|
20205
20477
|
include Google::Apis::Core::Hashable
|
|
@@ -20308,6 +20580,27 @@ module Google
|
|
|
20308
20580
|
end
|
|
20309
20581
|
end
|
|
20310
20582
|
|
|
20583
|
+
# Metadata for a chunk.
|
|
20584
|
+
class GoogleCloudAiplatformV1Metadata
|
|
20585
|
+
include Google::Apis::Core::Hashable
|
|
20586
|
+
|
|
20587
|
+
# Optional. Attributes attached to the data. The keys have semantic conventions
|
|
20588
|
+
# and the consumers of the attributes should know how to deserialize the value
|
|
20589
|
+
# bytes based on the keys.
|
|
20590
|
+
# Corresponds to the JSON property `attributes`
|
|
20591
|
+
# @return [Hash<String,String>]
|
|
20592
|
+
attr_accessor :attributes
|
|
20593
|
+
|
|
20594
|
+
def initialize(**args)
|
|
20595
|
+
update!(**args)
|
|
20596
|
+
end
|
|
20597
|
+
|
|
20598
|
+
# Update properties of this object
|
|
20599
|
+
def update!(**args)
|
|
20600
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
20601
|
+
end
|
|
20602
|
+
end
|
|
20603
|
+
|
|
20311
20604
|
# Instance of a general MetadataSchema.
|
|
20312
20605
|
class GoogleCloudAiplatformV1MetadataSchema
|
|
20313
20606
|
include Google::Apis::Core::Hashable
|
|
@@ -20383,8 +20676,8 @@ module Google
|
|
|
20383
20676
|
# @return [String]
|
|
20384
20677
|
attr_accessor :description
|
|
20385
20678
|
|
|
20386
|
-
# Represents a customer-managed encryption key
|
|
20387
|
-
#
|
|
20679
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
20680
|
+
# to a Vertex AI resource.
|
|
20388
20681
|
# Corresponds to the JSON property `encryptionSpec`
|
|
20389
20682
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
20390
20683
|
attr_accessor :encryption_spec
|
|
@@ -21182,8 +21475,8 @@ module Google
|
|
|
21182
21475
|
# @return [String]
|
|
21183
21476
|
attr_accessor :display_name
|
|
21184
21477
|
|
|
21185
|
-
# Represents a customer-managed encryption key
|
|
21186
|
-
#
|
|
21478
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
21479
|
+
# to a Vertex AI resource.
|
|
21187
21480
|
# Corresponds to the JSON property `encryptionSpec`
|
|
21188
21481
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
21189
21482
|
attr_accessor :encryption_spec
|
|
@@ -21856,8 +22149,8 @@ module Google
|
|
|
21856
22149
|
attr_accessor :enable_monitoring_pipeline_logs
|
|
21857
22150
|
alias_method :enable_monitoring_pipeline_logs?, :enable_monitoring_pipeline_logs
|
|
21858
22151
|
|
|
21859
|
-
# Represents a customer-managed encryption key
|
|
21860
|
-
#
|
|
22152
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
22153
|
+
# to a Vertex AI resource.
|
|
21861
22154
|
# Corresponds to the JSON property `encryptionSpec`
|
|
21862
22155
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
21863
22156
|
attr_accessor :encryption_spec
|
|
@@ -23131,8 +23424,8 @@ module Google
|
|
|
23131
23424
|
attr_accessor :enable_restricted_image_training
|
|
23132
23425
|
alias_method :enable_restricted_image_training?, :enable_restricted_image_training
|
|
23133
23426
|
|
|
23134
|
-
# Represents a customer-managed encryption key
|
|
23135
|
-
#
|
|
23427
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
23428
|
+
# to a Vertex AI resource.
|
|
23136
23429
|
# Corresponds to the JSON property `encryptionSpec`
|
|
23137
23430
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
23138
23431
|
attr_accessor :encryption_spec
|
|
@@ -24052,8 +24345,8 @@ module Google
|
|
|
24052
24345
|
# @return [String]
|
|
24053
24346
|
attr_accessor :display_name
|
|
24054
24347
|
|
|
24055
|
-
# Represents a customer-managed encryption key
|
|
24056
|
-
#
|
|
24348
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
24349
|
+
# to a Vertex AI resource.
|
|
24057
24350
|
# Corresponds to the JSON property `encryptionSpec`
|
|
24058
24351
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
24059
24352
|
attr_accessor :encryption_spec
|
|
@@ -24383,8 +24676,8 @@ module Google
|
|
|
24383
24676
|
# @return [String]
|
|
24384
24677
|
attr_accessor :display_name
|
|
24385
24678
|
|
|
24386
|
-
# Represents a customer-managed encryption key
|
|
24387
|
-
#
|
|
24679
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
24680
|
+
# to a Vertex AI resource.
|
|
24388
24681
|
# Corresponds to the JSON property `encryptionSpec`
|
|
24389
24682
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
24390
24683
|
attr_accessor :encryption_spec
|
|
@@ -24597,8 +24890,8 @@ module Google
|
|
|
24597
24890
|
# @return [String]
|
|
24598
24891
|
attr_accessor :display_name
|
|
24599
24892
|
|
|
24600
|
-
# Represents a customer-managed encryption key
|
|
24601
|
-
#
|
|
24893
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
24894
|
+
# to a Vertex AI resource.
|
|
24602
24895
|
# Corresponds to the JSON property `encryptionSpec`
|
|
24603
24896
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
24604
24897
|
attr_accessor :encryption_spec
|
|
@@ -25510,8 +25803,8 @@ module Google
|
|
|
25510
25803
|
# @return [String]
|
|
25511
25804
|
attr_accessor :display_name
|
|
25512
25805
|
|
|
25513
|
-
# Represents a customer-managed encryption key
|
|
25514
|
-
#
|
|
25806
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
25807
|
+
# to a Vertex AI resource.
|
|
25515
25808
|
# Corresponds to the JSON property `encryptionSpec`
|
|
25516
25809
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
25517
25810
|
attr_accessor :encryption_spec
|
|
@@ -25653,8 +25946,8 @@ module Google
|
|
|
25653
25946
|
# @return [String]
|
|
25654
25947
|
attr_accessor :display_name
|
|
25655
25948
|
|
|
25656
|
-
# Represents a customer-managed encryption key
|
|
25657
|
-
#
|
|
25949
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
25950
|
+
# to a Vertex AI resource.
|
|
25658
25951
|
# Corresponds to the JSON property `encryptionSpec`
|
|
25659
25952
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
25660
25953
|
attr_accessor :encryption_spec
|
|
@@ -28794,8 +29087,8 @@ module Google
|
|
|
28794
29087
|
# @return [String]
|
|
28795
29088
|
attr_accessor :display_name
|
|
28796
29089
|
|
|
28797
|
-
# Represents a customer-managed encryption key
|
|
28798
|
-
#
|
|
29090
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
29091
|
+
# to a Vertex AI resource.
|
|
28799
29092
|
# Corresponds to the JSON property `encryptionSpec`
|
|
28800
29093
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
28801
29094
|
attr_accessor :encryption_spec
|
|
@@ -30079,8 +30372,8 @@ module Google
|
|
|
30079
30372
|
# @return [String]
|
|
30080
30373
|
attr_accessor :display_name
|
|
30081
30374
|
|
|
30082
|
-
# Represents a customer-managed encryption key
|
|
30083
|
-
#
|
|
30375
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
30376
|
+
# to a Vertex AI resource.
|
|
30084
30377
|
# Corresponds to the JSON property `encryptionSpec`
|
|
30085
30378
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
30086
30379
|
attr_accessor :encryption_spec
|
|
@@ -30611,13 +30904,15 @@ module Google
|
|
|
30611
30904
|
# Optional. The Python module to load as the entrypoint, specified as a fully
|
|
30612
30905
|
# qualified module name. For example: path.to.agent. If not specified, defaults
|
|
30613
30906
|
# to "agent". The project root will be added to Python sys.path, allowing
|
|
30614
|
-
# imports to be specified relative to the root.
|
|
30907
|
+
# imports to be specified relative to the root. This field should not be set if
|
|
30908
|
+
# the source is `agent_config_source`.
|
|
30615
30909
|
# Corresponds to the JSON property `entrypointModule`
|
|
30616
30910
|
# @return [String]
|
|
30617
30911
|
attr_accessor :entrypoint_module
|
|
30618
30912
|
|
|
30619
30913
|
# Optional. The name of the callable object within the `entrypoint_module` to
|
|
30620
|
-
# use as the application If not specified, defaults to "root_agent".
|
|
30914
|
+
# use as the application If not specified, defaults to "root_agent". This field
|
|
30915
|
+
# should not be set if the source is `agent_config_source`.
|
|
30621
30916
|
# Corresponds to the JSON property `entrypointObject`
|
|
30622
30917
|
# @return [String]
|
|
30623
30918
|
attr_accessor :entrypoint_object
|
|
@@ -31269,6 +31564,18 @@ module Google
|
|
|
31269
31564
|
# @return [String]
|
|
31270
31565
|
attr_accessor :filter
|
|
31271
31566
|
|
|
31567
|
+
# Optional. Metadata filters that will be applied to the retrieved memories' `
|
|
31568
|
+
# metadata` using OR logic. Filters are defined using disjunctive normal form (
|
|
31569
|
+
# OR of ANDs). For example: `filter_groups: [`filters: [`key: "author", value: `
|
|
31570
|
+
# string_value: "agent 123"`, op: EQUAL`]`, `filters: [`key: "label", value: `
|
|
31571
|
+
# string_value: "travel"`, op: EQUAL`, `key: "author", value: `string_value: "
|
|
31572
|
+
# agent 321"`, op: EQUAL`]`]` would be equivalent to the logical expression: `(
|
|
31573
|
+
# metadata.author = "agent 123" OR (metadata.label = "travel" AND metadata.
|
|
31574
|
+
# author = "agent 321"))`.
|
|
31575
|
+
# Corresponds to the JSON property `filterGroups`
|
|
31576
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryConjunctionFilter>]
|
|
31577
|
+
attr_accessor :filter_groups
|
|
31578
|
+
|
|
31272
31579
|
# Required. The scope of the memories to retrieve. A memory must have exactly
|
|
31273
31580
|
# the same scope (`Memory.scope`) as the scope provided here to be retrieved (
|
|
31274
31581
|
# same keys and values). Order does not matter, but it is case-sensitive.
|
|
@@ -31293,6 +31600,7 @@ module Google
|
|
|
31293
31600
|
# Update properties of this object
|
|
31294
31601
|
def update!(**args)
|
|
31295
31602
|
@filter = args[:filter] if args.key?(:filter)
|
|
31603
|
+
@filter_groups = args[:filter_groups] if args.key?(:filter_groups)
|
|
31296
31604
|
@scope = args[:scope] if args.key?(:scope)
|
|
31297
31605
|
@similarity_search_params = args[:similarity_search_params] if args.key?(:similarity_search_params)
|
|
31298
31606
|
@simple_retrieval_params = args[:simple_retrieval_params] if args.key?(:simple_retrieval_params)
|
|
@@ -32139,6 +32447,153 @@ module Google
|
|
|
32139
32447
|
end
|
|
32140
32448
|
end
|
|
32141
32449
|
|
|
32450
|
+
# SandboxEnvironment is a containerized environment that provides a customizable
|
|
32451
|
+
# secure execution runtime for AI agents.
|
|
32452
|
+
class GoogleCloudAiplatformV1SandboxEnvironment
|
|
32453
|
+
include Google::Apis::Core::Hashable
|
|
32454
|
+
|
|
32455
|
+
# The connection information of the SandboxEnvironment.
|
|
32456
|
+
# Corresponds to the JSON property `connectionInfo`
|
|
32457
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo]
|
|
32458
|
+
attr_accessor :connection_info
|
|
32459
|
+
|
|
32460
|
+
# Output only. The timestamp when this SandboxEnvironment was created.
|
|
32461
|
+
# Corresponds to the JSON property `createTime`
|
|
32462
|
+
# @return [String]
|
|
32463
|
+
attr_accessor :create_time
|
|
32464
|
+
|
|
32465
|
+
# Required. The display name of the SandboxEnvironment.
|
|
32466
|
+
# Corresponds to the JSON property `displayName`
|
|
32467
|
+
# @return [String]
|
|
32468
|
+
attr_accessor :display_name
|
|
32469
|
+
|
|
32470
|
+
# Optional. Timestamp in UTC of when this SandboxEnvironment is considered
|
|
32471
|
+
# expired. This is *always* provided on output, regardless of what `expiration`
|
|
32472
|
+
# was sent on input.
|
|
32473
|
+
# Corresponds to the JSON property `expireTime`
|
|
32474
|
+
# @return [String]
|
|
32475
|
+
attr_accessor :expire_time
|
|
32476
|
+
|
|
32477
|
+
# Identifier. The name of the SandboxEnvironment.
|
|
32478
|
+
# Corresponds to the JSON property `name`
|
|
32479
|
+
# @return [String]
|
|
32480
|
+
attr_accessor :name
|
|
32481
|
+
|
|
32482
|
+
# The specification of a SandboxEnvironment.
|
|
32483
|
+
# Corresponds to the JSON property `spec`
|
|
32484
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentSpec]
|
|
32485
|
+
attr_accessor :spec
|
|
32486
|
+
|
|
32487
|
+
# Output only. The runtime state of the SandboxEnvironment.
|
|
32488
|
+
# Corresponds to the JSON property `state`
|
|
32489
|
+
# @return [String]
|
|
32490
|
+
attr_accessor :state
|
|
32491
|
+
|
|
32492
|
+
# Optional. Input only. The TTL for the sandbox environment. The expiration time
|
|
32493
|
+
# is computed: now + TTL.
|
|
32494
|
+
# Corresponds to the JSON property `ttl`
|
|
32495
|
+
# @return [String]
|
|
32496
|
+
attr_accessor :ttl
|
|
32497
|
+
|
|
32498
|
+
# Output only. The timestamp when this SandboxEnvironment was most recently
|
|
32499
|
+
# updated.
|
|
32500
|
+
# Corresponds to the JSON property `updateTime`
|
|
32501
|
+
# @return [String]
|
|
32502
|
+
attr_accessor :update_time
|
|
32503
|
+
|
|
32504
|
+
def initialize(**args)
|
|
32505
|
+
update!(**args)
|
|
32506
|
+
end
|
|
32507
|
+
|
|
32508
|
+
# Update properties of this object
|
|
32509
|
+
def update!(**args)
|
|
32510
|
+
@connection_info = args[:connection_info] if args.key?(:connection_info)
|
|
32511
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
32512
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
32513
|
+
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
|
32514
|
+
@name = args[:name] if args.key?(:name)
|
|
32515
|
+
@spec = args[:spec] if args.key?(:spec)
|
|
32516
|
+
@state = args[:state] if args.key?(:state)
|
|
32517
|
+
@ttl = args[:ttl] if args.key?(:ttl)
|
|
32518
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
32519
|
+
end
|
|
32520
|
+
end
|
|
32521
|
+
|
|
32522
|
+
# The connection information of the SandboxEnvironment.
|
|
32523
|
+
class GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo
|
|
32524
|
+
include Google::Apis::Core::Hashable
|
|
32525
|
+
|
|
32526
|
+
# Output only. The hostname of the load balancer.
|
|
32527
|
+
# Corresponds to the JSON property `loadBalancerHostname`
|
|
32528
|
+
# @return [String]
|
|
32529
|
+
attr_accessor :load_balancer_hostname
|
|
32530
|
+
|
|
32531
|
+
# Output only. The IP address of the load balancer.
|
|
32532
|
+
# Corresponds to the JSON property `loadBalancerIp`
|
|
32533
|
+
# @return [String]
|
|
32534
|
+
attr_accessor :load_balancer_ip
|
|
32535
|
+
|
|
32536
|
+
# Output only. The internal IP address of the SandboxEnvironment.
|
|
32537
|
+
# Corresponds to the JSON property `sandboxInternalIp`
|
|
32538
|
+
# @return [String]
|
|
32539
|
+
attr_accessor :sandbox_internal_ip
|
|
32540
|
+
|
|
32541
|
+
def initialize(**args)
|
|
32542
|
+
update!(**args)
|
|
32543
|
+
end
|
|
32544
|
+
|
|
32545
|
+
# Update properties of this object
|
|
32546
|
+
def update!(**args)
|
|
32547
|
+
@load_balancer_hostname = args[:load_balancer_hostname] if args.key?(:load_balancer_hostname)
|
|
32548
|
+
@load_balancer_ip = args[:load_balancer_ip] if args.key?(:load_balancer_ip)
|
|
32549
|
+
@sandbox_internal_ip = args[:sandbox_internal_ip] if args.key?(:sandbox_internal_ip)
|
|
32550
|
+
end
|
|
32551
|
+
end
|
|
32552
|
+
|
|
32553
|
+
# The specification of a SandboxEnvironment.
|
|
32554
|
+
class GoogleCloudAiplatformV1SandboxEnvironmentSpec
|
|
32555
|
+
include Google::Apis::Core::Hashable
|
|
32556
|
+
|
|
32557
|
+
# The code execution environment with customized settings.
|
|
32558
|
+
# Corresponds to the JSON property `codeExecutionEnvironment`
|
|
32559
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentSpecCodeExecutionEnvironment]
|
|
32560
|
+
attr_accessor :code_execution_environment
|
|
32561
|
+
|
|
32562
|
+
def initialize(**args)
|
|
32563
|
+
update!(**args)
|
|
32564
|
+
end
|
|
32565
|
+
|
|
32566
|
+
# Update properties of this object
|
|
32567
|
+
def update!(**args)
|
|
32568
|
+
@code_execution_environment = args[:code_execution_environment] if args.key?(:code_execution_environment)
|
|
32569
|
+
end
|
|
32570
|
+
end
|
|
32571
|
+
|
|
32572
|
+
# The code execution environment with customized settings.
|
|
32573
|
+
class GoogleCloudAiplatformV1SandboxEnvironmentSpecCodeExecutionEnvironment
|
|
32574
|
+
include Google::Apis::Core::Hashable
|
|
32575
|
+
|
|
32576
|
+
# The coding language supported in this environment.
|
|
32577
|
+
# Corresponds to the JSON property `codeLanguage`
|
|
32578
|
+
# @return [String]
|
|
32579
|
+
attr_accessor :code_language
|
|
32580
|
+
|
|
32581
|
+
# The machine config of the code execution environment.
|
|
32582
|
+
# Corresponds to the JSON property `machineConfig`
|
|
32583
|
+
# @return [String]
|
|
32584
|
+
attr_accessor :machine_config
|
|
32585
|
+
|
|
32586
|
+
def initialize(**args)
|
|
32587
|
+
update!(**args)
|
|
32588
|
+
end
|
|
32589
|
+
|
|
32590
|
+
# Update properties of this object
|
|
32591
|
+
def update!(**args)
|
|
32592
|
+
@code_language = args[:code_language] if args.key?(:code_language)
|
|
32593
|
+
@machine_config = args[:machine_config] if args.key?(:machine_config)
|
|
32594
|
+
end
|
|
32595
|
+
end
|
|
32596
|
+
|
|
32142
32597
|
# A SavedQuery is a view of the dataset. It references a subset of annotations
|
|
32143
32598
|
# by problem type and filters.
|
|
32144
32599
|
class GoogleCloudAiplatformV1SavedQuery
|
|
@@ -32470,154 +32925,166 @@ module Google
|
|
|
32470
32925
|
end
|
|
32471
32926
|
end
|
|
32472
32927
|
|
|
32473
|
-
#
|
|
32474
|
-
#
|
|
32475
|
-
# schema-object). More fields may be added in the future as needed.
|
|
32928
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
32929
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
32476
32930
|
class GoogleCloudAiplatformV1Schema
|
|
32477
32931
|
include Google::Apis::Core::Hashable
|
|
32478
32932
|
|
|
32479
|
-
# Optional.
|
|
32480
|
-
# additional properties
|
|
32933
|
+
# Optional. If `type` is `OBJECT`, specifies how to handle properties not
|
|
32934
|
+
# defined in `properties`. If it is a boolean `false`, no additional properties
|
|
32935
|
+
# are allowed. If it is a schema, additional properties are allowed if they
|
|
32936
|
+
# conform to the schema.
|
|
32481
32937
|
# Corresponds to the JSON property `additionalProperties`
|
|
32482
32938
|
# @return [Object]
|
|
32483
32939
|
attr_accessor :additional_properties
|
|
32484
32940
|
|
|
32485
|
-
# Optional. The
|
|
32486
|
-
# subschemas in
|
|
32941
|
+
# Optional. The instance must be valid against any (one or more) of the
|
|
32942
|
+
# subschemas listed in `any_of`.
|
|
32487
32943
|
# Corresponds to the JSON property `anyOf`
|
|
32488
32944
|
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema>]
|
|
32489
32945
|
attr_accessor :any_of
|
|
32490
32946
|
|
|
32491
|
-
# Optional. Default value
|
|
32947
|
+
# Optional. Default value to use if the field is not specified.
|
|
32492
32948
|
# Corresponds to the JSON property `default`
|
|
32493
32949
|
# @return [Object]
|
|
32494
32950
|
attr_accessor :default
|
|
32495
32951
|
|
|
32496
|
-
# Optional.
|
|
32497
|
-
# the schema.
|
|
32952
|
+
# Optional. `defs` provides a map of schema definitions that can be reused by `
|
|
32953
|
+
# ref` elsewhere in the schema. Only allowed at root level of the schema.
|
|
32498
32954
|
# Corresponds to the JSON property `defs`
|
|
32499
32955
|
# @return [Hash<String,Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema>]
|
|
32500
32956
|
attr_accessor :defs
|
|
32501
32957
|
|
|
32502
|
-
# Optional.
|
|
32958
|
+
# Optional. Description of the schema.
|
|
32503
32959
|
# Corresponds to the JSON property `description`
|
|
32504
32960
|
# @return [String]
|
|
32505
32961
|
attr_accessor :description
|
|
32506
32962
|
|
|
32507
|
-
# Optional. Possible values of the
|
|
32508
|
-
#
|
|
32509
|
-
#
|
|
32510
|
-
#
|
|
32963
|
+
# Optional. Possible values of the field. This field can be used to restrict a
|
|
32964
|
+
# value to a fixed set of values. To mark a field as an enum, set `format` to `
|
|
32965
|
+
# enum` and provide the list of possible values in `enum`. For example: 1. To
|
|
32966
|
+
# define directions: ``type:STRING, format:enum, enum:["EAST", "NORTH", "SOUTH",
|
|
32967
|
+
# "WEST"]`` 2. To define apartment numbers: ``type:INTEGER, format:enum, enum:["
|
|
32968
|
+
# 101", "201", "301"]``
|
|
32511
32969
|
# Corresponds to the JSON property `enum`
|
|
32512
32970
|
# @return [Array<String>]
|
|
32513
32971
|
attr_accessor :enum
|
|
32514
32972
|
|
|
32515
|
-
# Optional. Example of
|
|
32516
|
-
# root.
|
|
32973
|
+
# Optional. Example of an instance of this schema.
|
|
32517
32974
|
# Corresponds to the JSON property `example`
|
|
32518
32975
|
# @return [Object]
|
|
32519
32976
|
attr_accessor :example
|
|
32520
32977
|
|
|
32521
|
-
# Optional. The format of the data.
|
|
32522
|
-
#
|
|
32523
|
-
#
|
|
32978
|
+
# Optional. The format of the data. For `NUMBER` type, format can be `float` or `
|
|
32979
|
+
# double`. For `INTEGER` type, format can be `int32` or `int64`. For `STRING`
|
|
32980
|
+
# type, format can be `email`, `byte`, `date`, `date-time`, `password`, and
|
|
32981
|
+
# other formats to further refine the data type.
|
|
32524
32982
|
# Corresponds to the JSON property `format`
|
|
32525
32983
|
# @return [String]
|
|
32526
32984
|
attr_accessor :format
|
|
32527
32985
|
|
|
32528
|
-
#
|
|
32529
|
-
#
|
|
32530
|
-
# schema-object). More fields may be added in the future as needed.
|
|
32986
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
32987
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
32531
32988
|
# Corresponds to the JSON property `items`
|
|
32532
32989
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
|
32533
32990
|
attr_accessor :items
|
|
32534
32991
|
|
|
32535
|
-
# Optional.
|
|
32992
|
+
# Optional. If type is `ARRAY`, `max_items` specifies the maximum number of
|
|
32993
|
+
# items in an array.
|
|
32536
32994
|
# Corresponds to the JSON property `maxItems`
|
|
32537
32995
|
# @return [Fixnum]
|
|
32538
32996
|
attr_accessor :max_items
|
|
32539
32997
|
|
|
32540
|
-
# Optional.
|
|
32998
|
+
# Optional. If type is `STRING`, `max_length` specifies the maximum length of
|
|
32999
|
+
# the string.
|
|
32541
33000
|
# Corresponds to the JSON property `maxLength`
|
|
32542
33001
|
# @return [Fixnum]
|
|
32543
33002
|
attr_accessor :max_length
|
|
32544
33003
|
|
|
32545
|
-
# Optional.
|
|
33004
|
+
# Optional. If type is `OBJECT`, `max_properties` specifies the maximum number
|
|
33005
|
+
# of properties that can be provided.
|
|
32546
33006
|
# Corresponds to the JSON property `maxProperties`
|
|
32547
33007
|
# @return [Fixnum]
|
|
32548
33008
|
attr_accessor :max_properties
|
|
32549
33009
|
|
|
32550
|
-
# Optional.
|
|
33010
|
+
# Optional. If type is `INTEGER` or `NUMBER`, `maximum` specifies the maximum
|
|
33011
|
+
# allowed value.
|
|
32551
33012
|
# Corresponds to the JSON property `maximum`
|
|
32552
33013
|
# @return [Float]
|
|
32553
33014
|
attr_accessor :maximum
|
|
32554
33015
|
|
|
32555
|
-
# Optional.
|
|
33016
|
+
# Optional. If type is `ARRAY`, `min_items` specifies the minimum number of
|
|
33017
|
+
# items in an array.
|
|
32556
33018
|
# Corresponds to the JSON property `minItems`
|
|
32557
33019
|
# @return [Fixnum]
|
|
32558
33020
|
attr_accessor :min_items
|
|
32559
33021
|
|
|
32560
|
-
# Optional.
|
|
33022
|
+
# Optional. If type is `STRING`, `min_length` specifies the minimum length of
|
|
33023
|
+
# the string.
|
|
32561
33024
|
# Corresponds to the JSON property `minLength`
|
|
32562
33025
|
# @return [Fixnum]
|
|
32563
33026
|
attr_accessor :min_length
|
|
32564
33027
|
|
|
32565
|
-
# Optional.
|
|
33028
|
+
# Optional. If type is `OBJECT`, `min_properties` specifies the minimum number
|
|
33029
|
+
# of properties that can be provided.
|
|
32566
33030
|
# Corresponds to the JSON property `minProperties`
|
|
32567
33031
|
# @return [Fixnum]
|
|
32568
33032
|
attr_accessor :min_properties
|
|
32569
33033
|
|
|
32570
|
-
# Optional.
|
|
32571
|
-
#
|
|
33034
|
+
# Optional. If type is `INTEGER` or `NUMBER`, `minimum` specifies the minimum
|
|
33035
|
+
# allowed value.
|
|
32572
33036
|
# Corresponds to the JSON property `minimum`
|
|
32573
33037
|
# @return [Float]
|
|
32574
33038
|
attr_accessor :minimum
|
|
32575
33039
|
|
|
32576
|
-
# Optional. Indicates if the value
|
|
33040
|
+
# Optional. Indicates if the value of this field can be null.
|
|
32577
33041
|
# Corresponds to the JSON property `nullable`
|
|
32578
33042
|
# @return [Boolean]
|
|
32579
33043
|
attr_accessor :nullable
|
|
32580
33044
|
alias_method :nullable?, :nullable
|
|
32581
33045
|
|
|
32582
|
-
# Optional.
|
|
32583
|
-
#
|
|
33046
|
+
# Optional. If type is `STRING`, `pattern` specifies a regular expression that
|
|
33047
|
+
# the string must match.
|
|
32584
33048
|
# Corresponds to the JSON property `pattern`
|
|
32585
33049
|
# @return [String]
|
|
32586
33050
|
attr_accessor :pattern
|
|
32587
33051
|
|
|
32588
|
-
# Optional.
|
|
33052
|
+
# Optional. If type is `OBJECT`, `properties` is a map of property names to
|
|
33053
|
+
# schema definitions for each property of the object.
|
|
32589
33054
|
# Corresponds to the JSON property `properties`
|
|
32590
33055
|
# @return [Hash<String,Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema>]
|
|
32591
33056
|
attr_accessor :properties
|
|
32592
33057
|
|
|
32593
|
-
# Optional.
|
|
32594
|
-
#
|
|
33058
|
+
# Optional. Order of properties displayed or used where order matters. This is
|
|
33059
|
+
# not a standard field in OpenAPI specification, but can be used to control the
|
|
33060
|
+
# order of properties.
|
|
32595
33061
|
# Corresponds to the JSON property `propertyOrdering`
|
|
32596
33062
|
# @return [Array<String>]
|
|
32597
33063
|
attr_accessor :property_ordering
|
|
32598
33064
|
|
|
32599
|
-
# Optional. Allows
|
|
32600
|
-
# a valid reference to a
|
|
32601
|
-
# schema defines a reference to a schema node named "Pet": type:
|
|
32602
|
-
# properties: pet: ref: #/defs/Pet defs: Pet: type: object properties:
|
|
32603
|
-
# type: string The value of the "pet" property is a reference to the
|
|
32604
|
-
# named "Pet". See details in https://json-schema.org/understanding-
|
|
32605
|
-
# structuring
|
|
33065
|
+
# Optional. Allows referencing another schema definition to use in place of this
|
|
33066
|
+
# schema. The value must be a valid reference to a schema in `defs`. For example,
|
|
33067
|
+
# the following schema defines a reference to a schema node named "Pet": type:
|
|
33068
|
+
# object properties: pet: ref: #/defs/Pet defs: Pet: type: object properties:
|
|
33069
|
+
# name: type: string The value of the "pet" property is a reference to the
|
|
33070
|
+
# schema node named "Pet". See details in https://json-schema.org/understanding-
|
|
33071
|
+
# json-schema/structuring
|
|
32606
33072
|
# Corresponds to the JSON property `ref`
|
|
32607
33073
|
# @return [String]
|
|
32608
33074
|
attr_accessor :ref
|
|
32609
33075
|
|
|
32610
|
-
# Optional.
|
|
33076
|
+
# Optional. If type is `OBJECT`, `required` lists the names of properties that
|
|
33077
|
+
# must be present.
|
|
32611
33078
|
# Corresponds to the JSON property `required`
|
|
32612
33079
|
# @return [Array<String>]
|
|
32613
33080
|
attr_accessor :required
|
|
32614
33081
|
|
|
32615
|
-
# Optional.
|
|
33082
|
+
# Optional. Title for the schema.
|
|
32616
33083
|
# Corresponds to the JSON property `title`
|
|
32617
33084
|
# @return [String]
|
|
32618
33085
|
attr_accessor :title
|
|
32619
33086
|
|
|
32620
|
-
# Optional.
|
|
33087
|
+
# Optional. Data type of the schema field.
|
|
32621
33088
|
# Corresponds to the JSON property `type`
|
|
32622
33089
|
# @return [String]
|
|
32623
33090
|
attr_accessor :type
|
|
@@ -35400,6 +35867,11 @@ module Google
|
|
|
35400
35867
|
# @return [String]
|
|
35401
35868
|
attr_accessor :code_repository_state
|
|
35402
35869
|
|
|
35870
|
+
# Optional. Framework used to build the application.
|
|
35871
|
+
# Corresponds to the JSON property `framework`
|
|
35872
|
+
# @return [String]
|
|
35873
|
+
attr_accessor :framework
|
|
35874
|
+
|
|
35403
35875
|
# Linked resources attached to the application by the user.
|
|
35404
35876
|
# Corresponds to the JSON property `linkedResources`
|
|
35405
35877
|
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaPromptSpecAppBuilderDataLinkedResource>]
|
|
@@ -35412,6 +35884,7 @@ module Google
|
|
|
35412
35884
|
# Update properties of this object
|
|
35413
35885
|
def update!(**args)
|
|
35414
35886
|
@code_repository_state = args[:code_repository_state] if args.key?(:code_repository_state)
|
|
35887
|
+
@framework = args[:framework] if args.key?(:framework)
|
|
35415
35888
|
@linked_resources = args[:linked_resources] if args.key?(:linked_resources)
|
|
35416
35889
|
end
|
|
35417
35890
|
end
|
|
@@ -39120,17 +39593,19 @@ module Google
|
|
|
39120
39593
|
end
|
|
39121
39594
|
end
|
|
39122
39595
|
|
|
39123
|
-
#
|
|
39124
|
-
#
|
|
39596
|
+
# Represents a 2D point in the image. Vertex coordinates are normalized to be
|
|
39597
|
+
# relative to the original image dimensions and range from 0 to 1. The origin of
|
|
39598
|
+
# the coordinate system (0,0) is the top-left corner of the image. x increases
|
|
39599
|
+
# to the right, and y increases to the bottom.
|
|
39125
39600
|
class GoogleCloudAiplatformV1SchemaVertex
|
|
39126
39601
|
include Google::Apis::Core::Hashable
|
|
39127
39602
|
|
|
39128
|
-
# X coordinate.
|
|
39603
|
+
# X coordinate of the vertex, normalized to [0.0, 1.0].
|
|
39129
39604
|
# Corresponds to the JSON property `x`
|
|
39130
39605
|
# @return [Float]
|
|
39131
39606
|
attr_accessor :x
|
|
39132
39607
|
|
|
39133
|
-
# Y coordinate.
|
|
39608
|
+
# Y coordinate of the vertex, normalized to [0.0, 1.0].
|
|
39134
39609
|
# Corresponds to the JSON property `y`
|
|
39135
39610
|
# @return [Float]
|
|
39136
39611
|
attr_accessor :y
|
|
@@ -42427,8 +42902,8 @@ module Google
|
|
|
42427
42902
|
# @return [String]
|
|
42428
42903
|
attr_accessor :display_name
|
|
42429
42904
|
|
|
42430
|
-
# Represents a customer-managed encryption key
|
|
42431
|
-
#
|
|
42905
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
42906
|
+
# to a Vertex AI resource.
|
|
42432
42907
|
# Corresponds to the JSON property `encryptionSpec`
|
|
42433
42908
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
42434
42909
|
attr_accessor :encryption_spec
|
|
@@ -43067,6 +43542,12 @@ module Google
|
|
|
43067
43542
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleSearchRetrieval]
|
|
43068
43543
|
attr_accessor :google_search_retrieval
|
|
43069
43544
|
|
|
43545
|
+
# ParallelAiSearch tool type. A tool that uses the Parallel.ai search engine for
|
|
43546
|
+
# grounding.
|
|
43547
|
+
# Corresponds to the JSON property `parallelAiSearch`
|
|
43548
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolParallelAiSearch]
|
|
43549
|
+
attr_accessor :parallel_ai_search
|
|
43550
|
+
|
|
43070
43551
|
# Defines a retrieval tool that model can call to access external knowledge.
|
|
43071
43552
|
# Corresponds to the JSON property `retrieval`
|
|
43072
43553
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Retrieval]
|
|
@@ -43090,6 +43571,7 @@ module Google
|
|
|
43090
43571
|
@google_maps = args[:google_maps] if args.key?(:google_maps)
|
|
43091
43572
|
@google_search = args[:google_search] if args.key?(:google_search)
|
|
43092
43573
|
@google_search_retrieval = args[:google_search_retrieval] if args.key?(:google_search_retrieval)
|
|
43574
|
+
@parallel_ai_search = args[:parallel_ai_search] if args.key?(:parallel_ai_search)
|
|
43093
43575
|
@retrieval = args[:retrieval] if args.key?(:retrieval)
|
|
43094
43576
|
@url_context = args[:url_context] if args.key?(:url_context)
|
|
43095
43577
|
end
|
|
@@ -43420,6 +43902,42 @@ module Google
|
|
|
43420
43902
|
end
|
|
43421
43903
|
end
|
|
43422
43904
|
|
|
43905
|
+
# ParallelAiSearch tool type. A tool that uses the Parallel.ai search engine for
|
|
43906
|
+
# grounding.
|
|
43907
|
+
class GoogleCloudAiplatformV1ToolParallelAiSearch
|
|
43908
|
+
include Google::Apis::Core::Hashable
|
|
43909
|
+
|
|
43910
|
+
# Optional. The API key for ParallelAiSearch. If an API key is not provided, the
|
|
43911
|
+
# system will attempt to verify access by checking for an active Parallel.ai
|
|
43912
|
+
# subscription through the Google Cloud Marketplace. See https://docs.parallel.
|
|
43913
|
+
# ai/search/search-quickstart for more details.
|
|
43914
|
+
# Corresponds to the JSON property `apiKey`
|
|
43915
|
+
# @return [String]
|
|
43916
|
+
attr_accessor :api_key
|
|
43917
|
+
|
|
43918
|
+
# Optional. Custom configs for ParallelAiSearch. This field can be used to pass
|
|
43919
|
+
# any parameter from the Parallel.ai Search API. See the Parallel.ai
|
|
43920
|
+
# documentation for the full list of available parameters and their usage: https:
|
|
43921
|
+
# //docs.parallel.ai/api-reference/search-beta/search Currently only `
|
|
43922
|
+
# source_policy`, `excerpts`, `max_results`, `mode`, `fetch_policy` can be set
|
|
43923
|
+
# via this field. For example: ` "source_policy": ` "include_domains": ["google.
|
|
43924
|
+
# com", "wikipedia.org"], "exclude_domains": ["example.com"] `, "fetch_policy": `
|
|
43925
|
+
# "max_age_seconds": 3600 ` `
|
|
43926
|
+
# Corresponds to the JSON property `customConfigs`
|
|
43927
|
+
# @return [Hash<String,Object>]
|
|
43928
|
+
attr_accessor :custom_configs
|
|
43929
|
+
|
|
43930
|
+
def initialize(**args)
|
|
43931
|
+
update!(**args)
|
|
43932
|
+
end
|
|
43933
|
+
|
|
43934
|
+
# Update properties of this object
|
|
43935
|
+
def update!(**args)
|
|
43936
|
+
@api_key = args[:api_key] if args.key?(:api_key)
|
|
43937
|
+
@custom_configs = args[:custom_configs] if args.key?(:custom_configs)
|
|
43938
|
+
end
|
|
43939
|
+
end
|
|
43940
|
+
|
|
43423
43941
|
# Input for tool parameter key value match metric.
|
|
43424
43942
|
class GoogleCloudAiplatformV1ToolParameterKvMatchInput
|
|
43425
43943
|
include Google::Apis::Core::Hashable
|
|
@@ -43668,8 +44186,8 @@ module Google
|
|
|
43668
44186
|
# @return [String]
|
|
43669
44187
|
attr_accessor :display_name
|
|
43670
44188
|
|
|
43671
|
-
# Represents a customer-managed encryption key
|
|
43672
|
-
#
|
|
44189
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
44190
|
+
# to a Vertex AI resource.
|
|
43673
44191
|
# Corresponds to the JSON property `encryptionSpec`
|
|
43674
44192
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
43675
44193
|
attr_accessor :encryption_spec
|
|
@@ -44761,8 +45279,8 @@ module Google
|
|
|
44761
45279
|
# @return [String]
|
|
44762
45280
|
attr_accessor :description
|
|
44763
45281
|
|
|
44764
|
-
# Represents a customer-managed encryption key
|
|
44765
|
-
#
|
|
45282
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
45283
|
+
# to a Vertex AI resource.
|
|
44766
45284
|
# Corresponds to the JSON property `encryptionSpec`
|
|
44767
45285
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
44768
45286
|
attr_accessor :encryption_spec
|
|
@@ -45915,6 +46433,51 @@ module Google
|
|
|
45915
46433
|
end
|
|
45916
46434
|
end
|
|
45917
46435
|
|
|
46436
|
+
# The details for a Vertex Multimodal Dataset output.
|
|
46437
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetDestination
|
|
46438
|
+
include Google::Apis::Core::Hashable
|
|
46439
|
+
|
|
46440
|
+
# The BigQuery location for the output content.
|
|
46441
|
+
# Corresponds to the JSON property `bigqueryDestination`
|
|
46442
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BigQueryDestination]
|
|
46443
|
+
attr_accessor :bigquery_destination
|
|
46444
|
+
|
|
46445
|
+
# Optional. Display name of the output dataset.
|
|
46446
|
+
# Corresponds to the JSON property `displayName`
|
|
46447
|
+
# @return [String]
|
|
46448
|
+
attr_accessor :display_name
|
|
46449
|
+
|
|
46450
|
+
def initialize(**args)
|
|
46451
|
+
update!(**args)
|
|
46452
|
+
end
|
|
46453
|
+
|
|
46454
|
+
# Update properties of this object
|
|
46455
|
+
def update!(**args)
|
|
46456
|
+
@bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
|
|
46457
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
46458
|
+
end
|
|
46459
|
+
end
|
|
46460
|
+
|
|
46461
|
+
# The Vertex Multimodal Dataset for the input content.
|
|
46462
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetSource
|
|
46463
|
+
include Google::Apis::Core::Hashable
|
|
46464
|
+
|
|
46465
|
+
# Required. The resource name of the Vertex Dataset. Format: `projects/`project`/
|
|
46466
|
+
# locations/`location`/datasets/`dataset``
|
|
46467
|
+
# Corresponds to the JSON property `datasetName`
|
|
46468
|
+
# @return [String]
|
|
46469
|
+
attr_accessor :dataset_name
|
|
46470
|
+
|
|
46471
|
+
def initialize(**args)
|
|
46472
|
+
update!(**args)
|
|
46473
|
+
end
|
|
46474
|
+
|
|
46475
|
+
# Update properties of this object
|
|
46476
|
+
def update!(**args)
|
|
46477
|
+
@dataset_name = args[:dataset_name] if args.key?(:dataset_name)
|
|
46478
|
+
end
|
|
46479
|
+
end
|
|
46480
|
+
|
|
45918
46481
|
# Retrieve from Vertex RAG Store for grounding.
|
|
45919
46482
|
class GoogleCloudAiplatformV1VertexRagStore
|
|
45920
46483
|
include Google::Apis::Core::Hashable
|