google-apis-aiplatform_v1beta1 0.46.0 → 0.47.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e1a530b3ef0090a1b885256b8c64db02f6525d7ed2e1df0d9ea7cf399425897c
4
- data.tar.gz: a41833c879f917f82ba59dea9e99bcb11b41aafe96fe9578282627caf3cee618
3
+ metadata.gz: 21bf8dcfdcd72560b5429c5b463f9949e6839337cf36bbd3a0e4fd6b15fcda72
4
+ data.tar.gz: c5dc2b04cb2fba116c414c0b65ba68789327e34f7a3d6e085b5ed741ed160785
5
5
  SHA512:
6
- metadata.gz: 1577d8aed097fd13187a3dbe0cefb35645a44695ce4e05a730d81e01ab59f7289e9be6be84f776554f0269edd645b23d0771a2c201787625bb36529ada8c64a4
7
- data.tar.gz: f28cc4a03e210dfbee1447853722bd4d7235e167445d201174128632d74489aad332e4c0ae66399bf8b6cb9d7981e2e6d4b2a0a52ad570252b85204011369515
6
+ metadata.gz: a34e69621d92be2102d7a4506a94923cbe926b55b93c7405a10c45ca960fc9b77e62d72118631ca4eb9687084b7cdc903c4c966c2463297d13dfdcd776ebf146
7
+ data.tar.gz: a3d2c2f34476b1e46c42d13f022ead2a95432dbabd2d028c53c285ce2ee095015810fe81f50d6c2de44d0fa65fa1b23802dee52ecf774568218376ccec4288d9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.47.0 (2025-05-21)
4
+
5
+ * Regenerated from discovery document revision 20250519
6
+
3
7
  ### v0.46.0 (2025-05-18)
4
8
 
5
9
  * Regenerated from discovery document revision 20250502
@@ -934,6 +934,11 @@ module Google
934
934
  # @return [String]
935
935
  attr_accessor :api_key_secret_version
936
936
 
937
+ # The API key string. Either this or `api_key_secret_version` must be set.
938
+ # Corresponds to the JSON property `apiKeyString`
939
+ # @return [String]
940
+ attr_accessor :api_key_string
941
+
937
942
  def initialize(**args)
938
943
  update!(**args)
939
944
  end
@@ -941,6 +946,7 @@ module Google
941
946
  # Update properties of this object
942
947
  def update!(**args)
943
948
  @api_key_secret_version = args[:api_key_secret_version] if args.key?(:api_key_secret_version)
949
+ @api_key_string = args[:api_key_string] if args.key?(:api_key_string)
944
950
  end
945
951
  end
946
952
 
@@ -10984,6 +10990,104 @@ module Google
10984
10990
  end
10985
10991
  end
10986
10992
 
