google-apis-aiplatform_v1 0.75.0 → 0.76.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 +4 -0
- data/lib/google/apis/aiplatform_v1/classes.rb +621 -123
- data/lib/google/apis/aiplatform_v1/gem_version.rb +2 -2
- data/lib/google/apis/aiplatform_v1/representations.rb +237 -0
- data/lib/google/apis/aiplatform_v1/service.rb +1003 -250
- 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
|
|
@@ -2966,8 +2966,8 @@ module Google
|
|
|
2966
2966
|
# @return [String]
|
|
2967
2967
|
attr_accessor :display_name
|
|
2968
2968
|
|
|
2969
|
-
# Represents a customer-managed encryption key
|
|
2970
|
-
#
|
|
2969
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
2970
|
+
# to a Vertex AI resource.
|
|
2971
2971
|
# Corresponds to the JSON property `encryptionSpec`
|
|
2972
2972
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
2973
2973
|
attr_accessor :encryption_spec
|
|
@@ -3476,6 +3476,40 @@ module Google
|
|
|
3476
3476
|
end
|
|
3477
3477
|
end
|
|
3478
3478
|
|
|
3479
|
+
# Container for bytes-encoded data such as video frame, audio sample, or a
|
|
3480
|
+
# complete binary/text data.
|
|
3481
|
+
class GoogleCloudAiplatformV1Chunk
|
|
3482
|
+
include Google::Apis::Core::Hashable
|
|
3483
|
+
|
|
3484
|
+
# Required. The data in the chunk.
|
|
3485
|
+
# Corresponds to the JSON property `data`
|
|
3486
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
3487
|
+
# @return [String]
|
|
3488
|
+
attr_accessor :data
|
|
3489
|
+
|
|
3490
|
+
# Metadata for a chunk.
|
|
3491
|
+
# Corresponds to the JSON property `metadata`
|
|
3492
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Metadata]
|
|
3493
|
+
attr_accessor :metadata
|
|
3494
|
+
|
|
3495
|
+
# Required. Mime type of the chunk data. See https://www.iana.org/assignments/
|
|
3496
|
+
# media-types/media-types.xhtml for the full list.
|
|
3497
|
+
# Corresponds to the JSON property `mimeType`
|
|
3498
|
+
# @return [String]
|
|
3499
|
+
attr_accessor :mime_type
|
|
3500
|
+
|
|
3501
|
+
def initialize(**args)
|
|
3502
|
+
update!(**args)
|
|
3503
|
+
end
|
|
3504
|
+
|
|
3505
|
+
# Update properties of this object
|
|
3506
|
+
def update!(**args)
|
|
3507
|
+
@data = args[:data] if args.key?(:data)
|
|
3508
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
|
3509
|
+
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
|
3510
|
+
end
|
|
3511
|
+
end
|
|
3512
|
+
|
|
3479
3513
|
# A citation for a piece of generatedcontent.
|
|
3480
3514
|
class GoogleCloudAiplatformV1Citation
|
|
3481
3515
|
include Google::Apis::Core::Hashable
|
|
@@ -4247,8 +4281,8 @@ module Google
|
|
|
4247
4281
|
class GoogleCloudAiplatformV1CopyModelRequest
|
|
4248
4282
|
include Google::Apis::Core::Hashable
|
|
4249
4283
|
|
|
4250
|
-
# Represents a customer-managed encryption key
|
|
4251
|
-
#
|
|
4284
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
4285
|
+
# to a Vertex AI resource.
|
|
4252
4286
|
# Corresponds to the JSON property `encryptionSpec`
|
|
4253
4287
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
4254
4288
|
attr_accessor :encryption_spec
|
|
@@ -5188,8 +5222,8 @@ module Google
|
|
|
5188
5222
|
# @return [String]
|
|
5189
5223
|
attr_accessor :display_name
|
|
5190
5224
|
|
|
5191
|
-
# Represents a customer-managed encryption key
|
|
5192
|
-
#
|
|
5225
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
5226
|
+
# to a Vertex AI resource.
|
|
5193
5227
|
# Corresponds to the JSON property `encryptionSpec`
|
|
5194
5228
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
5195
5229
|
attr_accessor :encryption_spec
|
|
@@ -5636,8 +5670,8 @@ module Google
|
|
|
5636
5670
|
# @return [String]
|
|
5637
5671
|
attr_accessor :display_name
|
|
5638
5672
|
|
|
5639
|
-
# Represents a customer-managed encryption key
|
|
5640
|
-
#
|
|
5673
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
5674
|
+
# to a Vertex AI resource.
|
|
5641
5675
|
# Corresponds to the JSON property `encryptionSpec`
|
|
5642
5676
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
5643
5677
|
attr_accessor :encryption_spec
|
|
@@ -5768,8 +5802,8 @@ module Google
|
|
|
5768
5802
|
# @return [String]
|
|
5769
5803
|
attr_accessor :display_name
|
|
5770
5804
|
|
|
5771
|
-
# Represents a customer-managed encryption key
|
|
5772
|
-
#
|
|
5805
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
5806
|
+
# to a Vertex AI resource.
|
|
5773
5807
|
# Corresponds to the JSON property `encryptionSpec`
|
|
5774
5808
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
5775
5809
|
attr_accessor :encryption_spec
|
|
@@ -7300,8 +7334,8 @@ module Google
|
|
|
7300
7334
|
attr_accessor :disable_container_logging
|
|
7301
7335
|
alias_method :disable_container_logging?, :disable_container_logging
|
|
7302
7336
|
|
|
7303
|
-
# Represents a customer-managed encryption key
|
|
7304
|
-
#
|
|
7337
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
7338
|
+
# to a Vertex AI resource.
|
|
7305
7339
|
# Corresponds to the JSON property `encryptionSpec`
|
|
7306
7340
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
7307
7341
|
attr_accessor :encryption_spec
|
|
@@ -7699,15 +7733,15 @@ module Google
|
|
|
7699
7733
|
end
|
|
7700
7734
|
end
|
|
7701
7735
|
|
|
7702
|
-
# Represents a customer-managed encryption key
|
|
7703
|
-
#
|
|
7736
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
7737
|
+
# to a Vertex AI resource.
|
|
7704
7738
|
class GoogleCloudAiplatformV1EncryptionSpec
|
|
7705
7739
|
include Google::Apis::Core::Hashable
|
|
7706
7740
|
|
|
7707
|
-
# Required.
|
|
7708
|
-
# key
|
|
7709
|
-
#
|
|
7710
|
-
#
|
|
7741
|
+
# Required. Resource name of the Cloud KMS key used to protect the resource. The
|
|
7742
|
+
# Cloud KMS key must be in the same region as the resource. It must have the
|
|
7743
|
+
# format `projects/`project`/locations/`location`/keyRings/`key_ring`/cryptoKeys/
|
|
7744
|
+
# `crypto_key``.
|
|
7711
7745
|
# Corresponds to the JSON property `kmsKeyName`
|
|
7712
7746
|
# @return [String]
|
|
7713
7747
|
attr_accessor :kms_key_name
|
|
@@ -7782,8 +7816,8 @@ module Google
|
|
|
7782
7816
|
attr_accessor :enable_private_service_connect
|
|
7783
7817
|
alias_method :enable_private_service_connect?, :enable_private_service_connect
|
|
7784
7818
|
|
|
7785
|
-
# Represents a customer-managed encryption key
|
|
7786
|
-
#
|
|
7819
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
7820
|
+
# to a Vertex AI resource.
|
|
7787
7821
|
# Corresponds to the JSON property `encryptionSpec`
|
|
7788
7822
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
7789
7823
|
attr_accessor :encryption_spec
|
|
@@ -10333,6 +10367,82 @@ module Google
|
|
|
10333
10367
|
end
|
|
10334
10368
|
end
|
|
10335
10369
|
|
|
10370
|
+
# Request message for SandboxEnvironmentExecutionService.ExecuteCode.
|
|
10371
|
+
class GoogleCloudAiplatformV1ExecuteCodeRequest
|
|
10372
|
+
include Google::Apis::Core::Hashable
|
|
10373
|
+
|
|
10374
|
+
# Required. The inputs used for the stateless code execution.
|
|
10375
|
+
# Corresponds to the JSON property `inputs`
|
|
10376
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Chunk>]
|
|
10377
|
+
attr_accessor :inputs
|
|
10378
|
+
|
|
10379
|
+
def initialize(**args)
|
|
10380
|
+
update!(**args)
|
|
10381
|
+
end
|
|
10382
|
+
|
|
10383
|
+
# Update properties of this object
|
|
10384
|
+
def update!(**args)
|
|
10385
|
+
@inputs = args[:inputs] if args.key?(:inputs)
|
|
10386
|
+
end
|
|
10387
|
+
end
|
|
10388
|
+
|
|
10389
|
+
# Response message for SandboxEnvironmentExecutionService.ExecuteCode.
|
|
10390
|
+
class GoogleCloudAiplatformV1ExecuteCodeResponse
|
|
10391
|
+
include Google::Apis::Core::Hashable
|
|
10392
|
+
|
|
10393
|
+
# The outputs from the sandbox environment.
|
|
10394
|
+
# Corresponds to the JSON property `outputs`
|
|
10395
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Chunk>]
|
|
10396
|
+
attr_accessor :outputs
|
|
10397
|
+
|
|
10398
|
+
def initialize(**args)
|
|
10399
|
+
update!(**args)
|
|
10400
|
+
end
|
|
10401
|
+
|
|
10402
|
+
# Update properties of this object
|
|
10403
|
+
def update!(**args)
|
|
10404
|
+
@outputs = args[:outputs] if args.key?(:outputs)
|
|
10405
|
+
end
|
|
10406
|
+
end
|
|
10407
|
+
|
|
10408
|
+
# Request message for SandboxEnvironmentExecutionService.Execute.
|
|
10409
|
+
class GoogleCloudAiplatformV1ExecuteSandboxEnvironmentRequest
|
|
10410
|
+
include Google::Apis::Core::Hashable
|
|
10411
|
+
|
|
10412
|
+
# Required. The inputs to the sandbox environment.
|
|
10413
|
+
# Corresponds to the JSON property `inputs`
|
|
10414
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Chunk>]
|
|
10415
|
+
attr_accessor :inputs
|
|
10416
|
+
|
|
10417
|
+
def initialize(**args)
|
|
10418
|
+
update!(**args)
|
|
10419
|
+
end
|
|
10420
|
+
|
|
10421
|
+
# Update properties of this object
|
|
10422
|
+
def update!(**args)
|
|
10423
|
+
@inputs = args[:inputs] if args.key?(:inputs)
|
|
10424
|
+
end
|
|
10425
|
+
end
|
|
10426
|
+
|
|
10427
|
+
# Response message for SandboxEnvironmentExecutionService.Execute.
|
|
10428
|
+
class GoogleCloudAiplatformV1ExecuteSandboxEnvironmentResponse
|
|
10429
|
+
include Google::Apis::Core::Hashable
|
|
10430
|
+
|
|
10431
|
+
# The outputs from the sandbox environment.
|
|
10432
|
+
# Corresponds to the JSON property `outputs`
|
|
10433
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Chunk>]
|
|
10434
|
+
attr_accessor :outputs
|
|
10435
|
+
|
|
10436
|
+
def initialize(**args)
|
|
10437
|
+
update!(**args)
|
|
10438
|
+
end
|
|
10439
|
+
|
|
10440
|
+
# Update properties of this object
|
|
10441
|
+
def update!(**args)
|
|
10442
|
+
@outputs = args[:outputs] if args.key?(:outputs)
|
|
10443
|
+
end
|
|
10444
|
+
end
|
|
10445
|
+
|
|
10336
10446
|
# Instance of a general execution.
|
|
10337
10447
|
class GoogleCloudAiplatformV1Execution
|
|
10338
10448
|
include Google::Apis::Core::Hashable
|
|
@@ -12157,8 +12267,8 @@ module Google
|
|
|
12157
12267
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureOnlineStoreDedicatedServingEndpoint]
|
|
12158
12268
|
attr_accessor :dedicated_serving_endpoint
|
|
12159
12269
|
|
|
12160
|
-
# Represents a customer-managed encryption key
|
|
12161
|
-
#
|
|
12270
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
12271
|
+
# to a Vertex AI resource.
|
|
12162
12272
|
# Corresponds to the JSON property `encryptionSpec`
|
|
12163
12273
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
12164
12274
|
attr_accessor :encryption_spec
|
|
@@ -13340,8 +13450,8 @@ module Google
|
|
|
13340
13450
|
# @return [String]
|
|
13341
13451
|
attr_accessor :create_time
|
|
13342
13452
|
|
|
13343
|
-
# Represents a customer-managed encryption key
|
|
13344
|
-
#
|
|
13453
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
13454
|
+
# to a Vertex AI resource.
|
|
13345
13455
|
# Corresponds to the JSON property `encryptionSpec`
|
|
13346
13456
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
13347
13457
|
attr_accessor :encryption_spec
|
|
@@ -14394,9 +14504,8 @@ module Google
|
|
|
14394
14504
|
# @return [String]
|
|
14395
14505
|
attr_accessor :name
|
|
14396
14506
|
|
|
14397
|
-
#
|
|
14398
|
-
#
|
|
14399
|
-
# schema-object). More fields may be added in the future as needed.
|
|
14507
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
14508
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
14400
14509
|
# Corresponds to the JSON property `parameters`
|
|
14401
14510
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
|
14402
14511
|
attr_accessor :parameters
|
|
@@ -14411,9 +14520,8 @@ module Google
|
|
|
14411
14520
|
# @return [Object]
|
|
14412
14521
|
attr_accessor :parameters_json_schema
|
|
14413
14522
|
|
|
14414
|
-
#
|
|
14415
|
-
#
|
|
14416
|
-
# schema-object). More fields may be added in the future as needed.
|
|
14523
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
14524
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
14417
14525
|
# Corresponds to the JSON property `response`
|
|
14418
14526
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
|
14419
14527
|
attr_accessor :response
|
|
@@ -15135,6 +15243,17 @@ module Google
|
|
|
15135
15243
|
attr_accessor :disable_memory_revisions
|
|
15136
15244
|
alias_method :disable_memory_revisions?, :disable_memory_revisions
|
|
15137
15245
|
|
|
15246
|
+
# Optional. User-provided metadata for the generated memories. This is not
|
|
15247
|
+
# generated by Memory Bank.
|
|
15248
|
+
# Corresponds to the JSON property `metadata`
|
|
15249
|
+
# @return [Hash<String,Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryMetadataValue>]
|
|
15250
|
+
attr_accessor :metadata
|
|
15251
|
+
|
|
15252
|
+
# Optional. The strategy to use when applying metadata to existing memories.
|
|
15253
|
+
# Corresponds to the JSON property `metadataMergeStrategy`
|
|
15254
|
+
# @return [String]
|
|
15255
|
+
attr_accessor :metadata_merge_strategy
|
|
15256
|
+
|
|
15138
15257
|
# Optional. Timestamp of when the revision is considered expired. If not set,
|
|
15139
15258
|
# the memory revision will be kept until manually deleted.
|
|
15140
15259
|
# Corresponds to the JSON property `revisionExpireTime`
|
|
@@ -15178,6 +15297,8 @@ module Google
|
|
|
15178
15297
|
@direct_memories_source = args[:direct_memories_source] if args.key?(:direct_memories_source)
|
|
15179
15298
|
@disable_consolidation = args[:disable_consolidation] if args.key?(:disable_consolidation)
|
|
15180
15299
|
@disable_memory_revisions = args[:disable_memory_revisions] if args.key?(:disable_memory_revisions)
|
|
15300
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
|
15301
|
+
@metadata_merge_strategy = args[:metadata_merge_strategy] if args.key?(:metadata_merge_strategy)
|
|
15181
15302
|
@revision_expire_time = args[:revision_expire_time] if args.key?(:revision_expire_time)
|
|
15182
15303
|
@revision_labels = args[:revision_labels] if args.key?(:revision_labels)
|
|
15183
15304
|
@revision_ttl = args[:revision_ttl] if args.key?(:revision_ttl)
|
|
@@ -15545,9 +15666,8 @@ module Google
|
|
|
15545
15666
|
# @return [Array<String>]
|
|
15546
15667
|
attr_accessor :response_modalities
|
|
15547
15668
|
|
|
15548
|
-
#
|
|
15549
|
-
#
|
|
15550
|
-
# schema-object). More fields may be added in the future as needed.
|
|
15669
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
15670
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
15551
15671
|
# Corresponds to the JSON property `responseSchema`
|
|
15552
15672
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
|
15553
15673
|
attr_accessor :response_schema
|
|
@@ -16374,8 +16494,8 @@ module Google
|
|
|
16374
16494
|
# @return [String]
|
|
16375
16495
|
attr_accessor :display_name
|
|
16376
16496
|
|
|
16377
|
-
# Represents a customer-managed encryption key
|
|
16378
|
-
#
|
|
16497
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
16498
|
+
# to a Vertex AI resource.
|
|
16379
16499
|
# Corresponds to the JSON property `encryptionSpec`
|
|
16380
16500
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
16381
16501
|
attr_accessor :encryption_spec
|
|
@@ -17072,8 +17192,8 @@ module Google
|
|
|
17072
17192
|
# @return [String]
|
|
17073
17193
|
attr_accessor :display_name
|
|
17074
17194
|
|
|
17075
|
-
# Represents a customer-managed encryption key
|
|
17076
|
-
#
|
|
17195
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
17196
|
+
# to a Vertex AI resource.
|
|
17077
17197
|
# Corresponds to the JSON property `encryptionSpec`
|
|
17078
17198
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
17079
17199
|
attr_accessor :encryption_spec
|
|
@@ -17398,8 +17518,8 @@ module Google
|
|
|
17398
17518
|
attr_accessor :enable_private_service_connect
|
|
17399
17519
|
alias_method :enable_private_service_connect?, :enable_private_service_connect
|
|
17400
17520
|
|
|
17401
|
-
# Represents a customer-managed encryption key
|
|
17402
|
-
#
|
|
17521
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
17522
|
+
# to a Vertex AI resource.
|
|
17403
17523
|
# Corresponds to the JSON property `encryptionSpec`
|
|
17404
17524
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
17405
17525
|
attr_accessor :encryption_spec
|
|
@@ -19254,6 +19374,33 @@ module Google
|
|
|
19254
19374
|
end
|
|
19255
19375
|
end
|
|
19256
19376
|
|
|
19377
|
+
# Response message for SandboxEnvironmentService.ListSandboxEnvironments.
|
|
19378
|
+
class GoogleCloudAiplatformV1ListSandboxEnvironmentsResponse
|
|
19379
|
+
include Google::Apis::Core::Hashable
|
|
19380
|
+
|
|
19381
|
+
# A token, which can be sent as ListSandboxEnvironmentsRequest.page_token to
|
|
19382
|
+
# retrieve the next page. Absence of this field indicates there are no
|
|
19383
|
+
# subsequent pages.
|
|
19384
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
19385
|
+
# @return [String]
|
|
19386
|
+
attr_accessor :next_page_token
|
|
19387
|
+
|
|
19388
|
+
# The SandboxEnvironments matching the request.
|
|
19389
|
+
# Corresponds to the JSON property `sandboxEnvironments`
|
|
19390
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironment>]
|
|
19391
|
+
attr_accessor :sandbox_environments
|
|
19392
|
+
|
|
19393
|
+
def initialize(**args)
|
|
19394
|
+
update!(**args)
|
|
19395
|
+
end
|
|
19396
|
+
|
|
19397
|
+
# Update properties of this object
|
|
19398
|
+
def update!(**args)
|
|
19399
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
19400
|
+
@sandbox_environments = args[:sandbox_environments] if args.key?(:sandbox_environments)
|
|
19401
|
+
end
|
|
19402
|
+
end
|
|
19403
|
+
|
|
19257
19404
|
# Response message for DatasetService.ListSavedQueries.
|
|
19258
19405
|
class GoogleCloudAiplatformV1ListSavedQueriesResponse
|
|
19259
19406
|
include Google::Apis::Core::Hashable
|
|
@@ -19916,6 +20063,13 @@ module Google
|
|
|
19916
20063
|
# @return [String]
|
|
19917
20064
|
attr_accessor :fact
|
|
19918
20065
|
|
|
20066
|
+
# Optional. User-provided metadata for the Memory. This information was provided
|
|
20067
|
+
# when creating, updating, or generating the Memory. It was not generated by
|
|
20068
|
+
# Memory Bank.
|
|
20069
|
+
# Corresponds to the JSON property `metadata`
|
|
20070
|
+
# @return [Hash<String,Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryMetadataValue>]
|
|
20071
|
+
attr_accessor :metadata
|
|
20072
|
+
|
|
19919
20073
|
# Identifier. The resource name of the Memory. Format: `projects/`project`/
|
|
19920
20074
|
# locations/`location`/reasoningEngines/`reasoning_engine`/memories/`memory``
|
|
19921
20075
|
# Corresponds to the JSON property `name`
|
|
@@ -19975,6 +20129,7 @@ module Google
|
|
|
19975
20129
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
19976
20130
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
|
19977
20131
|
@fact = args[:fact] if args.key?(:fact)
|
|
20132
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
|
19978
20133
|
@name = args[:name] if args.key?(:name)
|
|
19979
20134
|
@revision_expire_time = args[:revision_expire_time] if args.key?(:revision_expire_time)
|
|
19980
20135
|
@revision_labels = args[:revision_labels] if args.key?(:revision_labels)
|
|
@@ -20200,6 +20355,103 @@ module Google
|
|
|
20200
20355
|
end
|
|
20201
20356
|
end
|
|
20202
20357
|
|
|
20358
|
+
# A conjunction of filters that will be combined using AND logic.
|
|
20359
|
+
class GoogleCloudAiplatformV1MemoryConjunctionFilter
|
|
20360
|
+
include Google::Apis::Core::Hashable
|
|
20361
|
+
|
|
20362
|
+
# Filters that will combined using AND logic.
|
|
20363
|
+
# Corresponds to the JSON property `filters`
|
|
20364
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryFilter>]
|
|
20365
|
+
attr_accessor :filters
|
|
20366
|
+
|
|
20367
|
+
def initialize(**args)
|
|
20368
|
+
update!(**args)
|
|
20369
|
+
end
|
|
20370
|
+
|
|
20371
|
+
# Update properties of this object
|
|
20372
|
+
def update!(**args)
|
|
20373
|
+
@filters = args[:filters] if args.key?(:filters)
|
|
20374
|
+
end
|
|
20375
|
+
end
|
|
20376
|
+
|
|
20377
|
+
# Filter to apply when retrieving memories.
|
|
20378
|
+
class GoogleCloudAiplatformV1MemoryFilter
|
|
20379
|
+
include Google::Apis::Core::Hashable
|
|
20380
|
+
|
|
20381
|
+
# Key of the filter. For example, "author" would apply to `metadata` entries
|
|
20382
|
+
# with the key "author".
|
|
20383
|
+
# Corresponds to the JSON property `key`
|
|
20384
|
+
# @return [String]
|
|
20385
|
+
attr_accessor :key
|
|
20386
|
+
|
|
20387
|
+
# If true, the filter will be negated.
|
|
20388
|
+
# Corresponds to the JSON property `negate`
|
|
20389
|
+
# @return [Boolean]
|
|
20390
|
+
attr_accessor :negate
|
|
20391
|
+
alias_method :negate?, :negate
|
|
20392
|
+
|
|
20393
|
+
# Operator to apply to the filter. If not set, then EQUAL will be used.
|
|
20394
|
+
# Corresponds to the JSON property `op`
|
|
20395
|
+
# @return [String]
|
|
20396
|
+
attr_accessor :op
|
|
20397
|
+
|
|
20398
|
+
# Memory metadata.
|
|
20399
|
+
# Corresponds to the JSON property `value`
|
|
20400
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryMetadataValue]
|
|
20401
|
+
attr_accessor :value
|
|
20402
|
+
|
|
20403
|
+
def initialize(**args)
|
|
20404
|
+
update!(**args)
|
|
20405
|
+
end
|
|
20406
|
+
|
|
20407
|
+
# Update properties of this object
|
|
20408
|
+
def update!(**args)
|
|
20409
|
+
@key = args[:key] if args.key?(:key)
|
|
20410
|
+
@negate = args[:negate] if args.key?(:negate)
|
|
20411
|
+
@op = args[:op] if args.key?(:op)
|
|
20412
|
+
@value = args[:value] if args.key?(:value)
|
|
20413
|
+
end
|
|
20414
|
+
end
|
|
20415
|
+
|
|
20416
|
+
# Memory metadata.
|
|
20417
|
+
class GoogleCloudAiplatformV1MemoryMetadataValue
|
|
20418
|
+
include Google::Apis::Core::Hashable
|
|
20419
|
+
|
|
20420
|
+
# Boolean value.
|
|
20421
|
+
# Corresponds to the JSON property `boolValue`
|
|
20422
|
+
# @return [Boolean]
|
|
20423
|
+
attr_accessor :bool_value
|
|
20424
|
+
alias_method :bool_value?, :bool_value
|
|
20425
|
+
|
|
20426
|
+
# Double value.
|
|
20427
|
+
# Corresponds to the JSON property `doubleValue`
|
|
20428
|
+
# @return [Float]
|
|
20429
|
+
attr_accessor :double_value
|
|
20430
|
+
|
|
20431
|
+
# String value.
|
|
20432
|
+
# Corresponds to the JSON property `stringValue`
|
|
20433
|
+
# @return [String]
|
|
20434
|
+
attr_accessor :string_value
|
|
20435
|
+
|
|
20436
|
+
# Timestamp value. When filtering on timestamp values, only the seconds field
|
|
20437
|
+
# will be compared.
|
|
20438
|
+
# Corresponds to the JSON property `timestampValue`
|
|
20439
|
+
# @return [String]
|
|
20440
|
+
attr_accessor :timestamp_value
|
|
20441
|
+
|
|
20442
|
+
def initialize(**args)
|
|
20443
|
+
update!(**args)
|
|
20444
|
+
end
|
|
20445
|
+
|
|
20446
|
+
# Update properties of this object
|
|
20447
|
+
def update!(**args)
|
|
20448
|
+
@bool_value = args[:bool_value] if args.key?(:bool_value)
|
|
20449
|
+
@double_value = args[:double_value] if args.key?(:double_value)
|
|
20450
|
+
@string_value = args[:string_value] if args.key?(:string_value)
|
|
20451
|
+
@timestamp_value = args[:timestamp_value] if args.key?(:timestamp_value)
|
|
20452
|
+
end
|
|
20453
|
+
end
|
|
20454
|
+
|
|
20203
20455
|
# A revision of a Memory.
|
|
20204
20456
|
class GoogleCloudAiplatformV1MemoryRevision
|
|
20205
20457
|
include Google::Apis::Core::Hashable
|
|
@@ -20308,6 +20560,27 @@ module Google
|
|
|
20308
20560
|
end
|
|
20309
20561
|
end
|
|
20310
20562
|
|
|
20563
|
+
# Metadata for a chunk.
|
|
20564
|
+
class GoogleCloudAiplatformV1Metadata
|
|
20565
|
+
include Google::Apis::Core::Hashable
|
|
20566
|
+
|
|
20567
|
+
# Optional. Attributes attached to the data. The keys have semantic conventions
|
|
20568
|
+
# and the consumers of the attributes should know how to deserialize the value
|
|
20569
|
+
# bytes based on the keys.
|
|
20570
|
+
# Corresponds to the JSON property `attributes`
|
|
20571
|
+
# @return [Hash<String,String>]
|
|
20572
|
+
attr_accessor :attributes
|
|
20573
|
+
|
|
20574
|
+
def initialize(**args)
|
|
20575
|
+
update!(**args)
|
|
20576
|
+
end
|
|
20577
|
+
|
|
20578
|
+
# Update properties of this object
|
|
20579
|
+
def update!(**args)
|
|
20580
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
20581
|
+
end
|
|
20582
|
+
end
|
|
20583
|
+
|
|
20311
20584
|
# Instance of a general MetadataSchema.
|
|
20312
20585
|
class GoogleCloudAiplatformV1MetadataSchema
|
|
20313
20586
|
include Google::Apis::Core::Hashable
|
|
@@ -20383,8 +20656,8 @@ module Google
|
|
|
20383
20656
|
# @return [String]
|
|
20384
20657
|
attr_accessor :description
|
|
20385
20658
|
|
|
20386
|
-
# Represents a customer-managed encryption key
|
|
20387
|
-
#
|
|
20659
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
20660
|
+
# to a Vertex AI resource.
|
|
20388
20661
|
# Corresponds to the JSON property `encryptionSpec`
|
|
20389
20662
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
20390
20663
|
attr_accessor :encryption_spec
|
|
@@ -21182,8 +21455,8 @@ module Google
|
|
|
21182
21455
|
# @return [String]
|
|
21183
21456
|
attr_accessor :display_name
|
|
21184
21457
|
|
|
21185
|
-
# Represents a customer-managed encryption key
|
|
21186
|
-
#
|
|
21458
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
21459
|
+
# to a Vertex AI resource.
|
|
21187
21460
|
# Corresponds to the JSON property `encryptionSpec`
|
|
21188
21461
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
21189
21462
|
attr_accessor :encryption_spec
|
|
@@ -21856,8 +22129,8 @@ module Google
|
|
|
21856
22129
|
attr_accessor :enable_monitoring_pipeline_logs
|
|
21857
22130
|
alias_method :enable_monitoring_pipeline_logs?, :enable_monitoring_pipeline_logs
|
|
21858
22131
|
|
|
21859
|
-
# Represents a customer-managed encryption key
|
|
21860
|
-
#
|
|
22132
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
22133
|
+
# to a Vertex AI resource.
|
|
21861
22134
|
# Corresponds to the JSON property `encryptionSpec`
|
|
21862
22135
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
21863
22136
|
attr_accessor :encryption_spec
|
|
@@ -23131,8 +23404,8 @@ module Google
|
|
|
23131
23404
|
attr_accessor :enable_restricted_image_training
|
|
23132
23405
|
alias_method :enable_restricted_image_training?, :enable_restricted_image_training
|
|
23133
23406
|
|
|
23134
|
-
# Represents a customer-managed encryption key
|
|
23135
|
-
#
|
|
23407
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
23408
|
+
# to a Vertex AI resource.
|
|
23136
23409
|
# Corresponds to the JSON property `encryptionSpec`
|
|
23137
23410
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
23138
23411
|
attr_accessor :encryption_spec
|
|
@@ -24052,8 +24325,8 @@ module Google
|
|
|
24052
24325
|
# @return [String]
|
|
24053
24326
|
attr_accessor :display_name
|
|
24054
24327
|
|
|
24055
|
-
# Represents a customer-managed encryption key
|
|
24056
|
-
#
|
|
24328
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
24329
|
+
# to a Vertex AI resource.
|
|
24057
24330
|
# Corresponds to the JSON property `encryptionSpec`
|
|
24058
24331
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
24059
24332
|
attr_accessor :encryption_spec
|
|
@@ -24383,8 +24656,8 @@ module Google
|
|
|
24383
24656
|
# @return [String]
|
|
24384
24657
|
attr_accessor :display_name
|
|
24385
24658
|
|
|
24386
|
-
# Represents a customer-managed encryption key
|
|
24387
|
-
#
|
|
24659
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
24660
|
+
# to a Vertex AI resource.
|
|
24388
24661
|
# Corresponds to the JSON property `encryptionSpec`
|
|
24389
24662
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
24390
24663
|
attr_accessor :encryption_spec
|
|
@@ -24597,8 +24870,8 @@ module Google
|
|
|
24597
24870
|
# @return [String]
|
|
24598
24871
|
attr_accessor :display_name
|
|
24599
24872
|
|
|
24600
|
-
# Represents a customer-managed encryption key
|
|
24601
|
-
#
|
|
24873
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
24874
|
+
# to a Vertex AI resource.
|
|
24602
24875
|
# Corresponds to the JSON property `encryptionSpec`
|
|
24603
24876
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
24604
24877
|
attr_accessor :encryption_spec
|
|
@@ -25510,8 +25783,8 @@ module Google
|
|
|
25510
25783
|
# @return [String]
|
|
25511
25784
|
attr_accessor :display_name
|
|
25512
25785
|
|
|
25513
|
-
# Represents a customer-managed encryption key
|
|
25514
|
-
#
|
|
25786
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
25787
|
+
# to a Vertex AI resource.
|
|
25515
25788
|
# Corresponds to the JSON property `encryptionSpec`
|
|
25516
25789
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
25517
25790
|
attr_accessor :encryption_spec
|
|
@@ -25653,8 +25926,8 @@ module Google
|
|
|
25653
25926
|
# @return [String]
|
|
25654
25927
|
attr_accessor :display_name
|
|
25655
25928
|
|
|
25656
|
-
# Represents a customer-managed encryption key
|
|
25657
|
-
#
|
|
25929
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
25930
|
+
# to a Vertex AI resource.
|
|
25658
25931
|
# Corresponds to the JSON property `encryptionSpec`
|
|
25659
25932
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
25660
25933
|
attr_accessor :encryption_spec
|
|
@@ -28794,8 +29067,8 @@ module Google
|
|
|
28794
29067
|
# @return [String]
|
|
28795
29068
|
attr_accessor :display_name
|
|
28796
29069
|
|
|
28797
|
-
# Represents a customer-managed encryption key
|
|
28798
|
-
#
|
|
29070
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
29071
|
+
# to a Vertex AI resource.
|
|
28799
29072
|
# Corresponds to the JSON property `encryptionSpec`
|
|
28800
29073
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
28801
29074
|
attr_accessor :encryption_spec
|
|
@@ -30079,8 +30352,8 @@ module Google
|
|
|
30079
30352
|
# @return [String]
|
|
30080
30353
|
attr_accessor :display_name
|
|
30081
30354
|
|
|
30082
|
-
# Represents a customer-managed encryption key
|
|
30083
|
-
#
|
|
30355
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
30356
|
+
# to a Vertex AI resource.
|
|
30084
30357
|
# Corresponds to the JSON property `encryptionSpec`
|
|
30085
30358
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
30086
30359
|
attr_accessor :encryption_spec
|
|
@@ -30611,13 +30884,15 @@ module Google
|
|
|
30611
30884
|
# Optional. The Python module to load as the entrypoint, specified as a fully
|
|
30612
30885
|
# qualified module name. For example: path.to.agent. If not specified, defaults
|
|
30613
30886
|
# to "agent". The project root will be added to Python sys.path, allowing
|
|
30614
|
-
# imports to be specified relative to the root.
|
|
30887
|
+
# imports to be specified relative to the root. This field should not be set if
|
|
30888
|
+
# the source is `agent_config_source`.
|
|
30615
30889
|
# Corresponds to the JSON property `entrypointModule`
|
|
30616
30890
|
# @return [String]
|
|
30617
30891
|
attr_accessor :entrypoint_module
|
|
30618
30892
|
|
|
30619
30893
|
# Optional. The name of the callable object within the `entrypoint_module` to
|
|
30620
|
-
# use as the application If not specified, defaults to "root_agent".
|
|
30894
|
+
# use as the application If not specified, defaults to "root_agent". This field
|
|
30895
|
+
# should not be set if the source is `agent_config_source`.
|
|
30621
30896
|
# Corresponds to the JSON property `entrypointObject`
|
|
30622
30897
|
# @return [String]
|
|
30623
30898
|
attr_accessor :entrypoint_object
|
|
@@ -31269,6 +31544,18 @@ module Google
|
|
|
31269
31544
|
# @return [String]
|
|
31270
31545
|
attr_accessor :filter
|
|
31271
31546
|
|
|
31547
|
+
# Optional. Metadata filters that will be applied to the retrieved memories' `
|
|
31548
|
+
# metadata` using OR logic. Filters are defined using disjunctive normal form (
|
|
31549
|
+
# OR of ANDs). For example: `filter_groups: [`filters: [`key: "author", value: `
|
|
31550
|
+
# string_value: "agent 123"`, op: EQUAL`]`, `filters: [`key: "label", value: `
|
|
31551
|
+
# string_value: "travel"`, op: EQUAL`, `key: "author", value: `string_value: "
|
|
31552
|
+
# agent 321"`, op: EQUAL`]`]` would be equivalent to the logical expression: `(
|
|
31553
|
+
# metadata.author = "agent 123" OR (metadata.label = "travel" AND metadata.
|
|
31554
|
+
# author = "agent 321"))`.
|
|
31555
|
+
# Corresponds to the JSON property `filterGroups`
|
|
31556
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryConjunctionFilter>]
|
|
31557
|
+
attr_accessor :filter_groups
|
|
31558
|
+
|
|
31272
31559
|
# Required. The scope of the memories to retrieve. A memory must have exactly
|
|
31273
31560
|
# the same scope (`Memory.scope`) as the scope provided here to be retrieved (
|
|
31274
31561
|
# same keys and values). Order does not matter, but it is case-sensitive.
|
|
@@ -31293,6 +31580,7 @@ module Google
|
|
|
31293
31580
|
# Update properties of this object
|
|
31294
31581
|
def update!(**args)
|
|
31295
31582
|
@filter = args[:filter] if args.key?(:filter)
|
|
31583
|
+
@filter_groups = args[:filter_groups] if args.key?(:filter_groups)
|
|
31296
31584
|
@scope = args[:scope] if args.key?(:scope)
|
|
31297
31585
|
@similarity_search_params = args[:similarity_search_params] if args.key?(:similarity_search_params)
|
|
31298
31586
|
@simple_retrieval_params = args[:simple_retrieval_params] if args.key?(:simple_retrieval_params)
|
|
@@ -32139,6 +32427,153 @@ module Google
|
|
|
32139
32427
|
end
|
|
32140
32428
|
end
|
|
32141
32429
|
|
|
32430
|
+
# SandboxEnvironment is a containerized environment that provides a customizable
|
|
32431
|
+
# secure execution runtime for AI agents.
|
|
32432
|
+
class GoogleCloudAiplatformV1SandboxEnvironment
|
|
32433
|
+
include Google::Apis::Core::Hashable
|
|
32434
|
+
|
|
32435
|
+
# The connection information of the SandboxEnvironment.
|
|
32436
|
+
# Corresponds to the JSON property `connectionInfo`
|
|
32437
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo]
|
|
32438
|
+
attr_accessor :connection_info
|
|
32439
|
+
|
|
32440
|
+
# Output only. The timestamp when this SandboxEnvironment was created.
|
|
32441
|
+
# Corresponds to the JSON property `createTime`
|
|
32442
|
+
# @return [String]
|
|
32443
|
+
attr_accessor :create_time
|
|
32444
|
+
|
|
32445
|
+
# Required. The display name of the SandboxEnvironment.
|
|
32446
|
+
# Corresponds to the JSON property `displayName`
|
|
32447
|
+
# @return [String]
|
|
32448
|
+
attr_accessor :display_name
|
|
32449
|
+
|
|
32450
|
+
# Optional. Timestamp in UTC of when this SandboxEnvironment is considered
|
|
32451
|
+
# expired. This is *always* provided on output, regardless of what `expiration`
|
|
32452
|
+
# was sent on input.
|
|
32453
|
+
# Corresponds to the JSON property `expireTime`
|
|
32454
|
+
# @return [String]
|
|
32455
|
+
attr_accessor :expire_time
|
|
32456
|
+
|
|
32457
|
+
# Identifier. The name of the SandboxEnvironment.
|
|
32458
|
+
# Corresponds to the JSON property `name`
|
|
32459
|
+
# @return [String]
|
|
32460
|
+
attr_accessor :name
|
|
32461
|
+
|
|
32462
|
+
# The specification of a SandboxEnvironment.
|
|
32463
|
+
# Corresponds to the JSON property `spec`
|
|
32464
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentSpec]
|
|
32465
|
+
attr_accessor :spec
|
|
32466
|
+
|
|
32467
|
+
# Output only. The runtime state of the SandboxEnvironment.
|
|
32468
|
+
# Corresponds to the JSON property `state`
|
|
32469
|
+
# @return [String]
|
|
32470
|
+
attr_accessor :state
|
|
32471
|
+
|
|
32472
|
+
# Optional. Input only. The TTL for the sandbox environment. The expiration time
|
|
32473
|
+
# is computed: now + TTL.
|
|
32474
|
+
# Corresponds to the JSON property `ttl`
|
|
32475
|
+
# @return [String]
|
|
32476
|
+
attr_accessor :ttl
|
|
32477
|
+
|
|
32478
|
+
# Output only. The timestamp when this SandboxEnvironment was most recently
|
|
32479
|
+
# updated.
|
|
32480
|
+
# Corresponds to the JSON property `updateTime`
|
|
32481
|
+
# @return [String]
|
|
32482
|
+
attr_accessor :update_time
|
|
32483
|
+
|
|
32484
|
+
def initialize(**args)
|
|
32485
|
+
update!(**args)
|
|
32486
|
+
end
|
|
32487
|
+
|
|
32488
|
+
# Update properties of this object
|
|
32489
|
+
def update!(**args)
|
|
32490
|
+
@connection_info = args[:connection_info] if args.key?(:connection_info)
|
|
32491
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
32492
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
32493
|
+
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
|
32494
|
+
@name = args[:name] if args.key?(:name)
|
|
32495
|
+
@spec = args[:spec] if args.key?(:spec)
|
|
32496
|
+
@state = args[:state] if args.key?(:state)
|
|
32497
|
+
@ttl = args[:ttl] if args.key?(:ttl)
|
|
32498
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
32499
|
+
end
|
|
32500
|
+
end
|
|
32501
|
+
|
|
32502
|
+
# The connection information of the SandboxEnvironment.
|
|
32503
|
+
class GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo
|
|
32504
|
+
include Google::Apis::Core::Hashable
|
|
32505
|
+
|
|
32506
|
+
# Output only. The hostname of the load balancer.
|
|
32507
|
+
# Corresponds to the JSON property `loadBalancerHostname`
|
|
32508
|
+
# @return [String]
|
|
32509
|
+
attr_accessor :load_balancer_hostname
|
|
32510
|
+
|
|
32511
|
+
# Output only. The IP address of the load balancer.
|
|
32512
|
+
# Corresponds to the JSON property `loadBalancerIp`
|
|
32513
|
+
# @return [String]
|
|
32514
|
+
attr_accessor :load_balancer_ip
|
|
32515
|
+
|
|
32516
|
+
# Output only. The internal IP address of the SandboxEnvironment.
|
|
32517
|
+
# Corresponds to the JSON property `sandboxInternalIp`
|
|
32518
|
+
# @return [String]
|
|
32519
|
+
attr_accessor :sandbox_internal_ip
|
|
32520
|
+
|
|
32521
|
+
def initialize(**args)
|
|
32522
|
+
update!(**args)
|
|
32523
|
+
end
|
|
32524
|
+
|
|
32525
|
+
# Update properties of this object
|
|
32526
|
+
def update!(**args)
|
|
32527
|
+
@load_balancer_hostname = args[:load_balancer_hostname] if args.key?(:load_balancer_hostname)
|
|
32528
|
+
@load_balancer_ip = args[:load_balancer_ip] if args.key?(:load_balancer_ip)
|
|
32529
|
+
@sandbox_internal_ip = args[:sandbox_internal_ip] if args.key?(:sandbox_internal_ip)
|
|
32530
|
+
end
|
|
32531
|
+
end
|
|
32532
|
+
|
|
32533
|
+
# The specification of a SandboxEnvironment.
|
|
32534
|
+
class GoogleCloudAiplatformV1SandboxEnvironmentSpec
|
|
32535
|
+
include Google::Apis::Core::Hashable
|
|
32536
|
+
|
|
32537
|
+
# The code execution environment with customized settings.
|
|
32538
|
+
# Corresponds to the JSON property `codeExecutionEnvironment`
|
|
32539
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentSpecCodeExecutionEnvironment]
|
|
32540
|
+
attr_accessor :code_execution_environment
|
|
32541
|
+
|
|
32542
|
+
def initialize(**args)
|
|
32543
|
+
update!(**args)
|
|
32544
|
+
end
|
|
32545
|
+
|
|
32546
|
+
# Update properties of this object
|
|
32547
|
+
def update!(**args)
|
|
32548
|
+
@code_execution_environment = args[:code_execution_environment] if args.key?(:code_execution_environment)
|
|
32549
|
+
end
|
|
32550
|
+
end
|
|
32551
|
+
|
|
32552
|
+
# The code execution environment with customized settings.
|
|
32553
|
+
class GoogleCloudAiplatformV1SandboxEnvironmentSpecCodeExecutionEnvironment
|
|
32554
|
+
include Google::Apis::Core::Hashable
|
|
32555
|
+
|
|
32556
|
+
# The coding language supported in this environment.
|
|
32557
|
+
# Corresponds to the JSON property `codeLanguage`
|
|
32558
|
+
# @return [String]
|
|
32559
|
+
attr_accessor :code_language
|
|
32560
|
+
|
|
32561
|
+
# The machine config of the code execution environment.
|
|
32562
|
+
# Corresponds to the JSON property `machineConfig`
|
|
32563
|
+
# @return [String]
|
|
32564
|
+
attr_accessor :machine_config
|
|
32565
|
+
|
|
32566
|
+
def initialize(**args)
|
|
32567
|
+
update!(**args)
|
|
32568
|
+
end
|
|
32569
|
+
|
|
32570
|
+
# Update properties of this object
|
|
32571
|
+
def update!(**args)
|
|
32572
|
+
@code_language = args[:code_language] if args.key?(:code_language)
|
|
32573
|
+
@machine_config = args[:machine_config] if args.key?(:machine_config)
|
|
32574
|
+
end
|
|
32575
|
+
end
|
|
32576
|
+
|
|
32142
32577
|
# A SavedQuery is a view of the dataset. It references a subset of annotations
|
|
32143
32578
|
# by problem type and filters.
|
|
32144
32579
|
class GoogleCloudAiplatformV1SavedQuery
|
|
@@ -32470,154 +32905,166 @@ module Google
|
|
|
32470
32905
|
end
|
|
32471
32906
|
end
|
|
32472
32907
|
|
|
32473
|
-
#
|
|
32474
|
-
#
|
|
32475
|
-
# schema-object). More fields may be added in the future as needed.
|
|
32908
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
32909
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
32476
32910
|
class GoogleCloudAiplatformV1Schema
|
|
32477
32911
|
include Google::Apis::Core::Hashable
|
|
32478
32912
|
|
|
32479
|
-
# Optional.
|
|
32480
|
-
# additional properties
|
|
32913
|
+
# Optional. If `type` is `OBJECT`, specifies how to handle properties not
|
|
32914
|
+
# defined in `properties`. If it is a boolean `false`, no additional properties
|
|
32915
|
+
# are allowed. If it is a schema, additional properties are allowed if they
|
|
32916
|
+
# conform to the schema.
|
|
32481
32917
|
# Corresponds to the JSON property `additionalProperties`
|
|
32482
32918
|
# @return [Object]
|
|
32483
32919
|
attr_accessor :additional_properties
|
|
32484
32920
|
|
|
32485
|
-
# Optional. The
|
|
32486
|
-
# subschemas in
|
|
32921
|
+
# Optional. The instance must be valid against any (one or more) of the
|
|
32922
|
+
# subschemas listed in `any_of`.
|
|
32487
32923
|
# Corresponds to the JSON property `anyOf`
|
|
32488
32924
|
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema>]
|
|
32489
32925
|
attr_accessor :any_of
|
|
32490
32926
|
|
|
32491
|
-
# Optional. Default value
|
|
32927
|
+
# Optional. Default value to use if the field is not specified.
|
|
32492
32928
|
# Corresponds to the JSON property `default`
|
|
32493
32929
|
# @return [Object]
|
|
32494
32930
|
attr_accessor :default
|
|
32495
32931
|
|
|
32496
|
-
# Optional.
|
|
32497
|
-
# the schema.
|
|
32932
|
+
# Optional. `defs` provides a map of schema definitions that can be reused by `
|
|
32933
|
+
# ref` elsewhere in the schema. Only allowed at root level of the schema.
|
|
32498
32934
|
# Corresponds to the JSON property `defs`
|
|
32499
32935
|
# @return [Hash<String,Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema>]
|
|
32500
32936
|
attr_accessor :defs
|
|
32501
32937
|
|
|
32502
|
-
# Optional.
|
|
32938
|
+
# Optional. Description of the schema.
|
|
32503
32939
|
# Corresponds to the JSON property `description`
|
|
32504
32940
|
# @return [String]
|
|
32505
32941
|
attr_accessor :description
|
|
32506
32942
|
|
|
32507
|
-
# Optional. Possible values of the
|
|
32508
|
-
#
|
|
32509
|
-
#
|
|
32510
|
-
#
|
|
32943
|
+
# Optional. Possible values of the field. This field can be used to restrict a
|
|
32944
|
+
# value to a fixed set of values. To mark a field as an enum, set `format` to `
|
|
32945
|
+
# enum` and provide the list of possible values in `enum`. For example: 1. To
|
|
32946
|
+
# define directions: ``type:STRING, format:enum, enum:["EAST", "NORTH", "SOUTH",
|
|
32947
|
+
# "WEST"]`` 2. To define apartment numbers: ``type:INTEGER, format:enum, enum:["
|
|
32948
|
+
# 101", "201", "301"]``
|
|
32511
32949
|
# Corresponds to the JSON property `enum`
|
|
32512
32950
|
# @return [Array<String>]
|
|
32513
32951
|
attr_accessor :enum
|
|
32514
32952
|
|
|
32515
|
-
# Optional. Example of
|
|
32516
|
-
# root.
|
|
32953
|
+
# Optional. Example of an instance of this schema.
|
|
32517
32954
|
# Corresponds to the JSON property `example`
|
|
32518
32955
|
# @return [Object]
|
|
32519
32956
|
attr_accessor :example
|
|
32520
32957
|
|
|
32521
|
-
# Optional. The format of the data.
|
|
32522
|
-
#
|
|
32523
|
-
#
|
|
32958
|
+
# Optional. The format of the data. For `NUMBER` type, format can be `float` or `
|
|
32959
|
+
# double`. For `INTEGER` type, format can be `int32` or `int64`. For `STRING`
|
|
32960
|
+
# type, format can be `email`, `byte`, `date`, `date-time`, `password`, and
|
|
32961
|
+
# other formats to further refine the data type.
|
|
32524
32962
|
# Corresponds to the JSON property `format`
|
|
32525
32963
|
# @return [String]
|
|
32526
32964
|
attr_accessor :format
|
|
32527
32965
|
|
|
32528
|
-
#
|
|
32529
|
-
#
|
|
32530
|
-
# schema-object). More fields may be added in the future as needed.
|
|
32966
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
32967
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
32531
32968
|
# Corresponds to the JSON property `items`
|
|
32532
32969
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
|
32533
32970
|
attr_accessor :items
|
|
32534
32971
|
|
|
32535
|
-
# Optional.
|
|
32972
|
+
# Optional. If type is `ARRAY`, `max_items` specifies the maximum number of
|
|
32973
|
+
# items in an array.
|
|
32536
32974
|
# Corresponds to the JSON property `maxItems`
|
|
32537
32975
|
# @return [Fixnum]
|
|
32538
32976
|
attr_accessor :max_items
|
|
32539
32977
|
|
|
32540
|
-
# Optional.
|
|
32978
|
+
# Optional. If type is `STRING`, `max_length` specifies the maximum length of
|
|
32979
|
+
# the string.
|
|
32541
32980
|
# Corresponds to the JSON property `maxLength`
|
|
32542
32981
|
# @return [Fixnum]
|
|
32543
32982
|
attr_accessor :max_length
|
|
32544
32983
|
|
|
32545
|
-
# Optional.
|
|
32984
|
+
# Optional. If type is `OBJECT`, `max_properties` specifies the maximum number
|
|
32985
|
+
# of properties that can be provided.
|
|
32546
32986
|
# Corresponds to the JSON property `maxProperties`
|
|
32547
32987
|
# @return [Fixnum]
|
|
32548
32988
|
attr_accessor :max_properties
|
|
32549
32989
|
|
|
32550
|
-
# Optional.
|
|
32990
|
+
# Optional. If type is `INTEGER` or `NUMBER`, `maximum` specifies the maximum
|
|
32991
|
+
# allowed value.
|
|
32551
32992
|
# Corresponds to the JSON property `maximum`
|
|
32552
32993
|
# @return [Float]
|
|
32553
32994
|
attr_accessor :maximum
|
|
32554
32995
|
|
|
32555
|
-
# Optional.
|
|
32996
|
+
# Optional. If type is `ARRAY`, `min_items` specifies the minimum number of
|
|
32997
|
+
# items in an array.
|
|
32556
32998
|
# Corresponds to the JSON property `minItems`
|
|
32557
32999
|
# @return [Fixnum]
|
|
32558
33000
|
attr_accessor :min_items
|
|
32559
33001
|
|
|
32560
|
-
# Optional.
|
|
33002
|
+
# Optional. If type is `STRING`, `min_length` specifies the minimum length of
|
|
33003
|
+
# the string.
|
|
32561
33004
|
# Corresponds to the JSON property `minLength`
|
|
32562
33005
|
# @return [Fixnum]
|
|
32563
33006
|
attr_accessor :min_length
|
|
32564
33007
|
|
|
32565
|
-
# Optional.
|
|
33008
|
+
# Optional. If type is `OBJECT`, `min_properties` specifies the minimum number
|
|
33009
|
+
# of properties that can be provided.
|
|
32566
33010
|
# Corresponds to the JSON property `minProperties`
|
|
32567
33011
|
# @return [Fixnum]
|
|
32568
33012
|
attr_accessor :min_properties
|
|
32569
33013
|
|
|
32570
|
-
# Optional.
|
|
32571
|
-
#
|
|
33014
|
+
# Optional. If type is `INTEGER` or `NUMBER`, `minimum` specifies the minimum
|
|
33015
|
+
# allowed value.
|
|
32572
33016
|
# Corresponds to the JSON property `minimum`
|
|
32573
33017
|
# @return [Float]
|
|
32574
33018
|
attr_accessor :minimum
|
|
32575
33019
|
|
|
32576
|
-
# Optional. Indicates if the value
|
|
33020
|
+
# Optional. Indicates if the value of this field can be null.
|
|
32577
33021
|
# Corresponds to the JSON property `nullable`
|
|
32578
33022
|
# @return [Boolean]
|
|
32579
33023
|
attr_accessor :nullable
|
|
32580
33024
|
alias_method :nullable?, :nullable
|
|
32581
33025
|
|
|
32582
|
-
# Optional.
|
|
32583
|
-
#
|
|
33026
|
+
# Optional. If type is `STRING`, `pattern` specifies a regular expression that
|
|
33027
|
+
# the string must match.
|
|
32584
33028
|
# Corresponds to the JSON property `pattern`
|
|
32585
33029
|
# @return [String]
|
|
32586
33030
|
attr_accessor :pattern
|
|
32587
33031
|
|
|
32588
|
-
# Optional.
|
|
33032
|
+
# Optional. If type is `OBJECT`, `properties` is a map of property names to
|
|
33033
|
+
# schema definitions for each property of the object.
|
|
32589
33034
|
# Corresponds to the JSON property `properties`
|
|
32590
33035
|
# @return [Hash<String,Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema>]
|
|
32591
33036
|
attr_accessor :properties
|
|
32592
33037
|
|
|
32593
|
-
# Optional.
|
|
32594
|
-
#
|
|
33038
|
+
# Optional. Order of properties displayed or used where order matters. This is
|
|
33039
|
+
# not a standard field in OpenAPI specification, but can be used to control the
|
|
33040
|
+
# order of properties.
|
|
32595
33041
|
# Corresponds to the JSON property `propertyOrdering`
|
|
32596
33042
|
# @return [Array<String>]
|
|
32597
33043
|
attr_accessor :property_ordering
|
|
32598
33044
|
|
|
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
|
|
33045
|
+
# Optional. Allows referencing another schema definition to use in place of this
|
|
33046
|
+
# schema. The value must be a valid reference to a schema in `defs`. For example,
|
|
33047
|
+
# the following schema defines a reference to a schema node named "Pet": type:
|
|
33048
|
+
# object properties: pet: ref: #/defs/Pet defs: Pet: type: object properties:
|
|
33049
|
+
# name: type: string The value of the "pet" property is a reference to the
|
|
33050
|
+
# schema node named "Pet". See details in https://json-schema.org/understanding-
|
|
33051
|
+
# json-schema/structuring
|
|
32606
33052
|
# Corresponds to the JSON property `ref`
|
|
32607
33053
|
# @return [String]
|
|
32608
33054
|
attr_accessor :ref
|
|
32609
33055
|
|
|
32610
|
-
# Optional.
|
|
33056
|
+
# Optional. If type is `OBJECT`, `required` lists the names of properties that
|
|
33057
|
+
# must be present.
|
|
32611
33058
|
# Corresponds to the JSON property `required`
|
|
32612
33059
|
# @return [Array<String>]
|
|
32613
33060
|
attr_accessor :required
|
|
32614
33061
|
|
|
32615
|
-
# Optional.
|
|
33062
|
+
# Optional. Title for the schema.
|
|
32616
33063
|
# Corresponds to the JSON property `title`
|
|
32617
33064
|
# @return [String]
|
|
32618
33065
|
attr_accessor :title
|
|
32619
33066
|
|
|
32620
|
-
# Optional.
|
|
33067
|
+
# Optional. Data type of the schema field.
|
|
32621
33068
|
# Corresponds to the JSON property `type`
|
|
32622
33069
|
# @return [String]
|
|
32623
33070
|
attr_accessor :type
|
|
@@ -35400,6 +35847,11 @@ module Google
|
|
|
35400
35847
|
# @return [String]
|
|
35401
35848
|
attr_accessor :code_repository_state
|
|
35402
35849
|
|
|
35850
|
+
# Optional. Framework used to build the application.
|
|
35851
|
+
# Corresponds to the JSON property `framework`
|
|
35852
|
+
# @return [String]
|
|
35853
|
+
attr_accessor :framework
|
|
35854
|
+
|
|
35403
35855
|
# Linked resources attached to the application by the user.
|
|
35404
35856
|
# Corresponds to the JSON property `linkedResources`
|
|
35405
35857
|
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaPromptSpecAppBuilderDataLinkedResource>]
|
|
@@ -35412,6 +35864,7 @@ module Google
|
|
|
35412
35864
|
# Update properties of this object
|
|
35413
35865
|
def update!(**args)
|
|
35414
35866
|
@code_repository_state = args[:code_repository_state] if args.key?(:code_repository_state)
|
|
35867
|
+
@framework = args[:framework] if args.key?(:framework)
|
|
35415
35868
|
@linked_resources = args[:linked_resources] if args.key?(:linked_resources)
|
|
35416
35869
|
end
|
|
35417
35870
|
end
|
|
@@ -39120,17 +39573,19 @@ module Google
|
|
|
39120
39573
|
end
|
|
39121
39574
|
end
|
|
39122
39575
|
|
|
39123
|
-
#
|
|
39124
|
-
#
|
|
39576
|
+
# Represents a 2D point in the image. Vertex coordinates are normalized to be
|
|
39577
|
+
# relative to the original image dimensions and range from 0 to 1. The origin of
|
|
39578
|
+
# the coordinate system (0,0) is the top-left corner of the image. x increases
|
|
39579
|
+
# to the right, and y increases to the bottom.
|
|
39125
39580
|
class GoogleCloudAiplatformV1SchemaVertex
|
|
39126
39581
|
include Google::Apis::Core::Hashable
|
|
39127
39582
|
|
|
39128
|
-
# X coordinate.
|
|
39583
|
+
# X coordinate of the vertex, normalized to [0.0, 1.0].
|
|
39129
39584
|
# Corresponds to the JSON property `x`
|
|
39130
39585
|
# @return [Float]
|
|
39131
39586
|
attr_accessor :x
|
|
39132
39587
|
|
|
39133
|
-
# Y coordinate.
|
|
39588
|
+
# Y coordinate of the vertex, normalized to [0.0, 1.0].
|
|
39134
39589
|
# Corresponds to the JSON property `y`
|
|
39135
39590
|
# @return [Float]
|
|
39136
39591
|
attr_accessor :y
|
|
@@ -42427,8 +42882,8 @@ module Google
|
|
|
42427
42882
|
# @return [String]
|
|
42428
42883
|
attr_accessor :display_name
|
|
42429
42884
|
|
|
42430
|
-
# Represents a customer-managed encryption key
|
|
42431
|
-
#
|
|
42885
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
42886
|
+
# to a Vertex AI resource.
|
|
42432
42887
|
# Corresponds to the JSON property `encryptionSpec`
|
|
42433
42888
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
42434
42889
|
attr_accessor :encryption_spec
|
|
@@ -43067,6 +43522,12 @@ module Google
|
|
|
43067
43522
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleSearchRetrieval]
|
|
43068
43523
|
attr_accessor :google_search_retrieval
|
|
43069
43524
|
|
|
43525
|
+
# ParallelAiSearch tool type. A tool that uses the Parallel.ai search engine for
|
|
43526
|
+
# grounding.
|
|
43527
|
+
# Corresponds to the JSON property `parallelAiSearch`
|
|
43528
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolParallelAiSearch]
|
|
43529
|
+
attr_accessor :parallel_ai_search
|
|
43530
|
+
|
|
43070
43531
|
# Defines a retrieval tool that model can call to access external knowledge.
|
|
43071
43532
|
# Corresponds to the JSON property `retrieval`
|
|
43072
43533
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Retrieval]
|
|
@@ -43090,6 +43551,7 @@ module Google
|
|
|
43090
43551
|
@google_maps = args[:google_maps] if args.key?(:google_maps)
|
|
43091
43552
|
@google_search = args[:google_search] if args.key?(:google_search)
|
|
43092
43553
|
@google_search_retrieval = args[:google_search_retrieval] if args.key?(:google_search_retrieval)
|
|
43554
|
+
@parallel_ai_search = args[:parallel_ai_search] if args.key?(:parallel_ai_search)
|
|
43093
43555
|
@retrieval = args[:retrieval] if args.key?(:retrieval)
|
|
43094
43556
|
@url_context = args[:url_context] if args.key?(:url_context)
|
|
43095
43557
|
end
|
|
@@ -43420,6 +43882,42 @@ module Google
|
|
|
43420
43882
|
end
|
|
43421
43883
|
end
|
|
43422
43884
|
|
|
43885
|
+
# ParallelAiSearch tool type. A tool that uses the Parallel.ai search engine for
|
|
43886
|
+
# grounding.
|
|
43887
|
+
class GoogleCloudAiplatformV1ToolParallelAiSearch
|
|
43888
|
+
include Google::Apis::Core::Hashable
|
|
43889
|
+
|
|
43890
|
+
# Optional. The API key for ParallelAiSearch. If an API key is not provided, the
|
|
43891
|
+
# system will attempt to verify access by checking for an active Parallel.ai
|
|
43892
|
+
# subscription through the Google Cloud Marketplace. See https://docs.parallel.
|
|
43893
|
+
# ai/search/search-quickstart for more details.
|
|
43894
|
+
# Corresponds to the JSON property `apiKey`
|
|
43895
|
+
# @return [String]
|
|
43896
|
+
attr_accessor :api_key
|
|
43897
|
+
|
|
43898
|
+
# Optional. Custom configs for ParallelAiSearch. This field can be used to pass
|
|
43899
|
+
# any parameter from the Parallel.ai Search API. See the Parallel.ai
|
|
43900
|
+
# documentation for the full list of available parameters and their usage: https:
|
|
43901
|
+
# //docs.parallel.ai/api-reference/search-beta/search Currently only `
|
|
43902
|
+
# source_policy`, `excerpts`, `max_results`, `mode`, `fetch_policy` can be set
|
|
43903
|
+
# via this field. For example: ` "source_policy": ` "include_domains": ["google.
|
|
43904
|
+
# com", "wikipedia.org"], "exclude_domains": ["example.com"] `, "fetch_policy": `
|
|
43905
|
+
# "max_age_seconds": 3600 ` `
|
|
43906
|
+
# Corresponds to the JSON property `customConfigs`
|
|
43907
|
+
# @return [Hash<String,Object>]
|
|
43908
|
+
attr_accessor :custom_configs
|
|
43909
|
+
|
|
43910
|
+
def initialize(**args)
|
|
43911
|
+
update!(**args)
|
|
43912
|
+
end
|
|
43913
|
+
|
|
43914
|
+
# Update properties of this object
|
|
43915
|
+
def update!(**args)
|
|
43916
|
+
@api_key = args[:api_key] if args.key?(:api_key)
|
|
43917
|
+
@custom_configs = args[:custom_configs] if args.key?(:custom_configs)
|
|
43918
|
+
end
|
|
43919
|
+
end
|
|
43920
|
+
|
|
43423
43921
|
# Input for tool parameter key value match metric.
|
|
43424
43922
|
class GoogleCloudAiplatformV1ToolParameterKvMatchInput
|
|
43425
43923
|
include Google::Apis::Core::Hashable
|
|
@@ -43668,8 +44166,8 @@ module Google
|
|
|
43668
44166
|
# @return [String]
|
|
43669
44167
|
attr_accessor :display_name
|
|
43670
44168
|
|
|
43671
|
-
# Represents a customer-managed encryption key
|
|
43672
|
-
#
|
|
44169
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
44170
|
+
# to a Vertex AI resource.
|
|
43673
44171
|
# Corresponds to the JSON property `encryptionSpec`
|
|
43674
44172
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
43675
44173
|
attr_accessor :encryption_spec
|
|
@@ -44761,8 +45259,8 @@ module Google
|
|
|
44761
45259
|
# @return [String]
|
|
44762
45260
|
attr_accessor :description
|
|
44763
45261
|
|
|
44764
|
-
# Represents a customer-managed encryption key
|
|
44765
|
-
#
|
|
45262
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
45263
|
+
# to a Vertex AI resource.
|
|
44766
45264
|
# Corresponds to the JSON property `encryptionSpec`
|
|
44767
45265
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
|
44768
45266
|
attr_accessor :encryption_spec
|