google-apis-aiplatform_v1beta1 0.69.0 → 0.71.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_v1beta1/classes.rb +391 -125
- data/lib/google/apis/aiplatform_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/aiplatform_v1beta1/representations.rb +105 -0
- data/lib/google/apis/aiplatform_v1beta1/service.rb +89 -48
- metadata +2 -2
|
@@ -2416,8 +2416,8 @@ module Google
|
|
|
2416
2416
|
# @return [String]
|
|
2417
2417
|
attr_accessor :display_name
|
|
2418
2418
|
|
|
2419
|
-
# Represents a customer-managed encryption key
|
|
2420
|
-
#
|
|
2419
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
2420
|
+
# to a Vertex AI resource.
|
|
2421
2421
|
# Corresponds to the JSON property `encryptionSpec`
|
|
2422
2422
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
2423
2423
|
attr_accessor :encryption_spec
|
|
@@ -2665,6 +2665,11 @@ module Google
|
|
|
2665
2665
|
# @return [String]
|
|
2666
2666
|
attr_accessor :instances_format
|
|
2667
2667
|
|
|
2668
|
+
# The Vertex Multimodal Dataset for the input content.
|
|
2669
|
+
# Corresponds to the JSON property `vertexMultimodalDatasetSource`
|
|
2670
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VertexMultimodalDatasetSource]
|
|
2671
|
+
attr_accessor :vertex_multimodal_dataset_source
|
|
2672
|
+
|
|
2668
2673
|
def initialize(**args)
|
|
2669
2674
|
update!(**args)
|
|
2670
2675
|
end
|
|
@@ -2674,6 +2679,7 @@ module Google
|
|
|
2674
2679
|
@bigquery_source = args[:bigquery_source] if args.key?(:bigquery_source)
|
|
2675
2680
|
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
|
2676
2681
|
@instances_format = args[:instances_format] if args.key?(:instances_format)
|
|
2682
|
+
@vertex_multimodal_dataset_source = args[:vertex_multimodal_dataset_source] if args.key?(:vertex_multimodal_dataset_source)
|
|
2677
2683
|
end
|
|
2678
2684
|
end
|
|
2679
2685
|
|
|
@@ -2773,6 +2779,11 @@ module Google
|
|
|
2773
2779
|
# @return [String]
|
|
2774
2780
|
attr_accessor :predictions_format
|
|
2775
2781
|
|
|
2782
|
+
# The details for a Vertex Multimodal Dataset output.
|
|
2783
|
+
# Corresponds to the JSON property `vertexMultimodalDatasetDestination`
|
|
2784
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VertexMultimodalDatasetDestination]
|
|
2785
|
+
attr_accessor :vertex_multimodal_dataset_destination
|
|
2786
|
+
|
|
2776
2787
|
def initialize(**args)
|
|
2777
2788
|
update!(**args)
|
|
2778
2789
|
end
|
|
@@ -2782,6 +2793,7 @@ module Google
|
|
|
2782
2793
|
@bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
|
|
2783
2794
|
@gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
|
|
2784
2795
|
@predictions_format = args[:predictions_format] if args.key?(:predictions_format)
|
|
2796
|
+
@vertex_multimodal_dataset_destination = args[:vertex_multimodal_dataset_destination] if args.key?(:vertex_multimodal_dataset_destination)
|
|
2785
2797
|
end
|
|
2786
2798
|
end
|
|
2787
2799
|
|
|
@@ -2808,6 +2820,13 @@ module Google
|
|
|
2808
2820
|
# @return [String]
|
|
2809
2821
|
attr_accessor :gcs_output_directory
|
|
2810
2822
|
|
|
2823
|
+
# Output only. The resource name of the Vertex Managed Dataset created, into
|
|
2824
|
+
# which the prediction output is written. Format: `projects/`project`/locations/`
|
|
2825
|
+
# location`/datasets/`dataset``
|
|
2826
|
+
# Corresponds to the JSON property `vertexMultimodalDatasetName`
|
|
2827
|
+
# @return [String]
|
|
2828
|
+
attr_accessor :vertex_multimodal_dataset_name
|
|
2829
|
+
|
|
2811
2830
|
def initialize(**args)
|
|
2812
2831
|
update!(**args)
|
|
2813
2832
|
end
|
|
@@ -2817,6 +2836,7 @@ module Google
|
|
|
2817
2836
|
@bigquery_output_dataset = args[:bigquery_output_dataset] if args.key?(:bigquery_output_dataset)
|
|
2818
2837
|
@bigquery_output_table = args[:bigquery_output_table] if args.key?(:bigquery_output_table)
|
|
2819
2838
|
@gcs_output_directory = args[:gcs_output_directory] if args.key?(:gcs_output_directory)
|
|
2839
|
+
@vertex_multimodal_dataset_name = args[:vertex_multimodal_dataset_name] if args.key?(:vertex_multimodal_dataset_name)
|
|
2820
2840
|
end
|
|
2821
2841
|
end
|
|
2822
2842
|
|
|
@@ -3340,8 +3360,8 @@ module Google
|
|
|
3340
3360
|
# @return [String]
|
|
3341
3361
|
attr_accessor :display_name
|
|
3342
3362
|
|
|
3343
|
-
# Represents a customer-managed encryption key
|
|
3344
|
-
#
|
|
3363
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
3364
|
+
# to a Vertex AI resource.
|
|
3345
3365
|
# Corresponds to the JSON property `encryptionSpec`
|
|
3346
3366
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
3347
3367
|
attr_accessor :encryption_spec
|
|
@@ -4732,8 +4752,8 @@ module Google
|
|
|
4732
4752
|
class GoogleCloudAiplatformV1beta1CopyModelRequest
|
|
4733
4753
|
include Google::Apis::Core::Hashable
|
|
4734
4754
|
|
|
4735
|
-
# Represents a customer-managed encryption key
|
|
4736
|
-
#
|
|
4755
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
4756
|
+
# to a Vertex AI resource.
|
|
4737
4757
|
# Corresponds to the JSON property `encryptionSpec`
|
|
4738
4758
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
4739
4759
|
attr_accessor :encryption_spec
|
|
@@ -5785,8 +5805,8 @@ module Google
|
|
|
5785
5805
|
# @return [String]
|
|
5786
5806
|
attr_accessor :display_name
|
|
5787
5807
|
|
|
5788
|
-
# Represents a customer-managed encryption key
|
|
5789
|
-
#
|
|
5808
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
5809
|
+
# to a Vertex AI resource.
|
|
5790
5810
|
# Corresponds to the JSON property `encryptionSpec`
|
|
5791
5811
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
5792
5812
|
attr_accessor :encryption_spec
|
|
@@ -6233,8 +6253,8 @@ module Google
|
|
|
6233
6253
|
# @return [String]
|
|
6234
6254
|
attr_accessor :display_name
|
|
6235
6255
|
|
|
6236
|
-
# Represents a customer-managed encryption key
|
|
6237
|
-
#
|
|
6256
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
6257
|
+
# to a Vertex AI resource.
|
|
6238
6258
|
# Corresponds to the JSON property `encryptionSpec`
|
|
6239
6259
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
6240
6260
|
attr_accessor :encryption_spec
|
|
@@ -6365,8 +6385,8 @@ module Google
|
|
|
6365
6385
|
# @return [String]
|
|
6366
6386
|
attr_accessor :display_name
|
|
6367
6387
|
|
|
6368
|
-
# Represents a customer-managed encryption key
|
|
6369
|
-
#
|
|
6388
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
6389
|
+
# to a Vertex AI resource.
|
|
6370
6390
|
# Corresponds to the JSON property `encryptionSpec`
|
|
6371
6391
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
6372
6392
|
attr_accessor :encryption_spec
|
|
@@ -8078,8 +8098,8 @@ module Google
|
|
|
8078
8098
|
attr_accessor :disable_container_logging
|
|
8079
8099
|
alias_method :disable_container_logging?, :disable_container_logging
|
|
8080
8100
|
|
|
8081
|
-
# Represents a customer-managed encryption key
|
|
8082
|
-
#
|
|
8101
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
8102
|
+
# to a Vertex AI resource.
|
|
8083
8103
|
# Corresponds to the JSON property `encryptionSpec`
|
|
8084
8104
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
8085
8105
|
attr_accessor :encryption_spec
|
|
@@ -8639,15 +8659,15 @@ module Google
|
|
|
8639
8659
|
end
|
|
8640
8660
|
end
|
|
8641
8661
|
|
|
8642
|
-
# Represents a customer-managed encryption key
|
|
8643
|
-
#
|
|
8662
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
8663
|
+
# to a Vertex AI resource.
|
|
8644
8664
|
class GoogleCloudAiplatformV1beta1EncryptionSpec
|
|
8645
8665
|
include Google::Apis::Core::Hashable
|
|
8646
8666
|
|
|
8647
|
-
# Required.
|
|
8648
|
-
# key
|
|
8649
|
-
#
|
|
8650
|
-
#
|
|
8667
|
+
# Required. Resource name of the Cloud KMS key used to protect the resource. The
|
|
8668
|
+
# Cloud KMS key must be in the same region as the resource. It must have the
|
|
8669
|
+
# format `projects/`project`/locations/`location`/keyRings/`key_ring`/cryptoKeys/
|
|
8670
|
+
# `crypto_key``.
|
|
8651
8671
|
# Corresponds to the JSON property `kmsKeyName`
|
|
8652
8672
|
# @return [String]
|
|
8653
8673
|
attr_accessor :kms_key_name
|
|
@@ -8722,8 +8742,8 @@ module Google
|
|
|
8722
8742
|
attr_accessor :enable_private_service_connect
|
|
8723
8743
|
alias_method :enable_private_service_connect?, :enable_private_service_connect
|
|
8724
8744
|
|
|
8725
|
-
# Represents a customer-managed encryption key
|
|
8726
|
-
#
|
|
8745
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
8746
|
+
# to a Vertex AI resource.
|
|
8727
8747
|
# Corresponds to the JSON property `encryptionSpec`
|
|
8728
8748
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
8729
8749
|
attr_accessor :encryption_spec
|
|
@@ -13933,8 +13953,8 @@ module Google
|
|
|
13933
13953
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureOnlineStoreEmbeddingManagement]
|
|
13934
13954
|
attr_accessor :embedding_management
|
|
13935
13955
|
|
|
13936
|
-
# Represents a customer-managed encryption key
|
|
13937
|
-
#
|
|
13956
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
13957
|
+
# to a Vertex AI resource.
|
|
13938
13958
|
# Corresponds to the JSON property `encryptionSpec`
|
|
13939
13959
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
13940
13960
|
attr_accessor :encryption_spec
|
|
@@ -15394,8 +15414,8 @@ module Google
|
|
|
15394
15414
|
# @return [String]
|
|
15395
15415
|
attr_accessor :create_time
|
|
15396
15416
|
|
|
15397
|
-
# Represents a customer-managed encryption key
|
|
15398
|
-
#
|
|
15417
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
15418
|
+
# to a Vertex AI resource.
|
|
15399
15419
|
# Corresponds to the JSON property `encryptionSpec`
|
|
15400
15420
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
15401
15421
|
attr_accessor :encryption_spec
|
|
@@ -16634,9 +16654,8 @@ module Google
|
|
|
16634
16654
|
# @return [String]
|
|
16635
16655
|
attr_accessor :name
|
|
16636
16656
|
|
|
16637
|
-
#
|
|
16638
|
-
#
|
|
16639
|
-
# schema-object). More fields may be added in the future as needed.
|
|
16657
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
16658
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
16640
16659
|
# Corresponds to the JSON property `parameters`
|
|
16641
16660
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema]
|
|
16642
16661
|
attr_accessor :parameters
|
|
@@ -16651,9 +16670,8 @@ module Google
|
|
|
16651
16670
|
# @return [Object]
|
|
16652
16671
|
attr_accessor :parameters_json_schema
|
|
16653
16672
|
|
|
16654
|
-
#
|
|
16655
|
-
#
|
|
16656
|
-
# schema-object). More fields may be added in the future as needed.
|
|
16673
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
16674
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
16657
16675
|
# Corresponds to the JSON property `response`
|
|
16658
16676
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema]
|
|
16659
16677
|
attr_accessor :response
|
|
@@ -17581,6 +17599,17 @@ module Google
|
|
|
17581
17599
|
attr_accessor :disable_memory_revisions
|
|
17582
17600
|
alias_method :disable_memory_revisions?, :disable_memory_revisions
|
|
17583
17601
|
|
|
17602
|
+
# Optional. User-provided metadata for the generated memories. This is not
|
|
17603
|
+
# generated by Memory Bank.
|
|
17604
|
+
# Corresponds to the JSON property `metadata`
|
|
17605
|
+
# @return [Hash<String,Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MemoryMetadataValue>]
|
|
17606
|
+
attr_accessor :metadata
|
|
17607
|
+
|
|
17608
|
+
# Optional. The strategy to use when applying metadata to existing memories.
|
|
17609
|
+
# Corresponds to the JSON property `metadataMergeStrategy`
|
|
17610
|
+
# @return [String]
|
|
17611
|
+
attr_accessor :metadata_merge_strategy
|
|
17612
|
+
|
|
17584
17613
|
# Optional. Timestamp of when the revision is considered expired. If not set,
|
|
17585
17614
|
# the memory revision will be kept until manually deleted.
|
|
17586
17615
|
# Corresponds to the JSON property `revisionExpireTime`
|
|
@@ -17624,6 +17653,8 @@ module Google
|
|
|
17624
17653
|
@direct_memories_source = args[:direct_memories_source] if args.key?(:direct_memories_source)
|
|
17625
17654
|
@disable_consolidation = args[:disable_consolidation] if args.key?(:disable_consolidation)
|
|
17626
17655
|
@disable_memory_revisions = args[:disable_memory_revisions] if args.key?(:disable_memory_revisions)
|
|
17656
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
|
17657
|
+
@metadata_merge_strategy = args[:metadata_merge_strategy] if args.key?(:metadata_merge_strategy)
|
|
17627
17658
|
@revision_expire_time = args[:revision_expire_time] if args.key?(:revision_expire_time)
|
|
17628
17659
|
@revision_labels = args[:revision_labels] if args.key?(:revision_labels)
|
|
17629
17660
|
@revision_ttl = args[:revision_ttl] if args.key?(:revision_ttl)
|
|
@@ -17996,9 +18027,8 @@ module Google
|
|
|
17996
18027
|
# @return [Array<String>]
|
|
17997
18028
|
attr_accessor :response_modalities
|
|
17998
18029
|
|
|
17999
|
-
#
|
|
18000
|
-
#
|
|
18001
|
-
# schema-object). More fields may be added in the future as needed.
|
|
18030
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
18031
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
18002
18032
|
# Corresponds to the JSON property `responseSchema`
|
|
18003
18033
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema]
|
|
18004
18034
|
attr_accessor :response_schema
|
|
@@ -18853,8 +18883,8 @@ module Google
|
|
|
18853
18883
|
# @return [String]
|
|
18854
18884
|
attr_accessor :display_name
|
|
18855
18885
|
|
|
18856
|
-
# Represents a customer-managed encryption key
|
|
18857
|
-
#
|
|
18886
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
18887
|
+
# to a Vertex AI resource.
|
|
18858
18888
|
# Corresponds to the JSON property `encryptionSpec`
|
|
18859
18889
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
18860
18890
|
attr_accessor :encryption_spec
|
|
@@ -19770,8 +19800,8 @@ module Google
|
|
|
19770
19800
|
# @return [String]
|
|
19771
19801
|
attr_accessor :display_name
|
|
19772
19802
|
|
|
19773
|
-
# Represents a customer-managed encryption key
|
|
19774
|
-
#
|
|
19803
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
19804
|
+
# to a Vertex AI resource.
|
|
19775
19805
|
# Corresponds to the JSON property `encryptionSpec`
|
|
19776
19806
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
19777
19807
|
attr_accessor :encryption_spec
|
|
@@ -20096,8 +20126,8 @@ module Google
|
|
|
20096
20126
|
attr_accessor :enable_private_service_connect
|
|
20097
20127
|
alias_method :enable_private_service_connect?, :enable_private_service_connect
|
|
20098
20128
|
|
|
20099
|
-
# Represents a customer-managed encryption key
|
|
20100
|
-
#
|
|
20129
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
20130
|
+
# to a Vertex AI resource.
|
|
20101
20131
|
# Corresponds to the JSON property `encryptionSpec`
|
|
20102
20132
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
20103
20133
|
attr_accessor :encryption_spec
|
|
@@ -22864,6 +22894,13 @@ module Google
|
|
|
22864
22894
|
# @return [String]
|
|
22865
22895
|
attr_accessor :fact
|
|
22866
22896
|
|
|
22897
|
+
# Optional. User-provided metadata for the Memory. This information was provided
|
|
22898
|
+
# when creating, updating, or generating the Memory. It was not generated by
|
|
22899
|
+
# Memory Bank.
|
|
22900
|
+
# Corresponds to the JSON property `metadata`
|
|
22901
|
+
# @return [Hash<String,Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MemoryMetadataValue>]
|
|
22902
|
+
attr_accessor :metadata
|
|
22903
|
+
|
|
22867
22904
|
# Identifier. The resource name of the Memory. Format: `projects/`project`/
|
|
22868
22905
|
# locations/`location`/reasoningEngines/`reasoning_engine`/memories/`memory``
|
|
22869
22906
|
# Corresponds to the JSON property `name`
|
|
@@ -22923,6 +22960,7 @@ module Google
|
|
|
22923
22960
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
22924
22961
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
|
22925
22962
|
@fact = args[:fact] if args.key?(:fact)
|
|
22963
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
|
22926
22964
|
@name = args[:name] if args.key?(:name)
|
|
22927
22965
|
@revision_expire_time = args[:revision_expire_time] if args.key?(:revision_expire_time)
|
|
22928
22966
|
@revision_labels = args[:revision_labels] if args.key?(:revision_labels)
|
|
@@ -23148,6 +23186,103 @@ module Google
|
|
|
23148
23186
|
end
|
|
23149
23187
|
end
|
|
23150
23188
|
|
|
23189
|
+
# A conjunction of filters that will be combined using AND logic.
|
|
23190
|
+
class GoogleCloudAiplatformV1beta1MemoryConjunctionFilter
|
|
23191
|
+
include Google::Apis::Core::Hashable
|
|
23192
|
+
|
|
23193
|
+
# Filters that will combined using AND logic.
|
|
23194
|
+
# Corresponds to the JSON property `filters`
|
|
23195
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MemoryFilter>]
|
|
23196
|
+
attr_accessor :filters
|
|
23197
|
+
|
|
23198
|
+
def initialize(**args)
|
|
23199
|
+
update!(**args)
|
|
23200
|
+
end
|
|
23201
|
+
|
|
23202
|
+
# Update properties of this object
|
|
23203
|
+
def update!(**args)
|
|
23204
|
+
@filters = args[:filters] if args.key?(:filters)
|
|
23205
|
+
end
|
|
23206
|
+
end
|
|
23207
|
+
|
|
23208
|
+
# Filter to apply when retrieving memories.
|
|
23209
|
+
class GoogleCloudAiplatformV1beta1MemoryFilter
|
|
23210
|
+
include Google::Apis::Core::Hashable
|
|
23211
|
+
|
|
23212
|
+
# Key of the filter. For example, "author" would apply to `metadata` entries
|
|
23213
|
+
# with the key "author".
|
|
23214
|
+
# Corresponds to the JSON property `key`
|
|
23215
|
+
# @return [String]
|
|
23216
|
+
attr_accessor :key
|
|
23217
|
+
|
|
23218
|
+
# If true, the filter will be negated.
|
|
23219
|
+
# Corresponds to the JSON property `negate`
|
|
23220
|
+
# @return [Boolean]
|
|
23221
|
+
attr_accessor :negate
|
|
23222
|
+
alias_method :negate?, :negate
|
|
23223
|
+
|
|
23224
|
+
# Operator to apply to the filter. If not set, then EQUAL will be used.
|
|
23225
|
+
# Corresponds to the JSON property `op`
|
|
23226
|
+
# @return [String]
|
|
23227
|
+
attr_accessor :op
|
|
23228
|
+
|
|
23229
|
+
# Memory metadata.
|
|
23230
|
+
# Corresponds to the JSON property `value`
|
|
23231
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MemoryMetadataValue]
|
|
23232
|
+
attr_accessor :value
|
|
23233
|
+
|
|
23234
|
+
def initialize(**args)
|
|
23235
|
+
update!(**args)
|
|
23236
|
+
end
|
|
23237
|
+
|
|
23238
|
+
# Update properties of this object
|
|
23239
|
+
def update!(**args)
|
|
23240
|
+
@key = args[:key] if args.key?(:key)
|
|
23241
|
+
@negate = args[:negate] if args.key?(:negate)
|
|
23242
|
+
@op = args[:op] if args.key?(:op)
|
|
23243
|
+
@value = args[:value] if args.key?(:value)
|
|
23244
|
+
end
|
|
23245
|
+
end
|
|
23246
|
+
|
|
23247
|
+
# Memory metadata.
|
|
23248
|
+
class GoogleCloudAiplatformV1beta1MemoryMetadataValue
|
|
23249
|
+
include Google::Apis::Core::Hashable
|
|
23250
|
+
|
|
23251
|
+
# Boolean value.
|
|
23252
|
+
# Corresponds to the JSON property `boolValue`
|
|
23253
|
+
# @return [Boolean]
|
|
23254
|
+
attr_accessor :bool_value
|
|
23255
|
+
alias_method :bool_value?, :bool_value
|
|
23256
|
+
|
|
23257
|
+
# Double value.
|
|
23258
|
+
# Corresponds to the JSON property `doubleValue`
|
|
23259
|
+
# @return [Float]
|
|
23260
|
+
attr_accessor :double_value
|
|
23261
|
+
|
|
23262
|
+
# String value.
|
|
23263
|
+
# Corresponds to the JSON property `stringValue`
|
|
23264
|
+
# @return [String]
|
|
23265
|
+
attr_accessor :string_value
|
|
23266
|
+
|
|
23267
|
+
# Timestamp value. When filtering on timestamp values, only the seconds field
|
|
23268
|
+
# will be compared.
|
|
23269
|
+
# Corresponds to the JSON property `timestampValue`
|
|
23270
|
+
# @return [String]
|
|
23271
|
+
attr_accessor :timestamp_value
|
|
23272
|
+
|
|
23273
|
+
def initialize(**args)
|
|
23274
|
+
update!(**args)
|
|
23275
|
+
end
|
|
23276
|
+
|
|
23277
|
+
# Update properties of this object
|
|
23278
|
+
def update!(**args)
|
|
23279
|
+
@bool_value = args[:bool_value] if args.key?(:bool_value)
|
|
23280
|
+
@double_value = args[:double_value] if args.key?(:double_value)
|
|
23281
|
+
@string_value = args[:string_value] if args.key?(:string_value)
|
|
23282
|
+
@timestamp_value = args[:timestamp_value] if args.key?(:timestamp_value)
|
|
23283
|
+
end
|
|
23284
|
+
end
|
|
23285
|
+
|
|
23151
23286
|
# A revision of a Memory.
|
|
23152
23287
|
class GoogleCloudAiplatformV1beta1MemoryRevision
|
|
23153
23288
|
include Google::Apis::Core::Hashable
|
|
@@ -23352,8 +23487,8 @@ module Google
|
|
|
23352
23487
|
# @return [String]
|
|
23353
23488
|
attr_accessor :description
|
|
23354
23489
|
|
|
23355
|
-
# Represents a customer-managed encryption key
|
|
23356
|
-
#
|
|
23490
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
23491
|
+
# to a Vertex AI resource.
|
|
23357
23492
|
# Corresponds to the JSON property `encryptionSpec`
|
|
23358
23493
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
23359
23494
|
attr_accessor :encryption_spec
|
|
@@ -24146,8 +24281,8 @@ module Google
|
|
|
24146
24281
|
# @return [String]
|
|
24147
24282
|
attr_accessor :display_name
|
|
24148
24283
|
|
|
24149
|
-
# Represents a customer-managed encryption key
|
|
24150
|
-
#
|
|
24284
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
24285
|
+
# to a Vertex AI resource.
|
|
24151
24286
|
# Corresponds to the JSON property `encryptionSpec`
|
|
24152
24287
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
24153
24288
|
attr_accessor :encryption_spec
|
|
@@ -24760,8 +24895,8 @@ module Google
|
|
|
24760
24895
|
attr_accessor :enable_monitoring_pipeline_logs
|
|
24761
24896
|
alias_method :enable_monitoring_pipeline_logs?, :enable_monitoring_pipeline_logs
|
|
24762
24897
|
|
|
24763
|
-
# Represents a customer-managed encryption key
|
|
24764
|
-
#
|
|
24898
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
24899
|
+
# to a Vertex AI resource.
|
|
24765
24900
|
# Corresponds to the JSON property `encryptionSpec`
|
|
24766
24901
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
24767
24902
|
attr_accessor :encryption_spec
|
|
@@ -25470,8 +25605,8 @@ module Google
|
|
|
25470
25605
|
# @return [String]
|
|
25471
25606
|
attr_accessor :display_name
|
|
25472
25607
|
|
|
25473
|
-
# Represents a customer-managed encryption key
|
|
25474
|
-
#
|
|
25608
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
25609
|
+
# to a Vertex AI resource.
|
|
25475
25610
|
# Corresponds to the JSON property `encryptionSpec`
|
|
25476
25611
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
25477
25612
|
attr_accessor :encryption_spec
|
|
@@ -27288,8 +27423,8 @@ module Google
|
|
|
27288
27423
|
attr_accessor :enable_restricted_image_training
|
|
27289
27424
|
alias_method :enable_restricted_image_training?, :enable_restricted_image_training
|
|
27290
27425
|
|
|
27291
|
-
# Represents a customer-managed encryption key
|
|
27292
|
-
#
|
|
27426
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
27427
|
+
# to a Vertex AI resource.
|
|
27293
27428
|
# Corresponds to the JSON property `encryptionSpec`
|
|
27294
27429
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
27295
27430
|
attr_accessor :encryption_spec
|
|
@@ -28209,8 +28344,8 @@ module Google
|
|
|
28209
28344
|
# @return [String]
|
|
28210
28345
|
attr_accessor :display_name
|
|
28211
28346
|
|
|
28212
|
-
# Represents a customer-managed encryption key
|
|
28213
|
-
#
|
|
28347
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
28348
|
+
# to a Vertex AI resource.
|
|
28214
28349
|
# Corresponds to the JSON property `encryptionSpec`
|
|
28215
28350
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
28216
28351
|
attr_accessor :encryption_spec
|
|
@@ -28540,8 +28675,8 @@ module Google
|
|
|
28540
28675
|
# @return [String]
|
|
28541
28676
|
attr_accessor :display_name
|
|
28542
28677
|
|
|
28543
|
-
# Represents a customer-managed encryption key
|
|
28544
|
-
#
|
|
28678
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
28679
|
+
# to a Vertex AI resource.
|
|
28545
28680
|
# Corresponds to the JSON property `encryptionSpec`
|
|
28546
28681
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
28547
28682
|
attr_accessor :encryption_spec
|
|
@@ -28754,8 +28889,8 @@ module Google
|
|
|
28754
28889
|
# @return [String]
|
|
28755
28890
|
attr_accessor :display_name
|
|
28756
28891
|
|
|
28757
|
-
# Represents a customer-managed encryption key
|
|
28758
|
-
#
|
|
28892
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
28893
|
+
# to a Vertex AI resource.
|
|
28759
28894
|
# Corresponds to the JSON property `encryptionSpec`
|
|
28760
28895
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
28761
28896
|
attr_accessor :encryption_spec
|
|
@@ -29769,8 +29904,8 @@ module Google
|
|
|
29769
29904
|
# @return [String]
|
|
29770
29905
|
attr_accessor :display_name
|
|
29771
29906
|
|
|
29772
|
-
# Represents a customer-managed encryption key
|
|
29773
|
-
#
|
|
29907
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
29908
|
+
# to a Vertex AI resource.
|
|
29774
29909
|
# Corresponds to the JSON property `encryptionSpec`
|
|
29775
29910
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
29776
29911
|
attr_accessor :encryption_spec
|
|
@@ -29912,8 +30047,8 @@ module Google
|
|
|
29912
30047
|
# @return [String]
|
|
29913
30048
|
attr_accessor :display_name
|
|
29914
30049
|
|
|
29915
|
-
# Represents a customer-managed encryption key
|
|
29916
|
-
#
|
|
30050
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
30051
|
+
# to a Vertex AI resource.
|
|
29917
30052
|
# Corresponds to the JSON property `encryptionSpec`
|
|
29918
30053
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
29919
30054
|
attr_accessor :encryption_spec
|
|
@@ -33447,8 +33582,8 @@ module Google
|
|
|
33447
33582
|
# @return [String]
|
|
33448
33583
|
attr_accessor :display_name
|
|
33449
33584
|
|
|
33450
|
-
# Represents a customer-managed encryption key
|
|
33451
|
-
#
|
|
33585
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
33586
|
+
# to a Vertex AI resource.
|
|
33452
33587
|
# Corresponds to the JSON property `encryptionSpec`
|
|
33453
33588
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
33454
33589
|
attr_accessor :encryption_spec
|
|
@@ -35201,8 +35336,8 @@ module Google
|
|
|
35201
35336
|
# @return [String]
|
|
35202
35337
|
attr_accessor :display_name
|
|
35203
35338
|
|
|
35204
|
-
# Represents a customer-managed encryption key
|
|
35205
|
-
#
|
|
35339
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
35340
|
+
# to a Vertex AI resource.
|
|
35206
35341
|
# Corresponds to the JSON property `encryptionSpec`
|
|
35207
35342
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
35208
35343
|
attr_accessor :encryption_spec
|
|
@@ -35747,13 +35882,15 @@ module Google
|
|
|
35747
35882
|
# Optional. The Python module to load as the entrypoint, specified as a fully
|
|
35748
35883
|
# qualified module name. For example: path.to.agent. If not specified, defaults
|
|
35749
35884
|
# to "agent". The project root will be added to Python sys.path, allowing
|
|
35750
|
-
# imports to be specified relative to the root.
|
|
35885
|
+
# imports to be specified relative to the root. This field should not be set if
|
|
35886
|
+
# the source is `agent_config_source`.
|
|
35751
35887
|
# Corresponds to the JSON property `entrypointModule`
|
|
35752
35888
|
# @return [String]
|
|
35753
35889
|
attr_accessor :entrypoint_module
|
|
35754
35890
|
|
|
35755
35891
|
# Optional. The name of the callable object within the `entrypoint_module` to
|
|
35756
|
-
# use as the application If not specified, defaults to "root_agent".
|
|
35892
|
+
# use as the application If not specified, defaults to "root_agent". This field
|
|
35893
|
+
# should not be set if the source is `agent_config_source`.
|
|
35757
35894
|
# Corresponds to the JSON property `entrypointObject`
|
|
35758
35895
|
# @return [String]
|
|
35759
35896
|
attr_accessor :entrypoint_object
|
|
@@ -36712,6 +36849,18 @@ module Google
|
|
|
36712
36849
|
# @return [String]
|
|
36713
36850
|
attr_accessor :filter
|
|
36714
36851
|
|
|
36852
|
+
# Optional. Metadata filters that will be applied to the retrieved memories' `
|
|
36853
|
+
# metadata` using OR logic. Filters are defined using disjunctive normal form (
|
|
36854
|
+
# OR of ANDs). For example: `filter_groups: [`filters: [`key: "author", value: `
|
|
36855
|
+
# string_value: "agent 123"`, op: EQUAL`]`, `filters: [`key: "label", value: `
|
|
36856
|
+
# string_value: "travel"`, op: EQUAL`, `key: "author", value: `string_value: "
|
|
36857
|
+
# agent 321"`, op: EQUAL`]`]` would be equivalent to the logical expression: `(
|
|
36858
|
+
# metadata.author = "agent 123" OR (metadata.label = "travel" AND metadata.
|
|
36859
|
+
# author = "agent 321"))`.
|
|
36860
|
+
# Corresponds to the JSON property `filterGroups`
|
|
36861
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MemoryConjunctionFilter>]
|
|
36862
|
+
attr_accessor :filter_groups
|
|
36863
|
+
|
|
36715
36864
|
# Required. The scope of the memories to retrieve. A memory must have exactly
|
|
36716
36865
|
# the same scope (`Memory.scope`) as the scope provided here to be retrieved (
|
|
36717
36866
|
# same keys and values). Order does not matter, but it is case-sensitive.
|
|
@@ -36736,6 +36885,7 @@ module Google
|
|
|
36736
36885
|
# Update properties of this object
|
|
36737
36886
|
def update!(**args)
|
|
36738
36887
|
@filter = args[:filter] if args.key?(:filter)
|
|
36888
|
+
@filter_groups = args[:filter_groups] if args.key?(:filter_groups)
|
|
36739
36889
|
@scope = args[:scope] if args.key?(:scope)
|
|
36740
36890
|
@similarity_search_params = args[:similarity_search_params] if args.key?(:similarity_search_params)
|
|
36741
36891
|
@simple_retrieval_params = args[:simple_retrieval_params] if args.key?(:simple_retrieval_params)
|
|
@@ -38310,154 +38460,166 @@ module Google
|
|
|
38310
38460
|
end
|
|
38311
38461
|
end
|
|
38312
38462
|
|
|
38313
|
-
#
|
|
38314
|
-
#
|
|
38315
|
-
# schema-object). More fields may be added in the future as needed.
|
|
38463
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
38464
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
38316
38465
|
class GoogleCloudAiplatformV1beta1Schema
|
|
38317
38466
|
include Google::Apis::Core::Hashable
|
|
38318
38467
|
|
|
38319
|
-
# Optional.
|
|
38320
|
-
# additional properties
|
|
38468
|
+
# Optional. If `type` is `OBJECT`, specifies how to handle properties not
|
|
38469
|
+
# defined in `properties`. If it is a boolean `false`, no additional properties
|
|
38470
|
+
# are allowed. If it is a schema, additional properties are allowed if they
|
|
38471
|
+
# conform to the schema.
|
|
38321
38472
|
# Corresponds to the JSON property `additionalProperties`
|
|
38322
38473
|
# @return [Object]
|
|
38323
38474
|
attr_accessor :additional_properties
|
|
38324
38475
|
|
|
38325
|
-
# Optional. The
|
|
38326
|
-
# subschemas in
|
|
38476
|
+
# Optional. The instance must be valid against any (one or more) of the
|
|
38477
|
+
# subschemas listed in `any_of`.
|
|
38327
38478
|
# Corresponds to the JSON property `anyOf`
|
|
38328
38479
|
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema>]
|
|
38329
38480
|
attr_accessor :any_of
|
|
38330
38481
|
|
|
38331
|
-
# Optional. Default value
|
|
38482
|
+
# Optional. Default value to use if the field is not specified.
|
|
38332
38483
|
# Corresponds to the JSON property `default`
|
|
38333
38484
|
# @return [Object]
|
|
38334
38485
|
attr_accessor :default
|
|
38335
38486
|
|
|
38336
|
-
# Optional.
|
|
38337
|
-
# the schema.
|
|
38487
|
+
# Optional. `defs` provides a map of schema definitions that can be reused by `
|
|
38488
|
+
# ref` elsewhere in the schema. Only allowed at root level of the schema.
|
|
38338
38489
|
# Corresponds to the JSON property `defs`
|
|
38339
38490
|
# @return [Hash<String,Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema>]
|
|
38340
38491
|
attr_accessor :defs
|
|
38341
38492
|
|
|
38342
|
-
# Optional.
|
|
38493
|
+
# Optional. Description of the schema.
|
|
38343
38494
|
# Corresponds to the JSON property `description`
|
|
38344
38495
|
# @return [String]
|
|
38345
38496
|
attr_accessor :description
|
|
38346
38497
|
|
|
38347
|
-
# Optional. Possible values of the
|
|
38348
|
-
#
|
|
38349
|
-
#
|
|
38350
|
-
#
|
|
38498
|
+
# Optional. Possible values of the field. This field can be used to restrict a
|
|
38499
|
+
# value to a fixed set of values. To mark a field as an enum, set `format` to `
|
|
38500
|
+
# enum` and provide the list of possible values in `enum`. For example: 1. To
|
|
38501
|
+
# define directions: ``type:STRING, format:enum, enum:["EAST", "NORTH", "SOUTH",
|
|
38502
|
+
# "WEST"]`` 2. To define apartment numbers: ``type:INTEGER, format:enum, enum:["
|
|
38503
|
+
# 101", "201", "301"]``
|
|
38351
38504
|
# Corresponds to the JSON property `enum`
|
|
38352
38505
|
# @return [Array<String>]
|
|
38353
38506
|
attr_accessor :enum
|
|
38354
38507
|
|
|
38355
|
-
# Optional. Example of
|
|
38356
|
-
# root.
|
|
38508
|
+
# Optional. Example of an instance of this schema.
|
|
38357
38509
|
# Corresponds to the JSON property `example`
|
|
38358
38510
|
# @return [Object]
|
|
38359
38511
|
attr_accessor :example
|
|
38360
38512
|
|
|
38361
|
-
# Optional. The format of the data.
|
|
38362
|
-
#
|
|
38363
|
-
#
|
|
38513
|
+
# Optional. The format of the data. For `NUMBER` type, format can be `float` or `
|
|
38514
|
+
# double`. For `INTEGER` type, format can be `int32` or `int64`. For `STRING`
|
|
38515
|
+
# type, format can be `email`, `byte`, `date`, `date-time`, `password`, and
|
|
38516
|
+
# other formats to further refine the data type.
|
|
38364
38517
|
# Corresponds to the JSON property `format`
|
|
38365
38518
|
# @return [String]
|
|
38366
38519
|
attr_accessor :format
|
|
38367
38520
|
|
|
38368
|
-
#
|
|
38369
|
-
#
|
|
38370
|
-
# schema-object). More fields may be added in the future as needed.
|
|
38521
|
+
# Defines the schema of input and output data. This is a subset of the [OpenAPI
|
|
38522
|
+
# 3.0 Schema Object](https://spec.openapis.org/oas/v3.0.3#schema-object).
|
|
38371
38523
|
# Corresponds to the JSON property `items`
|
|
38372
38524
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema]
|
|
38373
38525
|
attr_accessor :items
|
|
38374
38526
|
|
|
38375
|
-
# Optional.
|
|
38527
|
+
# Optional. If type is `ARRAY`, `max_items` specifies the maximum number of
|
|
38528
|
+
# items in an array.
|
|
38376
38529
|
# Corresponds to the JSON property `maxItems`
|
|
38377
38530
|
# @return [Fixnum]
|
|
38378
38531
|
attr_accessor :max_items
|
|
38379
38532
|
|
|
38380
|
-
# Optional.
|
|
38533
|
+
# Optional. If type is `STRING`, `max_length` specifies the maximum length of
|
|
38534
|
+
# the string.
|
|
38381
38535
|
# Corresponds to the JSON property `maxLength`
|
|
38382
38536
|
# @return [Fixnum]
|
|
38383
38537
|
attr_accessor :max_length
|
|
38384
38538
|
|
|
38385
|
-
# Optional.
|
|
38539
|
+
# Optional. If type is `OBJECT`, `max_properties` specifies the maximum number
|
|
38540
|
+
# of properties that can be provided.
|
|
38386
38541
|
# Corresponds to the JSON property `maxProperties`
|
|
38387
38542
|
# @return [Fixnum]
|
|
38388
38543
|
attr_accessor :max_properties
|
|
38389
38544
|
|
|
38390
|
-
# Optional.
|
|
38545
|
+
# Optional. If type is `INTEGER` or `NUMBER`, `maximum` specifies the maximum
|
|
38546
|
+
# allowed value.
|
|
38391
38547
|
# Corresponds to the JSON property `maximum`
|
|
38392
38548
|
# @return [Float]
|
|
38393
38549
|
attr_accessor :maximum
|
|
38394
38550
|
|
|
38395
|
-
# Optional.
|
|
38551
|
+
# Optional. If type is `ARRAY`, `min_items` specifies the minimum number of
|
|
38552
|
+
# items in an array.
|
|
38396
38553
|
# Corresponds to the JSON property `minItems`
|
|
38397
38554
|
# @return [Fixnum]
|
|
38398
38555
|
attr_accessor :min_items
|
|
38399
38556
|
|
|
38400
|
-
# Optional.
|
|
38557
|
+
# Optional. If type is `STRING`, `min_length` specifies the minimum length of
|
|
38558
|
+
# the string.
|
|
38401
38559
|
# Corresponds to the JSON property `minLength`
|
|
38402
38560
|
# @return [Fixnum]
|
|
38403
38561
|
attr_accessor :min_length
|
|
38404
38562
|
|
|
38405
|
-
# Optional.
|
|
38563
|
+
# Optional. If type is `OBJECT`, `min_properties` specifies the minimum number
|
|
38564
|
+
# of properties that can be provided.
|
|
38406
38565
|
# Corresponds to the JSON property `minProperties`
|
|
38407
38566
|
# @return [Fixnum]
|
|
38408
38567
|
attr_accessor :min_properties
|
|
38409
38568
|
|
|
38410
|
-
# Optional.
|
|
38411
|
-
#
|
|
38569
|
+
# Optional. If type is `INTEGER` or `NUMBER`, `minimum` specifies the minimum
|
|
38570
|
+
# allowed value.
|
|
38412
38571
|
# Corresponds to the JSON property `minimum`
|
|
38413
38572
|
# @return [Float]
|
|
38414
38573
|
attr_accessor :minimum
|
|
38415
38574
|
|
|
38416
|
-
# Optional. Indicates if the value
|
|
38575
|
+
# Optional. Indicates if the value of this field can be null.
|
|
38417
38576
|
# Corresponds to the JSON property `nullable`
|
|
38418
38577
|
# @return [Boolean]
|
|
38419
38578
|
attr_accessor :nullable
|
|
38420
38579
|
alias_method :nullable?, :nullable
|
|
38421
38580
|
|
|
38422
|
-
# Optional.
|
|
38423
|
-
#
|
|
38581
|
+
# Optional. If type is `STRING`, `pattern` specifies a regular expression that
|
|
38582
|
+
# the string must match.
|
|
38424
38583
|
# Corresponds to the JSON property `pattern`
|
|
38425
38584
|
# @return [String]
|
|
38426
38585
|
attr_accessor :pattern
|
|
38427
38586
|
|
|
38428
|
-
# Optional.
|
|
38587
|
+
# Optional. If type is `OBJECT`, `properties` is a map of property names to
|
|
38588
|
+
# schema definitions for each property of the object.
|
|
38429
38589
|
# Corresponds to the JSON property `properties`
|
|
38430
38590
|
# @return [Hash<String,Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema>]
|
|
38431
38591
|
attr_accessor :properties
|
|
38432
38592
|
|
|
38433
|
-
# Optional.
|
|
38434
|
-
#
|
|
38593
|
+
# Optional. Order of properties displayed or used where order matters. This is
|
|
38594
|
+
# not a standard field in OpenAPI specification, but can be used to control the
|
|
38595
|
+
# order of properties.
|
|
38435
38596
|
# Corresponds to the JSON property `propertyOrdering`
|
|
38436
38597
|
# @return [Array<String>]
|
|
38437
38598
|
attr_accessor :property_ordering
|
|
38438
38599
|
|
|
38439
|
-
# Optional. Allows
|
|
38440
|
-
# a valid reference to a
|
|
38441
|
-
# schema defines a reference to a schema node named "Pet": type:
|
|
38442
|
-
# properties: pet: ref: #/defs/Pet defs: Pet: type: object properties:
|
|
38443
|
-
# type: string The value of the "pet" property is a reference to the
|
|
38444
|
-
# named "Pet". See details in https://json-schema.org/understanding-
|
|
38445
|
-
# structuring
|
|
38600
|
+
# Optional. Allows referencing another schema definition to use in place of this
|
|
38601
|
+
# schema. The value must be a valid reference to a schema in `defs`. For example,
|
|
38602
|
+
# the following schema defines a reference to a schema node named "Pet": type:
|
|
38603
|
+
# object properties: pet: ref: #/defs/Pet defs: Pet: type: object properties:
|
|
38604
|
+
# name: type: string The value of the "pet" property is a reference to the
|
|
38605
|
+
# schema node named "Pet". See details in https://json-schema.org/understanding-
|
|
38606
|
+
# json-schema/structuring
|
|
38446
38607
|
# Corresponds to the JSON property `ref`
|
|
38447
38608
|
# @return [String]
|
|
38448
38609
|
attr_accessor :ref
|
|
38449
38610
|
|
|
38450
|
-
# Optional.
|
|
38611
|
+
# Optional. If type is `OBJECT`, `required` lists the names of properties that
|
|
38612
|
+
# must be present.
|
|
38451
38613
|
# Corresponds to the JSON property `required`
|
|
38452
38614
|
# @return [Array<String>]
|
|
38453
38615
|
attr_accessor :required
|
|
38454
38616
|
|
|
38455
|
-
# Optional.
|
|
38617
|
+
# Optional. Title for the schema.
|
|
38456
38618
|
# Corresponds to the JSON property `title`
|
|
38457
38619
|
# @return [String]
|
|
38458
38620
|
attr_accessor :title
|
|
38459
38621
|
|
|
38460
|
-
# Optional.
|
|
38622
|
+
# Optional. Data type of the schema field.
|
|
38461
38623
|
# Corresponds to the JSON property `type`
|
|
38462
38624
|
# @return [String]
|
|
38463
38625
|
attr_accessor :type
|
|
@@ -41240,6 +41402,11 @@ module Google
|
|
|
41240
41402
|
# @return [String]
|
|
41241
41403
|
attr_accessor :code_repository_state
|
|
41242
41404
|
|
|
41405
|
+
# Optional. Framework used to build the application.
|
|
41406
|
+
# Corresponds to the JSON property `framework`
|
|
41407
|
+
# @return [String]
|
|
41408
|
+
attr_accessor :framework
|
|
41409
|
+
|
|
41243
41410
|
# Linked resources attached to the application by the user.
|
|
41244
41411
|
# Corresponds to the JSON property `linkedResources`
|
|
41245
41412
|
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SchemaPromptSpecAppBuilderDataLinkedResource>]
|
|
@@ -41252,6 +41419,7 @@ module Google
|
|
|
41252
41419
|
# Update properties of this object
|
|
41253
41420
|
def update!(**args)
|
|
41254
41421
|
@code_repository_state = args[:code_repository_state] if args.key?(:code_repository_state)
|
|
41422
|
+
@framework = args[:framework] if args.key?(:framework)
|
|
41255
41423
|
@linked_resources = args[:linked_resources] if args.key?(:linked_resources)
|
|
41256
41424
|
end
|
|
41257
41425
|
end
|
|
@@ -44960,17 +45128,19 @@ module Google
|
|
|
44960
45128
|
end
|
|
44961
45129
|
end
|
|
44962
45130
|
|
|
44963
|
-
#
|
|
44964
|
-
#
|
|
45131
|
+
# Represents a 2D point in the image. Vertex coordinates are normalized to be
|
|
45132
|
+
# relative to the original image dimensions and range from 0 to 1. The origin of
|
|
45133
|
+
# the coordinate system (0,0) is the top-left corner of the image. x increases
|
|
45134
|
+
# to the right, and y increases to the bottom.
|
|
44965
45135
|
class GoogleCloudAiplatformV1beta1SchemaVertex
|
|
44966
45136
|
include Google::Apis::Core::Hashable
|
|
44967
45137
|
|
|
44968
|
-
# X coordinate.
|
|
45138
|
+
# X coordinate of the vertex, normalized to [0.0, 1.0].
|
|
44969
45139
|
# Corresponds to the JSON property `x`
|
|
44970
45140
|
# @return [Float]
|
|
44971
45141
|
attr_accessor :x
|
|
44972
45142
|
|
|
44973
|
-
# Y coordinate.
|
|
45143
|
+
# Y coordinate of the vertex, normalized to [0.0, 1.0].
|
|
44974
45144
|
# Corresponds to the JSON property `y`
|
|
44975
45145
|
# @return [Float]
|
|
44976
45146
|
attr_accessor :y
|
|
@@ -48924,8 +49094,8 @@ module Google
|
|
|
48924
49094
|
# @return [String]
|
|
48925
49095
|
attr_accessor :display_name
|
|
48926
49096
|
|
|
48927
|
-
# Represents a customer-managed encryption key
|
|
48928
|
-
#
|
|
49097
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
49098
|
+
# to a Vertex AI resource.
|
|
48929
49099
|
# Corresponds to the JSON property `encryptionSpec`
|
|
48930
49100
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
48931
49101
|
attr_accessor :encryption_spec
|
|
@@ -49564,6 +49734,12 @@ module Google
|
|
|
49564
49734
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GoogleSearchRetrieval]
|
|
49565
49735
|
attr_accessor :google_search_retrieval
|
|
49566
49736
|
|
|
49737
|
+
# ParallelAiSearch tool type. A tool that uses the Parallel.ai search engine for
|
|
49738
|
+
# grounding.
|
|
49739
|
+
# Corresponds to the JSON property `parallelAiSearch`
|
|
49740
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolParallelAiSearch]
|
|
49741
|
+
attr_accessor :parallel_ai_search
|
|
49742
|
+
|
|
49567
49743
|
# Defines a retrieval tool that model can call to access external knowledge.
|
|
49568
49744
|
# Corresponds to the JSON property `retrieval`
|
|
49569
49745
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Retrieval]
|
|
@@ -49587,6 +49763,7 @@ module Google
|
|
|
49587
49763
|
@google_maps = args[:google_maps] if args.key?(:google_maps)
|
|
49588
49764
|
@google_search = args[:google_search] if args.key?(:google_search)
|
|
49589
49765
|
@google_search_retrieval = args[:google_search_retrieval] if args.key?(:google_search_retrieval)
|
|
49766
|
+
@parallel_ai_search = args[:parallel_ai_search] if args.key?(:parallel_ai_search)
|
|
49590
49767
|
@retrieval = args[:retrieval] if args.key?(:retrieval)
|
|
49591
49768
|
@url_context = args[:url_context] if args.key?(:url_context)
|
|
49592
49769
|
end
|
|
@@ -49917,6 +50094,42 @@ module Google
|
|
|
49917
50094
|
end
|
|
49918
50095
|
end
|
|
49919
50096
|
|
|
50097
|
+
# ParallelAiSearch tool type. A tool that uses the Parallel.ai search engine for
|
|
50098
|
+
# grounding.
|
|
50099
|
+
class GoogleCloudAiplatformV1beta1ToolParallelAiSearch
|
|
50100
|
+
include Google::Apis::Core::Hashable
|
|
50101
|
+
|
|
50102
|
+
# Optional. The API key for ParallelAiSearch. If an API key is not provided, the
|
|
50103
|
+
# system will attempt to verify access by checking for an active Parallel.ai
|
|
50104
|
+
# subscription through the Google Cloud Marketplace. See https://docs.parallel.
|
|
50105
|
+
# ai/search/search-quickstart for more details.
|
|
50106
|
+
# Corresponds to the JSON property `apiKey`
|
|
50107
|
+
# @return [String]
|
|
50108
|
+
attr_accessor :api_key
|
|
50109
|
+
|
|
50110
|
+
# Optional. Custom configs for ParallelAiSearch. This field can be used to pass
|
|
50111
|
+
# any parameter from the Parallel.ai Search API. See the Parallel.ai
|
|
50112
|
+
# documentation for the full list of available parameters and their usage: https:
|
|
50113
|
+
# //docs.parallel.ai/api-reference/search-beta/search Currently only `
|
|
50114
|
+
# source_policy`, `excerpts`, `max_results`, `mode`, `fetch_policy` can be set
|
|
50115
|
+
# via this field. For example: ` "source_policy": ` "include_domains": ["google.
|
|
50116
|
+
# com", "wikipedia.org"], "exclude_domains": ["example.com"] `, "fetch_policy": `
|
|
50117
|
+
# "max_age_seconds": 3600 ` `
|
|
50118
|
+
# Corresponds to the JSON property `customConfigs`
|
|
50119
|
+
# @return [Hash<String,Object>]
|
|
50120
|
+
attr_accessor :custom_configs
|
|
50121
|
+
|
|
50122
|
+
def initialize(**args)
|
|
50123
|
+
update!(**args)
|
|
50124
|
+
end
|
|
50125
|
+
|
|
50126
|
+
# Update properties of this object
|
|
50127
|
+
def update!(**args)
|
|
50128
|
+
@api_key = args[:api_key] if args.key?(:api_key)
|
|
50129
|
+
@custom_configs = args[:custom_configs] if args.key?(:custom_configs)
|
|
50130
|
+
end
|
|
50131
|
+
end
|
|
50132
|
+
|
|
49920
50133
|
# Input for tool parameter key value match metric.
|
|
49921
50134
|
class GoogleCloudAiplatformV1beta1ToolParameterKvMatchInput
|
|
49922
50135
|
include Google::Apis::Core::Hashable
|
|
@@ -50245,8 +50458,8 @@ module Google
|
|
|
50245
50458
|
# @return [String]
|
|
50246
50459
|
attr_accessor :display_name
|
|
50247
50460
|
|
|
50248
|
-
# Represents a customer-managed encryption key
|
|
50249
|
-
#
|
|
50461
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
50462
|
+
# to a Vertex AI resource.
|
|
50250
50463
|
# Corresponds to the JSON property `encryptionSpec`
|
|
50251
50464
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
50252
50465
|
attr_accessor :encryption_spec
|
|
@@ -51360,8 +51573,8 @@ module Google
|
|
|
51360
51573
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DistillationSpec]
|
|
51361
51574
|
attr_accessor :distillation_spec
|
|
51362
51575
|
|
|
51363
|
-
# Represents a customer-managed encryption key
|
|
51364
|
-
#
|
|
51576
|
+
# Represents a customer-managed encryption key specification that can be applied
|
|
51577
|
+
# to a Vertex AI resource.
|
|
51365
51578
|
# Corresponds to the JSON property `encryptionSpec`
|
|
51366
51579
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
|
|
51367
51580
|
attr_accessor :encryption_spec
|
|
@@ -52625,6 +52838,13 @@ module Google
|
|
|
52625
52838
|
# @return [String]
|
|
52626
52839
|
attr_accessor :tuning_task
|
|
52627
52840
|
|
|
52841
|
+
# Optional. The ratio of Google internal dataset to use in the training mixture,
|
|
52842
|
+
# in range of `[0, 1)`. If `0.2`, it means 20% of Google internal dataset and 80%
|
|
52843
|
+
# of user dataset will be used for training.
|
|
52844
|
+
# Corresponds to the JSON property `veoDataMixtureRatio`
|
|
52845
|
+
# @return [Float]
|
|
52846
|
+
attr_accessor :veo_data_mixture_ratio
|
|
52847
|
+
|
|
52628
52848
|
def initialize(**args)
|
|
52629
52849
|
update!(**args)
|
|
52630
52850
|
end
|
|
@@ -52634,6 +52854,7 @@ module Google
|
|
|
52634
52854
|
@epoch_count = args[:epoch_count] if args.key?(:epoch_count)
|
|
52635
52855
|
@learning_rate_multiplier = args[:learning_rate_multiplier] if args.key?(:learning_rate_multiplier)
|
|
52636
52856
|
@tuning_task = args[:tuning_task] if args.key?(:tuning_task)
|
|
52857
|
+
@veo_data_mixture_ratio = args[:veo_data_mixture_ratio] if args.key?(:veo_data_mixture_ratio)
|
|
52637
52858
|
end
|
|
52638
52859
|
end
|
|
52639
52860
|
|
|
@@ -52778,6 +52999,51 @@ module Google
|
|
|
52778
52999
|
end
|
|
52779
53000
|
end
|
|
52780
53001
|
|
|
53002
|
+
# The details for a Vertex Multimodal Dataset output.
|
|
53003
|
+
class GoogleCloudAiplatformV1beta1VertexMultimodalDatasetDestination
|
|
53004
|
+
include Google::Apis::Core::Hashable
|
|
53005
|
+
|
|
53006
|
+
# The BigQuery location for the output content.
|
|
53007
|
+
# Corresponds to the JSON property `bigqueryDestination`
|
|
53008
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1BigQueryDestination]
|
|
53009
|
+
attr_accessor :bigquery_destination
|
|
53010
|
+
|
|
53011
|
+
# Optional. Display name of the output dataset.
|
|
53012
|
+
# Corresponds to the JSON property `displayName`
|
|
53013
|
+
# @return [String]
|
|
53014
|
+
attr_accessor :display_name
|
|
53015
|
+
|
|
53016
|
+
def initialize(**args)
|
|
53017
|
+
update!(**args)
|
|
53018
|
+
end
|
|
53019
|
+
|
|
53020
|
+
# Update properties of this object
|
|
53021
|
+
def update!(**args)
|
|
53022
|
+
@bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
|
|
53023
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
53024
|
+
end
|
|
53025
|
+
end
|
|
53026
|
+
|
|
53027
|
+
# The Vertex Multimodal Dataset for the input content.
|
|
53028
|
+
class GoogleCloudAiplatformV1beta1VertexMultimodalDatasetSource
|
|
53029
|
+
include Google::Apis::Core::Hashable
|
|
53030
|
+
|
|
53031
|
+
# Required. The resource name of the Vertex Dataset. Format: `projects/`project`/
|
|
53032
|
+
# locations/`location`/datasets/`dataset``
|
|
53033
|
+
# Corresponds to the JSON property `datasetName`
|
|
53034
|
+
# @return [String]
|
|
53035
|
+
attr_accessor :dataset_name
|
|
53036
|
+
|
|
53037
|
+
def initialize(**args)
|
|
53038
|
+
update!(**args)
|
|
53039
|
+
end
|
|
53040
|
+
|
|
53041
|
+
# Update properties of this object
|
|
53042
|
+
def update!(**args)
|
|
53043
|
+
@dataset_name = args[:dataset_name] if args.key?(:dataset_name)
|
|
53044
|
+
end
|
|
53045
|
+
end
|
|
53046
|
+
|
|
52781
53047
|
# Retrieve from Vertex RAG Store for grounding.
|
|
52782
53048
|
class GoogleCloudAiplatformV1beta1VertexRagStore
|
|
52783
53049
|
include Google::Apis::Core::Hashable
|