10993
+ # Retrieve from data source powered by external API for grounding. The external
10994
+ # API is not owned by Google, but need to follow the pre-defined API spec.
10995
+ class GoogleCloudAiplatformV1beta1ExternalApi
10996
+ include Google::Apis::Core::Hashable
10997
+
10998
+ # The generic reusable api auth config. Deprecated. Please use AuthConfig (
10999
+ # google/cloud/aiplatform/master/auth.proto) instead.
11000
+ # Corresponds to the JSON property `apiAuth`
11001
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ApiAuth]
11002
+ attr_accessor :api_auth
11003
+
11004
+ # The API spec that the external API implements.
11005
+ # Corresponds to the JSON property `apiSpec`
11006
+ # @return [String]
11007
+ attr_accessor :api_spec
11008
+
11009
+ # Auth configuration to run the extension.
11010
+ # Corresponds to the JSON property `authConfig`
11011
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AuthConfig]
11012
+ attr_accessor :auth_config
11013
+
11014
+ # The search parameters to use for the ELASTIC_SEARCH spec.
11015
+ # Corresponds to the JSON property `elasticSearchParams`
11016
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExternalApiElasticSearchParams]
11017
+ attr_accessor :elastic_search_params
11018
+
11019
+ # The endpoint of the external API. The system will call the API at this
11020
+ # endpoint to retrieve the data for grounding. Example: https://acme.com:443/
11021
+ # search
11022
+ # Corresponds to the JSON property `endpoint`
11023
+ # @return [String]
11024
+ attr_accessor :endpoint
11025
+
11026
+ # The search parameters to use for SIMPLE_SEARCH spec.
11027
+ # Corresponds to the JSON property `simpleSearchParams`
11028
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExternalApiSimpleSearchParams]
11029
+ attr_accessor :simple_search_params
11030
+
11031
+ def initialize(**args)
11032
+ update!(**args)
11033
+ end
11034
+
11035
+ # Update properties of this object
11036
+ def update!(**args)
11037
+ @api_auth = args[:api_auth] if args.key?(:api_auth)
11038
+ @api_spec = args[:api_spec] if args.key?(:api_spec)
11039
+ @auth_config = args[:auth_config] if args.key?(:auth_config)
11040
+ @elastic_search_params = args[:elastic_search_params] if args.key?(:elastic_search_params)
11041
+ @endpoint = args[:endpoint] if args.key?(:endpoint)
11042
+ @simple_search_params = args[:simple_search_params] if args.key?(:simple_search_params)
11043
+ end
11044
+ end
11045
+
11046
+ # The search parameters to use for the ELASTIC_SEARCH spec.
11047
+ class GoogleCloudAiplatformV1beta1ExternalApiElasticSearchParams
11048
+ include Google::Apis::Core::Hashable
11049
+
11050
+ # The ElasticSearch index to use.
11051
+ # Corresponds to the JSON property `index`
11052
+ # @return [String]
11053
+ attr_accessor :index
11054
+
11055
+ # Optional. Number of hits (chunks) to request. When specified, it is passed to
11056
+ # Elasticsearch as the `num_hits` param.
11057
+ # Corresponds to the JSON property `numHits`
11058
+ # @return [Fixnum]
11059
+ attr_accessor :num_hits
11060
+
11061
+ # The ElasticSearch search template to use.
11062
+ # Corresponds to the JSON property `searchTemplate`
11063
+ # @return [String]
11064
+ attr_accessor :search_template
11065
+
11066
+ def initialize(**args)
11067
+ update!(**args)
11068
+ end
11069
+
11070
+ # Update properties of this object
11071
+ def update!(**args)
11072
+ @index = args[:index] if args.key?(:index)
11073
+ @num_hits = args[:num_hits] if args.key?(:num_hits)
11074
+ @search_template = args[:search_template] if args.key?(:search_template)
11075
+ end
11076
+ end
11077
+
11078
+ # The search parameters to use for SIMPLE_SEARCH spec.
11079
+ class GoogleCloudAiplatformV1beta1ExternalApiSimpleSearchParams
11080
+ include Google::Apis::Core::Hashable
11081
+
11082
+ def initialize(**args)
11083
+ update!(**args)
11084
+ end
11085
+
11086
+ # Update properties of this object
11087
+ def update!(**args)
11088
+ end
11089
+ end
11090
+
10987
11091
  # The fact used in grounding.
10988
11092
  class GoogleCloudAiplatformV1beta1Fact
10989
11093
  include Google::Apis::Core::Hashable
@@ -11883,7 +11987,7 @@ module Google
11883
11987
 
11884
11988
  # Optional. Drift threshold. If calculated difference with baseline data larger
11885
11989
  # than threshold, it will be considered as the feature has drift. If not present,
11886
- # the threshold will be default to 0.3.
11990
+ # the threshold will be default to 0.3. Must be in range [0, 1).
11887
11991
  # Corresponds to the JSON property `driftThreshold`
11888
11992
  # @return [Float]
11889
11993
  attr_accessor :drift_threshold
@@ -16052,6 +16156,16 @@ module Google
16052
16156
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagFileTransformationConfig]
16053
16157
  attr_accessor :rag_file_transformation_config
16054
16158
 
16159
+ # Rebuilds the ANN index to optimize for recall on the imported data. Only
16160
+ # applicable for RagCorpora running on RagManagedDb with `retrieval_strategy`
16161
+ # set to `ANN`. The rebuild will be performed using the existing ANN config set
16162
+ # on the RagCorpus. To change the ANN config, please use the UpdateRagCorpus API.
16163
+ # Default is false, i.e., index is not rebuilt.
16164
+ # Corresponds to the JSON property `rebuildAnnIndex`
16165
+ # @return [Boolean]
16166
+ attr_accessor :rebuild_ann_index
16167
+ alias_method :rebuild_ann_index?, :rebuild_ann_index
16168
+
16055
16169
  # The SharePointSources to pass to ImportRagFiles.
16056
16170
  # Corresponds to the JSON property `sharePointSources`
16057
16171
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SharePointSources]
@@ -16080,6 +16194,7 @@ module Google
16080
16194
  @rag_file_chunking_config = args[:rag_file_chunking_config] if args.key?(:rag_file_chunking_config)
16081
16195
  @rag_file_parsing_config = args[:rag_file_parsing_config] if args.key?(:rag_file_parsing_config)
16082
16196
  @rag_file_transformation_config = args[:rag_file_transformation_config] if args.key?(:rag_file_transformation_config)
16197
+ @rebuild_ann_index = args[:rebuild_ann_index] if args.key?(:rebuild_ann_index)
16083
16198
  @share_point_sources = args[:share_point_sources] if args.key?(:share_point_sources)
16084
16199
  @slack_source = args[:slack_source] if args.key?(:slack_source)
16085
16200
  end
@@ -20928,6 +21043,12 @@ module Google
20928
21043
  # @return [String]
20929
21044
  attr_accessor :display_name
20930
21045
 
21046
+ # Represents a customer-managed encryption key spec that can be applied to a top-
21047
+ # level resource.
21048
+ # Corresponds to the JSON property `encryptionSpec`
21049
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
21050
+ attr_accessor :encryption_spec
21051
+
20931
21052
  # Specification of Model explanation.
20932
21053
  # Corresponds to the JSON property `explanationSpec`
20933
21054
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExplanationSpec]
@@ -20997,6 +21118,7 @@ module Google
20997
21118
  def update!(**args)
20998
21119
  @create_time = args[:create_time] if args.key?(:create_time)
20999
21120
  @display_name = args[:display_name] if args.key?(:display_name)
21121
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
21000
21122
  @explanation_spec = args[:explanation_spec] if args.key?(:explanation_spec)
21001
21123
  @model_monitoring_schema = args[:model_monitoring_schema] if args.key?(:model_monitoring_schema)
21002
21124
  @model_monitoring_target = args[:model_monitoring_target] if args.key?(:model_monitoring_target)
@@ -28355,6 +28477,12 @@ module Google
28355
28477
  # @return [String]
28356
28478
  attr_accessor :display_name
28357
28479
 
28480
+ # Represents a customer-managed encryption key spec that can be applied to a top-
28481
+ # level resource.
28482
+ # Corresponds to the JSON property `encryptionSpec`
28483
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
28484
+ attr_accessor :encryption_spec
28485
+
28358
28486
  # Output only. The resource name of the RagCorpus.
28359
28487
  # Corresponds to the JSON property `name`
28360
28488
  # @return [String]
@@ -28400,6 +28528,7 @@ module Google
28400
28528
  @create_time = args[:create_time] if args.key?(:create_time)
28401
28529
  @description = args[:description] if args.key?(:description)
28402
28530
  @display_name = args[:display_name] if args.key?(:display_name)
28531
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
28403
28532
  @name = args[:name] if args.key?(:name)
28404
28533
  @rag_embedding_model_config = args[:rag_embedding_model_config] if args.key?(:rag_embedding_model_config)
28405
28534
  @rag_files_count = args[:rag_files_count] if args.key?(:rag_files_count)
@@ -28745,7 +28874,7 @@ module Google
28745
28874
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagFileParsingConfigLayoutParser]
28746
28875
  attr_accessor :layout_parser
28747
28876
 
28748
- # Specifies the advanced parsing for RagFiles.
28877
+ # Specifies the LLM parsing for RagFiles.
28749
28878
  # Corresponds to the JSON property `llmParser`
28750
28879
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagFileParsingConfigLlmParser]
28751
28880
  attr_accessor :llm_parser
@@ -28832,7 +28961,7 @@ module Google
28832
28961
  end
28833
28962
  end
28834
28963
 
28835
- # Specifies the advanced parsing for RagFiles.
28964
+ # Specifies the LLM parsing for RagFiles.
28836
28965
  class GoogleCloudAiplatformV1beta1RagFileParsingConfigLlmParser
28837
28966
  include Google::Apis::Core::Hashable
28838
28967
 
@@ -29253,6 +29382,67 @@ module Google
29253
29382
  class GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDb
29254
29383
  include Google::Apis::Core::Hashable
29255
29384
 
29385
+ # Config for ANN search. RagManagedDb uses a tree-based structure to partition
29386
+ # data and facilitate faster searches. As a tradeoff, it requires longer
29387
+ # indexing time and manual triggering of index rebuild via the ImportRagFiles
29388
+ # and UpdateRagCorpus API.
29389
+ # Corresponds to the JSON property `ann`
29390
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbAnn]
29391
+ attr_accessor :ann
29392
+
29393
+ # Config for KNN search.
29394
+ # Corresponds to the JSON property `knn`
29395
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbKnn]
29396
+ attr_accessor :knn
29397
+
29398
+ def initialize(**args)
29399
+ update!(**args)
29400
+ end
29401
+
29402
+ # Update properties of this object
29403
+ def update!(**args)
29404
+ @ann = args[:ann] if args.key?(:ann)
29405
+ @knn = args[:knn] if args.key?(:knn)
29406
+ end
29407
+ end
29408
+
29409
+ # Config for ANN search. RagManagedDb uses a tree-based structure to partition
29410
+ # data and facilitate faster searches. As a tradeoff, it requires longer
29411
+ # indexing time and manual triggering of index rebuild via the ImportRagFiles
29412
+ # and UpdateRagCorpus API.
29413
+ class GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbAnn
29414
+ include Google::Apis::Core::Hashable
29415
+
29416
+ # Number of leaf nodes in the tree-based structure. Each leaf node contains
29417
+ # groups of closely related vectors along with their corresponding centroid.
29418
+ # Recommended value is 10 * sqrt(num of RagFiles in your RagCorpus). Default
29419
+ # value is 500.
29420
+ # Corresponds to the JSON property `leafCount`
29421
+ # @return [Fixnum]
29422
+ attr_accessor :leaf_count
29423
+
29424
+ # The depth of the tree-based structure. Only depth values of 2 and 3 are
29425
+ # supported. Recommended value is 2 if you have if you have O(10K) files in the
29426
+ # RagCorpus and set this to 3 if more than that. Default value is 2.
29427
+ # Corresponds to the JSON property `treeDepth`
29428
+ # @return [Fixnum]
29429
+ attr_accessor :tree_depth
29430
+
29431
+ def initialize(**args)
29432
+ update!(**args)
29433
+ end
29434
+
29435
+ # Update properties of this object
29436
+ def update!(**args)
29437
+ @leaf_count = args[:leaf_count] if args.key?(:leaf_count)
29438
+ @tree_depth = args[:tree_depth] if args.key?(:tree_depth)
29439
+ end
29440
+ end
29441
+
29442
+ # Config for KNN search.
29443
+ class GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbKnn
29444
+ include Google::Apis::Core::Hashable
29445
+
29256
29446
  def initialize(**args)
29257
29447
  update!(**args)
29258
29448
  end
@@ -30546,6 +30736,12 @@ module Google
30546
30736
  attr_accessor :disable_attribution
30547
30737
  alias_method :disable_attribution?, :disable_attribution
30548
30738
 
30739
+ # Retrieve from data source powered by external API for grounding. The external
30740
+ # API is not owned by Google, but need to follow the pre-defined API spec.
30741
+ # Corresponds to the JSON property `externalApi`
30742
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExternalApi]
30743
+ attr_accessor :external_api
30744
+
30549
30745
  # Retrieve from Vertex AI Search datastore or engine for grounding. datastore
30550
30746
  # and engine are mutually exclusive. See https://cloud.google.com/products/agent-
30551
30747
  # builder
@@ -30565,6 +30761,7 @@ module Google
30565
30761
  # Update properties of this object
30566
30762
  def update!(**args)
30567
30763
  @disable_attribution = args[:disable_attribution] if args.key?(:disable_attribution)
30764
+ @external_api = args[:external_api] if args.key?(:external_api)
30568
30765
  @vertex_ai_search = args[:vertex_ai_search] if args.key?(:vertex_ai_search)
30569
30766
  @vertex_rag_store = args[:vertex_rag_store] if args.key?(:vertex_rag_store)
30570
30767
  end
@@ -45526,6 +45723,13 @@ module Google
45526
45723
  class GoogleCloudAiplatformV1beta1VertexAiSearch
45527
45724
  include Google::Apis::Core::Hashable
45528
45725
 
45726
+ # Specifications that define the specific DataStores to be searched, along with
45727
+ # configurations for those data stores. This is only considered for Engines with
45728
+ # multiple data stores. It should only be set if engine is used.
45729
+ # Corresponds to the JSON property `dataStoreSpecs`
45730
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VertexAiSearchDataStoreSpec>]
45731
+ attr_accessor :data_store_specs
45732
+
45529
45733
  # Optional. Fully-qualified Vertex AI Search data store resource ID. Format: `
45530
45734
  # projects/`project`/locations/`location`/collections/`collection`/dataStores/`
45531
45735
  # dataStore``
@@ -45557,6 +45761,7 @@ module Google
45557
45761
 
45558
45762
  # Update properties of this object
45559
45763
  def update!(**args)
45764
+ @data_store_specs = args[:data_store_specs] if args.key?(:data_store_specs)
45560
45765
  @datastore = args[:datastore] if args.key?(:datastore)
45561
45766
  @engine = args[:engine] if args.key?(:engine)
45562
45767
  @filter = args[:filter] if args.key?(:filter)
@@ -45564,6 +45769,37 @@ module Google
45564
45769
  end
45565
45770
  end
45566
45771
 
45772
+ # Define data stores within engine to filter on in a search call and
45773
+ # configurations for those data stores. For more information, see https://cloud.
45774
+ # google.com/generative-ai-app-builder/docs/reference/rpc/google.cloud.
45775
+ # discoveryengine.v1#datastorespec
45776
+ class GoogleCloudAiplatformV1beta1VertexAiSearchDataStoreSpec
45777
+ include Google::Apis::Core::Hashable
45778
+
45779
+ # Full resource name of DataStore, such as Format: `projects/`project`/locations/
45780
+ # `location`/collections/`collection`/dataStores/`dataStore``
45781
+ # Corresponds to the JSON property `dataStore`
45782
+ # @return [String]
45783
+ attr_accessor :data_store
45784
+
45785
+ # Optional. Filter specification to filter documents in the data store specified
45786
+ # by data_store field. For more information on filtering, see [Filtering](https:/
45787
+ # /cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
45788
+ # Corresponds to the JSON property `filter`
45789
+ # @return [String]
45790
+ attr_accessor :filter
45791
+
45792
+ def initialize(**args)
45793
+ update!(**args)
45794
+ end
45795
+
45796
+ # Update properties of this object
45797
+ def update!(**args)
45798
+ @data_store = args[:data_store] if args.key?(:data_store)
45799
+ @filter = args[:filter] if args.key?(:filter)
45800
+ end
45801
+ end
45802
+
45567
45803
  # Config for the Vertex AI Search.
45568
45804
  class GoogleCloudAiplatformV1beta1VertexAiSearchConfig
45569
45805
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AiplatformV1beta1
18
18
  # Version of the google-apis-aiplatform_v1beta1 gem
19
- GEM_VERSION = "0.46.0"
19
+ GEM_VERSION = "0.47.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250502"
25
+ REVISION = "20250519"
26
26
  end
27
27
  end
28
28
  end
@@ -1840,6 +1840,24 @@ module Google
1840
1840
  include Google::Apis::Core::JsonObjectSupport
1841
1841
  end
1842
1842
 
1843
+ class GoogleCloudAiplatformV1beta1ExternalApi
1844
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1845
+
1846
+ include Google::Apis::Core::JsonObjectSupport
1847
+ end
1848
+
1849
+ class GoogleCloudAiplatformV1beta1ExternalApiElasticSearchParams
1850
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1851
+
1852
+ include Google::Apis::Core::JsonObjectSupport
1853
+ end
1854
+
1855
+ class GoogleCloudAiplatformV1beta1ExternalApiSimpleSearchParams
1856
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1857
+
1858
+ include Google::Apis::Core::JsonObjectSupport
1859
+ end
1860
+
1843
1861
  class GoogleCloudAiplatformV1beta1Fact
1844
1862
  class Representation < Google::Apis::Core::JsonRepresentation; end
1845
1863
 
@@ -4816,6 +4834,18 @@ module Google
4816
4834
  include Google::Apis::Core::JsonObjectSupport
4817
4835
  end
4818
4836
 
4837
+ class GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbAnn
4838
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4839
+
4840
+ include Google::Apis::Core::JsonObjectSupport
4841
+ end
4842
+
4843
+ class GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbKnn
4844
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4845
+
4846
+ include Google::Apis::Core::JsonObjectSupport
4847
+ end
4848
+
4819
4849
  class GoogleCloudAiplatformV1beta1RagVectorDbConfigVertexFeatureStore
4820
4850
  class Representation < Google::Apis::Core::JsonRepresentation; end
4821
4851
 
@@ -7750,6 +7780,12 @@ module Google
7750
7780
  include Google::Apis::Core::JsonObjectSupport
7751
7781
  end
7752
7782
 
7783
+ class GoogleCloudAiplatformV1beta1VertexAiSearchDataStoreSpec
7784
+ class Representation < Google::Apis::Core::JsonRepresentation; end
7785
+
7786
+ include Google::Apis::Core::JsonObjectSupport
7787
+ end
7788
+
7753
7789
  class GoogleCloudAiplatformV1beta1VertexAiSearchConfig
7754
7790
  class Representation < Google::Apis::Core::JsonRepresentation; end
7755
7791
 
@@ -8213,6 +8249,7 @@ module Google
8213
8249
  # @private
8214
8250
  class Representation < Google::Apis::Core::JsonRepresentation
8215
8251
  property :api_key_secret_version, as: 'apiKeySecretVersion'
8252
+ property :api_key_string, as: 'apiKeyString'
8216
8253
  end
8217
8254
  end
8218
8255
 
@@ -11101,6 +11138,37 @@ module Google
11101
11138
  end
11102
11139
  end
11103
11140
 
11141
+ class GoogleCloudAiplatformV1beta1ExternalApi
11142
+ # @private
11143
+ class Representation < Google::Apis::Core::JsonRepresentation
11144
+ property :api_auth, as: 'apiAuth', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ApiAuth, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ApiAuth::Representation
11145
+
11146
+ property :api_spec, as: 'apiSpec'
11147
+ property :auth_config, as: 'authConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AuthConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AuthConfig::Representation
11148
+
11149
+ property :elastic_search_params, as: 'elasticSearchParams', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExternalApiElasticSearchParams, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExternalApiElasticSearchParams::Representation
11150
+
11151
+ property :endpoint, as: 'endpoint'
11152
+ property :simple_search_params, as: 'simpleSearchParams', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExternalApiSimpleSearchParams, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExternalApiSimpleSearchParams::Representation
11153
+
11154
+ end
11155
+ end
11156
+
11157
+ class GoogleCloudAiplatformV1beta1ExternalApiElasticSearchParams
11158
+ # @private
11159
+ class Representation < Google::Apis::Core::JsonRepresentation
11160
+ property :index, as: 'index'
11161
+ property :num_hits, as: 'numHits'
11162
+ property :search_template, as: 'searchTemplate'
11163
+ end
11164
+ end
11165
+
11166
+ class GoogleCloudAiplatformV1beta1ExternalApiSimpleSearchParams
11167
+ # @private
11168
+ class Representation < Google::Apis::Core::JsonRepresentation
11169
+ end
11170
+ end
11171
+
11104
11172
  class GoogleCloudAiplatformV1beta1Fact
11105
11173
  # @private
11106
11174
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12520,6 +12588,7 @@ module Google
12520
12588
 
12521
12589
  property :rag_file_transformation_config, as: 'ragFileTransformationConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagFileTransformationConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagFileTransformationConfig::Representation
12522
12590
 
12591
+ property :rebuild_ann_index, as: 'rebuildAnnIndex'
12523
12592
  property :share_point_sources, as: 'sharePointSources', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SharePointSources, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SharePointSources::Representation
12524
12593
 
12525
12594
  property :slack_source, as: 'slackSource', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SlackSource, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SlackSource::Representation
@@ -13898,6 +13967,8 @@ module Google
13898
13967
  class Representation < Google::Apis::Core::JsonRepresentation
13899
13968
  property :create_time, as: 'createTime'
13900
13969
  property :display_name, as: 'displayName'
13970
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec::Representation
13971
+
13901
13972
  property :explanation_spec, as: 'explanationSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExplanationSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExplanationSpec::Representation
13902
13973
 
13903
13974
  property :model_monitoring_schema, as: 'modelMonitoringSchema', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringSchema, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringSchema::Representation
@@ -16038,6 +16109,8 @@ module Google
16038
16109
  property :create_time, as: 'createTime'
16039
16110
  property :description, as: 'description'
16040
16111
  property :display_name, as: 'displayName'
16112
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec::Representation
16113
+
16041
16114
  property :name, as: 'name'
16042
16115
  property :rag_embedding_model_config, as: 'ragEmbeddingModelConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig::Representation
16043
16116
 
@@ -16321,6 +16394,24 @@ module Google
16321
16394
  end
16322
16395
 
16323
16396
  class GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDb
16397
+ # @private
16398
+ class Representation < Google::Apis::Core::JsonRepresentation
16399
+ property :ann, as: 'ann', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbAnn, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbAnn::Representation
16400
+
16401
+ property :knn, as: 'knn', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbKnn, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbKnn::Representation
16402
+
16403
+ end
16404
+ end
16405
+
16406
+ class GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbAnn
16407
+ # @private
16408
+ class Representation < Google::Apis::Core::JsonRepresentation
16409
+ property :leaf_count, as: 'leafCount'
16410
+ property :tree_depth, as: 'treeDepth'
16411
+ end
16412
+ end
16413
+
16414
+ class GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbKnn
16324
16415
  # @private
16325
16416
  class Representation < Google::Apis::Core::JsonRepresentation
16326
16417
  end
@@ -16744,6 +16835,8 @@ module Google
16744
16835
  # @private
16745
16836
  class Representation < Google::Apis::Core::JsonRepresentation
16746
16837
  property :disable_attribution, as: 'disableAttribution'
16838
+ property :external_api, as: 'externalApi', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExternalApi, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExternalApi::Representation
16839
+
16747
16840
  property :vertex_ai_search, as: 'vertexAiSearch', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VertexAiSearch, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VertexAiSearch::Representation
16748
16841
 
16749
16842
  property :vertex_rag_store, as: 'vertexRagStore', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VertexRagStore, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VertexRagStore::Representation
@@ -21029,6 +21122,8 @@ module Google
21029
21122
  class GoogleCloudAiplatformV1beta1VertexAiSearch
21030
21123
  # @private
21031
21124
  class Representation < Google::Apis::Core::JsonRepresentation
21125
+ collection :data_store_specs, as: 'dataStoreSpecs', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VertexAiSearchDataStoreSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VertexAiSearchDataStoreSpec::Representation
21126
+
21032
21127
  property :datastore, as: 'datastore'
21033
21128
  property :engine, as: 'engine'
21034
21129
  property :filter, as: 'filter'
@@ -21036,6 +21131,14 @@ module Google
21036
21131
  end
21037
21132
  end
21038
21133
 
21134
+ class GoogleCloudAiplatformV1beta1VertexAiSearchDataStoreSpec
21135
+ # @private
21136
+ class Representation < Google::Apis::Core::JsonRepresentation
21137
+ property :data_store, as: 'dataStore'
21138
+ property :filter, as: 'filter'
21139
+ end
21140
+ end
21141
+
21039
21142
  class GoogleCloudAiplatformV1beta1VertexAiSearchConfig
21040
21143
  # @private
21041
21144
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-aiplatform_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.0
4
+ version: 0.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.46.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.47.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Vertex AI API V1beta1
79
79
  test_files: []