google-apis-aiplatform_v1beta1 0.48.0 → 0.50.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: d9a47818def38e20595eadd75640f9fb5bef75813b580461c99d878508788ad8
4
- data.tar.gz: 437d1e7f5c18b14f8f4c4a68a7f0b129dec759e19b746f22dcaa9f899fa1b82b
3
+ metadata.gz: c37f1bfc13e1fe4497edf81c67137a3293d35e231a14bd7a22f32b01f78fcc78
4
+ data.tar.gz: e1aa970efcb7a53e4c2f9069e37d271eb2e042f8d1af63333c5e5e5404c98a9a
5
5
  SHA512:
6
- metadata.gz: 39071e7a23b9fdcf661ea4dc02e12d72765d727aa2085c0a46857efec15a0be63e4e3413abce0ba1d7390d98d536e92ee38b0ea4aae10647873d04adb5b09879
7
- data.tar.gz: 6fc54559bcf827839d6bd26c32eb84153f59dccce559fa545b4f25e5e1a1889d346b6a6db78330bd84f2896b61a217044e9e76c8cc4ca61555eed796e51c5279
6
+ metadata.gz: aa6bcb7e6a16c1c88ae3147cfaebbff14469115fc3381128d08a45dbed44e8e33ff5f4dadcfe8c26ccd4fb4855c6967be8417e62588b76a8a5c2a889c419f280
7
+ data.tar.gz: 6761273d8f7f42d475626ebf7a33ee026477187fdbfe1c3ce7f79a7c0f2bd3b40336bc6bc8978b7d45c24ed367fec62395a19f6af1862410cc62609dae3b5006
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.50.0 (2025-06-15)
4
+
5
+ * Regenerated from discovery document revision 20250602
6
+
7
+ ### v0.49.0 (2025-06-08)
8
+
9
+ * Regenerated from discovery document revision 20250529
10
+
3
11
  ### v0.48.0 (2025-06-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20250527
@@ -14290,6 +14290,16 @@ module Google
14290
14290
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema]
14291
14291
  attr_accessor :parameters
14292
14292
 
14293
+ # Optional. Describes the parameters to the function in JSON Schema format. The
14294
+ # schema must describe an object where the properties are the parameters to the
14295
+ # function. For example: ``` ` "type": "object", "properties": ` "name": ` "type"
14296
+ # : "string" `, "age": ` "type": "integer" ` `, "additionalProperties": false, "
14297
+ # required": ["name", "age"], "propertyOrdering": ["name", "age"] ` ``` This
14298
+ # field is mutually exclusive with `parameters`.
14299
+ # Corresponds to the JSON property `parametersJsonSchema`
14300
+ # @return [Object]
14301
+ attr_accessor :parameters_json_schema
14302
+
14293
14303
  # Schema is used to define the format of input/output data. Represents a select
14294
14304
  # subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#
14295
14305
  # schema-object). More fields may be added in the future as needed.
@@ -14297,6 +14307,13 @@ module Google
14297
14307
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema]
14298
14308
  attr_accessor :response
14299
14309
 
14310
+ # Optional. Describes the output from this function in JSON Schema format. The
14311
+ # value specified by the schema is the response value of the function. This
14312
+ # field is mutually exclusive with `response`.
14313
+ # Corresponds to the JSON property `responseJsonSchema`
14314
+ # @return [Object]
14315
+ attr_accessor :response_json_schema
14316
+
14300
14317
  def initialize(**args)
14301
14318
  update!(**args)
14302
14319
  end
@@ -14306,7 +14323,9 @@ module Google
14306
14323
  @description = args[:description] if args.key?(:description)
14307
14324
  @name = args[:name] if args.key?(:name)
14308
14325
  @parameters = args[:parameters] if args.key?(:parameters)
14326
+ @parameters_json_schema = args[:parameters_json_schema] if args.key?(:parameters_json_schema)
14309
14327
  @response = args[:response] if args.key?(:response)
14328
+ @response_json_schema = args[:response_json_schema] if args.key?(:response_json_schema)
14310
14329
  end
14311
14330
  end
14312
14331
 
@@ -14995,6 +15014,23 @@ module Google
14995
15014
  # @return [Float]
14996
15015
  attr_accessor :presence_penalty
14997
15016
 
15017
+ # Optional. Output schema of the generated response. This is an alternative to `
15018
+ # response_schema` that accepts [JSON Schema](https://json-schema.org/). If set,
15019
+ # `response_schema` must be omitted, but `response_mime_type` is required. While
15020
+ # the full JSON Schema may be sent, not all features are supported. Specifically,
15021
+ # only the following properties are supported: - `$id` - `$defs` - `$ref` - `$
15022
+ # anchor` - `type` - `format` - `title` - `description` - `enum` (for strings
15023
+ # and numbers) - `items` - `prefixItems` - `minItems` - `maxItems` - `minimum` -
15024
+ # `maximum` - `anyOf` - `oneOf` (interpreted the same as `anyOf`) - `properties`
15025
+ # - `additionalProperties` - `required` The non-standard `propertyOrdering`
15026
+ # property may also be set. Cyclic references are unrolled to a limited degree
15027
+ # and, as such, may only be used within non-required properties. (Nullable
15028
+ # properties are not sufficient.) If `$ref` is set on a sub-schema, no other
15029
+ # properties, except for than those starting as a `$`, may be set.
15030
+ # Corresponds to the JSON property `responseJsonSchema`
15031
+ # @return [Object]
15032
+ attr_accessor :response_json_schema
15033
+
14998
15034
  # Optional. If true, export the logprobs results in response.
14999
15035
  # Corresponds to the JSON property `responseLogprobs`
15000
15036
  # @return [Boolean]
@@ -15077,6 +15113,7 @@ module Google
15077
15113
  @media_resolution = args[:media_resolution] if args.key?(:media_resolution)
15078
15114
  @model_config = args[:model_config] if args.key?(:model_config)
15079
15115
  @presence_penalty = args[:presence_penalty] if args.key?(:presence_penalty)
15116
+ @response_json_schema = args[:response_json_schema] if args.key?(:response_json_schema)
15080
15117
  @response_logprobs = args[:response_logprobs] if args.key?(:response_logprobs)
15081
15118
  @response_mime_type = args[:response_mime_type] if args.key?(:response_mime_type)
15082
15119
  @response_modalities = args[:response_modalities] if args.key?(:response_modalities)
@@ -25202,12 +25239,19 @@ module Google
25202
25239
  # @return [String]
25203
25240
  attr_accessor :text
25204
25241
 
25205
- # Output only. Indicates if the part is thought from the model.
25242
+ # Optional. Indicates if the part is thought from the model.
25206
25243
  # Corresponds to the JSON property `thought`
25207
25244
  # @return [Boolean]
25208
25245
  attr_accessor :thought
25209
25246
  alias_method :thought?, :thought
25210
25247
 
25248
+ # Optional. An opaque signature for the thought so it can be reused in
25249
+ # subsequent requests.
25250
+ # Corresponds to the JSON property `thoughtSignature`
25251
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
25252
+ # @return [String]
25253
+ attr_accessor :thought_signature
25254
+
25211
25255
  # Metadata describes the input video content.
25212
25256
  # Corresponds to the JSON property `videoMetadata`
25213
25257
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VideoMetadata]
@@ -25227,6 +25271,7 @@ module Google
25227
25271
  @inline_data = args[:inline_data] if args.key?(:inline_data)
25228
25272
  @text = args[:text] if args.key?(:text)
25229
25273
  @thought = args[:thought] if args.key?(:thought)
25274
+ @thought_signature = args[:thought_signature] if args.key?(:thought_signature)
25230
25275
  @video_metadata = args[:video_metadata] if args.key?(:video_metadata)
25231
25276
  end
25232
25277
  end
@@ -28699,6 +28744,11 @@ module Google
28699
28744
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CorpusStatus]
28700
28745
  attr_accessor :corpus_status
28701
28746
 
28747
+ # The config for the corpus type of the RagCorpus.
28748
+ # Corresponds to the JSON property `corpusTypeConfig`
28749
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfig]
28750
+ attr_accessor :corpus_type_config
28751
+
28702
28752
  # Output only. Timestamp when this RagCorpus was created.
28703
28753
  # Corresponds to the JSON property `createTime`
28704
28754
  # @return [String]
@@ -28763,6 +28813,7 @@ module Google
28763
28813
  # Update properties of this object
28764
28814
  def update!(**args)
28765
28815
  @corpus_status = args[:corpus_status] if args.key?(:corpus_status)
28816
+ @corpus_type_config = args[:corpus_type_config] if args.key?(:corpus_type_config)
28766
28817
  @create_time = args[:create_time] if args.key?(:create_time)
28767
28818
  @description = args[:description] if args.key?(:description)
28768
28819
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -28777,6 +28828,63 @@ module Google
28777
28828
  end
28778
28829
  end
28779
28830
 
28831
+ # The config for the corpus type of the RagCorpus.
28832
+ class GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfig
28833
+ include Google::Apis::Core::Hashable
28834
+
28835
+ # Config for the document corpus.
28836
+ # Corresponds to the JSON property `documentCorpus`
28837
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigDocumentCorpus]
28838
+ attr_accessor :document_corpus
28839
+
28840
+ # Config for the memory corpus.
28841
+ # Corresponds to the JSON property `memoryCorpus`
28842
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigMemoryCorpus]
28843
+ attr_accessor :memory_corpus
28844
+
28845
+ def initialize(**args)
28846
+ update!(**args)
28847
+ end
28848
+
28849
+ # Update properties of this object
28850
+ def update!(**args)
28851
+ @document_corpus = args[:document_corpus] if args.key?(:document_corpus)
28852
+ @memory_corpus = args[:memory_corpus] if args.key?(:memory_corpus)
28853
+ end
28854
+ end
28855
+
28856
+ # Config for the document corpus.
28857
+ class GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigDocumentCorpus
28858
+ include Google::Apis::Core::Hashable
28859
+
28860
+ def initialize(**args)
28861
+ update!(**args)
28862
+ end
28863
+
28864
+ # Update properties of this object
28865
+ def update!(**args)
28866
+ end
28867
+ end
28868
+
28869
+ # Config for the memory corpus.
28870
+ class GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigMemoryCorpus
28871
+ include Google::Apis::Core::Hashable
28872
+
28873
+ # Specifies the LLM parsing for RagFiles.
28874
+ # Corresponds to the JSON property `llmParser`
28875
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagFileParsingConfigLlmParser]
28876
+ attr_accessor :llm_parser
28877
+
28878
+ def initialize(**args)
28879
+ update!(**args)
28880
+ end
28881
+
28882
+ # Update properties of this object
28883
+ def update!(**args)
28884
+ @llm_parser = args[:llm_parser] if args.key?(:llm_parser)
28885
+ end
28886
+ end
28887
+
28780
28888
  # Config for the embedding model to use for RAG.
28781
28889
  class GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig
28782
28890
  include Google::Apis::Core::Hashable
@@ -43187,6 +43295,11 @@ module Google
43187
43295
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolCodeExecution]
43188
43296
  attr_accessor :code_execution
43189
43297
 
43298
+ # Tool to support computer use.
43299
+ # Corresponds to the JSON property `computerUse`
43300
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolComputerUse]
43301
+ attr_accessor :computer_use
43302
+
43190
43303
  # Tool to search public web data, powered by Vertex AI Search and Sec4
43191
43304
  # compliance.
43192
43305
  # Corresponds to the JSON property `enterpriseWebSearch`
@@ -43219,6 +43332,11 @@ module Google
43219
43332
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Retrieval]
43220
43333
  attr_accessor :retrieval
43221
43334
 
43335
+ # Tool to support URL context.
43336
+ # Corresponds to the JSON property `urlContext`
43337
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlContext]
43338
+ attr_accessor :url_context
43339
+
43222
43340
  def initialize(**args)
43223
43341
  update!(**args)
43224
43342
  end
@@ -43226,11 +43344,13 @@ module Google
43226
43344
  # Update properties of this object
43227
43345
  def update!(**args)
43228
43346
  @code_execution = args[:code_execution] if args.key?(:code_execution)
43347
+ @computer_use = args[:computer_use] if args.key?(:computer_use)
43229
43348
  @enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
43230
43349
  @function_declarations = args[:function_declarations] if args.key?(:function_declarations)
43231
43350
  @google_search = args[:google_search] if args.key?(:google_search)
43232
43351
  @google_search_retrieval = args[:google_search_retrieval] if args.key?(:google_search_retrieval)
43233
43352
  @retrieval = args[:retrieval] if args.key?(:retrieval)
43353
+ @url_context = args[:url_context] if args.key?(:url_context)
43234
43354
  end
43235
43355
  end
43236
43356
 
@@ -43375,6 +43495,25 @@ module Google
43375
43495
  end
43376
43496
  end
43377
43497
 
43498
+ # Tool to support computer use.
43499
+ class GoogleCloudAiplatformV1beta1ToolComputerUse
43500
+ include Google::Apis::Core::Hashable
43501
+
43502
+ # Required. The environment being operated.
43503
+ # Corresponds to the JSON property `environment`
43504
+ # @return [String]
43505
+ attr_accessor :environment
43506
+
43507
+ def initialize(**args)
43508
+ update!(**args)
43509
+ end
43510
+
43511
+ # Update properties of this object
43512
+ def update!(**args)
43513
+ @environment = args[:environment] if args.key?(:environment)
43514
+ end
43515
+ end
43516
+
43378
43517
  # Tool config. This config is shared for all tools provided in the request.
43379
43518
  class GoogleCloudAiplatformV1beta1ToolConfig
43380
43519
  include Google::Apis::Core::Hashable
@@ -44991,6 +45130,18 @@ module Google
44991
45130
  # @return [String]
44992
45131
  attr_accessor :pipeline_job
44993
45132
 
45133
+ # Output only. Reserved for future use.
45134
+ # Corresponds to the JSON property `satisfiesPzi`
45135
+ # @return [Boolean]
45136
+ attr_accessor :satisfies_pzi
45137
+ alias_method :satisfies_pzi?, :satisfies_pzi
45138
+
45139
+ # Output only. Reserved for future use.
45140
+ # Corresponds to the JSON property `satisfiesPzs`
45141
+ # @return [Boolean]
45142
+ attr_accessor :satisfies_pzs
45143
+ alias_method :satisfies_pzs?, :satisfies_pzs
45144
+
44994
45145
  # The service account that the tuningJob workload runs as. If not specified, the
44995
45146
  # Vertex AI Secure Fine-Tuned Service Agent in the project will be used. See
44996
45147
  # https://cloud.google.com/iam/docs/service-agents#vertex-ai-secure-fine-tuning-
@@ -45056,6 +45207,8 @@ module Google
45056
45207
  @name = args[:name] if args.key?(:name)
45057
45208
  @partner_model_tuning_spec = args[:partner_model_tuning_spec] if args.key?(:partner_model_tuning_spec)
45058
45209
  @pipeline_job = args[:pipeline_job] if args.key?(:pipeline_job)
45210
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
45211
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
45059
45212
  @service_account = args[:service_account] if args.key?(:service_account)
45060
45213
  @start_time = args[:start_time] if args.key?(:start_time)
45061
45214
  @state = args[:state] if args.key?(:state)
@@ -45888,6 +46041,19 @@ module Google
45888
46041
  end
45889
46042
  end
45890
46043
 
46044
+ # Tool to support URL context.
46045
+ class GoogleCloudAiplatformV1beta1UrlContext
46046
+ include Google::Apis::Core::Hashable
46047
+
46048
+ def initialize(**args)
46049
+ update!(**args)
46050
+ end
46051
+
46052
+ # Update properties of this object
46053
+ def update!(**args)
46054
+ end
46055
+ end
46056
+
45891
46057
  # References an API call. It contains more information about long running
45892
46058
  # operation and Jobs that are triggered by the API call.
45893
46059
  class GoogleCloudAiplatformV1beta1UserActionReference
@@ -46088,6 +46254,16 @@ module Google
46088
46254
  # @return [Fixnum]
46089
46255
  attr_accessor :similarity_top_k
46090
46256
 
46257
+ # Optional. Currently only supported for Gemini Multimodal Live API. In Gemini
46258
+ # Multimodal Live API, if `store_context` bool is specified, Gemini will
46259
+ # leverage it to automatically memorize the interactions between the client and
46260
+ # Gemini, and retrieve context when needed to augment the response generation
46261
+ # for users' ongoing and future interactions.
46262
+ # Corresponds to the JSON property `storeContext`
46263
+ # @return [Boolean]
46264
+ attr_accessor :store_context
46265
+ alias_method :store_context?, :store_context
46266
+
46091
46267
  # Optional. Only return results with vector distance smaller than the threshold.
46092
46268
  # Corresponds to the JSON property `vectorDistanceThreshold`
46093
46269
  # @return [Float]
@@ -46103,6 +46279,7 @@ module Google
46103
46279
  @rag_resources = args[:rag_resources] if args.key?(:rag_resources)
46104
46280
  @rag_retrieval_config = args[:rag_retrieval_config] if args.key?(:rag_retrieval_config)
46105
46281
  @similarity_top_k = args[:similarity_top_k] if args.key?(:similarity_top_k)
46282
+ @store_context = args[:store_context] if args.key?(:store_context)
46106
46283
  @vector_distance_threshold = args[:vector_distance_threshold] if args.key?(:vector_distance_threshold)
46107
46284
  end
46108
46285
  end
@@ -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.48.0"
19
+ GEM_VERSION = "0.50.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250527"
25
+ REVISION = "20250602"
26
26
  end
27
27
  end
28
28
  end
@@ -4708,6 +4708,24 @@ module Google
4708
4708
  include Google::Apis::Core::JsonObjectSupport
4709
4709
  end
4710
4710
 
4711
+ class GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfig
4712
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4713
+
4714
+ include Google::Apis::Core::JsonObjectSupport
4715
+ end
4716
+
4717
+ class GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigDocumentCorpus
4718
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4719
+
4720
+ include Google::Apis::Core::JsonObjectSupport
4721
+ end
4722
+
4723
+ class GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigMemoryCorpus
4724
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4725
+
4726
+ include Google::Apis::Core::JsonObjectSupport
4727
+ end
4728
+
4711
4729
  class GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig
4712
4730
  class Representation < Google::Apis::Core::JsonRepresentation; end
4713
4731
 
@@ -7222,6 +7240,12 @@ module Google
7222
7240
  include Google::Apis::Core::JsonObjectSupport
7223
7241
  end
7224
7242
 
7243
+ class GoogleCloudAiplatformV1beta1ToolComputerUse
7244
+ class Representation < Google::Apis::Core::JsonRepresentation; end
7245
+
7246
+ include Google::Apis::Core::JsonObjectSupport
7247
+ end
7248
+
7225
7249
  class GoogleCloudAiplatformV1beta1ToolConfig
7226
7250
  class Representation < Google::Apis::Core::JsonRepresentation; end
7227
7251
 
@@ -7804,6 +7828,12 @@ module Google
7804
7828
  include Google::Apis::Core::JsonObjectSupport
7805
7829
  end
7806
7830
 
7831
+ class GoogleCloudAiplatformV1beta1UrlContext
7832
+ class Representation < Google::Apis::Core::JsonRepresentation; end
7833
+
7834
+ include Google::Apis::Core::JsonObjectSupport
7835
+ end
7836
+
7807
7837
  class GoogleCloudAiplatformV1beta1UserActionReference
7808
7838
  class Representation < Google::Apis::Core::JsonRepresentation; end
7809
7839
 
@@ -12090,8 +12120,10 @@ module Google
12090
12120
  property :name, as: 'name'
12091
12121
  property :parameters, as: 'parameters', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema::Representation
12092
12122
 
12123
+ property :parameters_json_schema, as: 'parametersJsonSchema'
12093
12124
  property :response, as: 'response', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Schema::Representation
12094
12125
 
12126
+ property :response_json_schema, as: 'responseJsonSchema'
12095
12127
  end
12096
12128
  end
12097
12129
 
@@ -12288,6 +12320,7 @@ module Google
12288
12320
  property :model_config, as: 'modelConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerationConfigModelConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerationConfigModelConfig::Representation
12289
12321
 
12290
12322
  property :presence_penalty, as: 'presencePenalty'
12323
+ property :response_json_schema, as: 'responseJsonSchema'
12291
12324
  property :response_logprobs, as: 'responseLogprobs'
12292
12325
  property :response_mime_type, as: 'responseMimeType'
12293
12326
  collection :response_modalities, as: 'responseModalities'
@@ -15221,6 +15254,7 @@ module Google
15221
15254
 
15222
15255
  property :text, as: 'text'
15223
15256
  property :thought, as: 'thought'
15257
+ property :thought_signature, :base64 => true, as: 'thoughtSignature'
15224
15258
  property :video_metadata, as: 'videoMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VideoMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1VideoMetadata::Representation
15225
15259
 
15226
15260
  end
@@ -16218,6 +16252,8 @@ module Google
16218
16252
  class Representation < Google::Apis::Core::JsonRepresentation
16219
16253
  property :corpus_status, as: 'corpusStatus', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CorpusStatus, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CorpusStatus::Representation
16220
16254
 
16255
+ property :corpus_type_config, as: 'corpusTypeConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfig::Representation
16256
+
16221
16257
  property :create_time, as: 'createTime'
16222
16258
  property :description, as: 'description'
16223
16259
  property :display_name, as: 'displayName'
@@ -16237,6 +16273,30 @@ module Google
16237
16273
  end
16238
16274
  end
16239
16275
 
16276
+ class GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfig
16277
+ # @private
16278
+ class Representation < Google::Apis::Core::JsonRepresentation
16279
+ property :document_corpus, as: 'documentCorpus', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigDocumentCorpus, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigDocumentCorpus::Representation
16280
+
16281
+ property :memory_corpus, as: 'memoryCorpus', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigMemoryCorpus, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigMemoryCorpus::Representation
16282
+
16283
+ end
16284
+ end
16285
+
16286
+ class GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigDocumentCorpus
16287
+ # @private
16288
+ class Representation < Google::Apis::Core::JsonRepresentation
16289
+ end
16290
+ end
16291
+
16292
+ class GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigMemoryCorpus
16293
+ # @private
16294
+ class Representation < Google::Apis::Core::JsonRepresentation
16295
+ property :llm_parser, as: 'llmParser', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagFileParsingConfigLlmParser, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagFileParsingConfigLlmParser::Representation
16296
+
16297
+ end
16298
+ end
16299
+
16240
16300
  class GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig
16241
16301
  # @private
16242
16302
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -20288,6 +20348,8 @@ module Google
20288
20348
  class Representation < Google::Apis::Core::JsonRepresentation
20289
20349
  property :code_execution, as: 'codeExecution', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolCodeExecution, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolCodeExecution::Representation
20290
20350
 
20351
+ property :computer_use, as: 'computerUse', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolComputerUse, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ToolComputerUse::Representation
20352
+
20291
20353
  property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnterpriseWebSearch, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnterpriseWebSearch::Representation
20292
20354
 
20293
20355
  collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FunctionDeclaration, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FunctionDeclaration::Representation
@@ -20298,6 +20360,8 @@ module Google
20298
20360
 
20299
20361
  property :retrieval, as: 'retrieval', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Retrieval, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Retrieval::Representation
20300
20362
 
20363
+ property :url_context, as: 'urlContext', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlContext, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlContext::Representation
20364
+
20301
20365
  end
20302
20366
  end
20303
20367
 
@@ -20354,6 +20418,13 @@ module Google
20354
20418
  end
20355
20419
  end
20356
20420
 
20421
+ class GoogleCloudAiplatformV1beta1ToolComputerUse
20422
+ # @private
20423
+ class Representation < Google::Apis::Core::JsonRepresentation
20424
+ property :environment, as: 'environment'
20425
+ end
20426
+ end
20427
+
20357
20428
  class GoogleCloudAiplatformV1beta1ToolConfig
20358
20429
  # @private
20359
20430
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -20893,6 +20964,8 @@ module Google
20893
20964
  property :partner_model_tuning_spec, as: 'partnerModelTuningSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PartnerModelTuningSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PartnerModelTuningSpec::Representation
20894
20965
 
20895
20966
  property :pipeline_job, as: 'pipelineJob'
20967
+ property :satisfies_pzi, as: 'satisfiesPzi'
20968
+ property :satisfies_pzs, as: 'satisfiesPzs'
20896
20969
  property :service_account, as: 'serviceAccount'
20897
20970
  property :start_time, as: 'startTime'
20898
20971
  property :state, as: 'state'
@@ -21213,6 +21286,12 @@ module Google
21213
21286
  end
21214
21287
  end
21215
21288
 
21289
+ class GoogleCloudAiplatformV1beta1UrlContext
21290
+ # @private
21291
+ class Representation < Google::Apis::Core::JsonRepresentation
21292
+ end
21293
+ end
21294
+
21216
21295
  class GoogleCloudAiplatformV1beta1UserActionReference
21217
21296
  # @private
21218
21297
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -21267,6 +21346,7 @@ module Google
21267
21346
  property :rag_retrieval_config, as: 'ragRetrievalConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagRetrievalConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RagRetrievalConfig::Representation
21268
21347
 
21269
21348
  property :similarity_top_k, as: 'similarityTopK'
21349
+ property :store_context, as: 'storeContext'
21270
21350
  property :vector_distance_threshold, as: 'vectorDistanceThreshold'
21271
21351
  end
21272
21352
  end
@@ -22339,6 +22339,332 @@ module Google
22339
22339
  execute_or_queue_command(command, &block)
22340
22340
  end
22341
22341
 
22342
+ # Starts asynchronous cancellation on a long-running operation. The server makes
22343
+ # a best effort to cancel the operation, but success is not guaranteed. If the
22344
+ # server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
22345
+ # Clients can use Operations.GetOperation or other methods to check whether the
22346
+ # cancellation succeeded or whether the operation completed despite cancellation.
22347
+ # On successful cancellation, the operation is not deleted; instead, it becomes
22348
+ # an operation with an Operation.error value with a google.rpc.Status.code of `1`
22349
+ # , corresponding to `Code.CANCELLED`.
22350
+ # @param [String] name
22351
+ # The name of the operation resource to be cancelled.
22352
+ # @param [String] fields
22353
+ # Selector specifying which fields to include in a partial response.
22354
+ # @param [String] quota_user
22355
+ # Available to use for quota purposes for server-side applications. Can be any
22356
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
22357
+ # @param [Google::Apis::RequestOptions] options
22358
+ # Request-specific options
22359
+ #
22360
+ # @yield [result, err] Result & error if block supplied
22361
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
22362
+ # @yieldparam err [StandardError] error object if request failed
22363
+ #
22364
+ # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
22365
+ #
22366
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
22367
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
22368
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
22369
+ def cancel_project_location_reasoning_engine_example_operation(name, fields: nil, quota_user: nil, options: nil, &block)
22370
+ command = make_simple_command(:post, 'v1beta1/{+name}:cancel', options)
22371
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
22372
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
22373
+ command.params['name'] = name unless name.nil?
22374
+ command.query['fields'] = fields unless fields.nil?
22375
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
22376
+ execute_or_queue_command(command, &block)
22377
+ end
22378
+
22379
+ # Deletes a long-running operation. This method indicates that the client is no
22380
+ # longer interested in the operation result. It does not cancel the operation.
22381
+ # If the server doesn't support this method, it returns `google.rpc.Code.
22382
+ # UNIMPLEMENTED`.
22383
+ # @param [String] name
22384
+ # The name of the operation resource to be deleted.
22385
+ # @param [String] fields
22386
+ # Selector specifying which fields to include in a partial response.
22387
+ # @param [String] quota_user
22388
+ # Available to use for quota purposes for server-side applications. Can be any
22389
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
22390
+ # @param [Google::Apis::RequestOptions] options
22391
+ # Request-specific options
22392
+ #
22393
+ # @yield [result, err] Result & error if block supplied
22394
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
22395
+ # @yieldparam err [StandardError] error object if request failed
22396
+ #
22397
+ # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
22398
+ #
22399
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
22400
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
22401
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
22402
+ def delete_project_location_reasoning_engine_example_operation(name, fields: nil, quota_user: nil, options: nil, &block)
22403
+ command = make_simple_command(:delete, 'v1beta1/{+name}', options)
22404
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
22405
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
22406
+ command.params['name'] = name unless name.nil?
22407
+ command.query['fields'] = fields unless fields.nil?
22408
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
22409
+ execute_or_queue_command(command, &block)
22410
+ end
22411
+
22412
+ # Gets the latest state of a long-running operation. Clients can use this method
22413
+ # to poll the operation result at intervals as recommended by the API service.
22414
+ # @param [String] name
22415
+ # The name of the operation resource.
22416
+ # @param [String] fields
22417
+ # Selector specifying which fields to include in a partial response.
22418
+ # @param [String] quota_user
22419
+ # Available to use for quota purposes for server-side applications. Can be any
22420
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
22421
+ # @param [Google::Apis::RequestOptions] options
22422
+ # Request-specific options
22423
+ #
22424
+ # @yield [result, err] Result & error if block supplied
22425
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
22426
+ # @yieldparam err [StandardError] error object if request failed
22427
+ #
22428
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
22429
+ #
22430
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
22431
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
22432
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
22433
+ def get_project_location_reasoning_engine_example_operation(name, fields: nil, quota_user: nil, options: nil, &block)
22434
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
22435
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
22436
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
22437
+ command.params['name'] = name unless name.nil?
22438
+ command.query['fields'] = fields unless fields.nil?
22439
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
22440
+ execute_or_queue_command(command, &block)
22441
+ end
22442
+
22443
+ # Waits until the specified long-running operation is done or reaches at most a
22444
+ # specified timeout, returning the latest state. If the operation is already
22445
+ # done, the latest state is immediately returned. If the timeout specified is
22446
+ # greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If
22447
+ # the server does not support this method, it returns `google.rpc.Code.
22448
+ # UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return
22449
+ # the latest state before the specified timeout (including immediately), meaning
22450
+ # even an immediate response is no guarantee that the operation is done.
22451
+ # @param [String] name
22452
+ # The name of the operation resource to wait on.
22453
+ # @param [String] timeout
22454
+ # The maximum duration to wait before timing out. If left blank, the wait will
22455
+ # be at most the time permitted by the underlying HTTP/RPC protocol. If RPC
22456
+ # context deadline is also specified, the shorter one will be used.
22457
+ # @param [String] fields
22458
+ # Selector specifying which fields to include in a partial response.
22459
+ # @param [String] quota_user
22460
+ # Available to use for quota purposes for server-side applications. Can be any
22461
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
22462
+ # @param [Google::Apis::RequestOptions] options
22463
+ # Request-specific options
22464
+ #
22465
+ # @yield [result, err] Result & error if block supplied
22466
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
22467
+ # @yieldparam err [StandardError] error object if request failed
22468
+ #
22469
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
22470
+ #
22471
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
22472
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
22473
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
22474
+ def wait_project_location_reasoning_engine_example_operation(name, timeout: nil, fields: nil, quota_user: nil, options: nil, &block)
22475
+ command = make_simple_command(:post, 'v1beta1/{+name}:wait', options)
22476
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
22477
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
22478
+ command.params['name'] = name unless name.nil?
22479
+ command.query['timeout'] = timeout unless timeout.nil?
22480
+ command.query['fields'] = fields unless fields.nil?
22481
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
22482
+ execute_or_queue_command(command, &block)
22483
+ end
22484
+
22485
+ # Starts asynchronous cancellation on a long-running operation. The server makes
22486
+ # a best effort to cancel the operation, but success is not guaranteed. If the
22487
+ # server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
22488
+ # Clients can use Operations.GetOperation or other methods to check whether the
22489
+ # cancellation succeeded or whether the operation completed despite cancellation.
22490
+ # On successful cancellation, the operation is not deleted; instead, it becomes
22491
+ # an operation with an Operation.error value with a google.rpc.Status.code of `1`
22492
+ # , corresponding to `Code.CANCELLED`.
22493
+ # @param [String] name
22494
+ # The name of the operation resource to be cancelled.
22495
+ # @param [String] fields
22496
+ # Selector specifying which fields to include in a partial response.
22497
+ # @param [String] quota_user
22498
+ # Available to use for quota purposes for server-side applications. Can be any
22499
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
22500
+ # @param [Google::Apis::RequestOptions] options
22501
+ # Request-specific options
22502
+ #
22503
+ # @yield [result, err] Result & error if block supplied
22504
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
22505
+ # @yieldparam err [StandardError] error object if request failed
22506
+ #
22507
+ # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
22508
+ #
22509
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
22510
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
22511
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
22512
+ def cancel_project_location_reasoning_engine_memory_operation(name, fields: nil, quota_user: nil, options: nil, &block)
22513
+ command = make_simple_command(:post, 'v1beta1/{+name}:cancel', options)
22514
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
22515
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
22516
+ command.params['name'] = name unless name.nil?
22517
+ command.query['fields'] = fields unless fields.nil?
22518
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
22519
+ execute_or_queue_command(command, &block)
22520
+ end
22521
+
22522
+ # Deletes a long-running operation. This method indicates that the client is no
22523
+ # longer interested in the operation result. It does not cancel the operation.
22524
+ # If the server doesn't support this method, it returns `google.rpc.Code.
22525
+ # UNIMPLEMENTED`.
22526
+ # @param [String] name
22527
+ # The name of the operation resource to be deleted.
22528
+ # @param [String] fields
22529
+ # Selector specifying which fields to include in a partial response.
22530
+ # @param [String] quota_user
22531
+ # Available to use for quota purposes for server-side applications. Can be any
22532
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
22533
+ # @param [Google::Apis::RequestOptions] options
22534
+ # Request-specific options
22535
+ #
22536
+ # @yield [result, err] Result & error if block supplied
22537
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
22538
+ # @yieldparam err [StandardError] error object if request failed
22539
+ #
22540
+ # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
22541
+ #
22542
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
22543
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
22544
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
22545
+ def delete_project_location_reasoning_engine_memory_operation(name, fields: nil, quota_user: nil, options: nil, &block)
22546
+ command = make_simple_command(:delete, 'v1beta1/{+name}', options)
22547
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
22548
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
22549
+ command.params['name'] = name unless name.nil?
22550
+ command.query['fields'] = fields unless fields.nil?
22551
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
22552
+ execute_or_queue_command(command, &block)
22553
+ end
22554
+
22555
+ # Gets the latest state of a long-running operation. Clients can use this method
22556
+ # to poll the operation result at intervals as recommended by the API service.
22557
+ # @param [String] name
22558
+ # The name of the operation resource.
22559
+ # @param [String] fields
22560
+ # Selector specifying which fields to include in a partial response.
22561
+ # @param [String] quota_user
22562
+ # Available to use for quota purposes for server-side applications. Can be any
22563
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
22564
+ # @param [Google::Apis::RequestOptions] options
22565
+ # Request-specific options
22566
+ #
22567
+ # @yield [result, err] Result & error if block supplied
22568
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
22569
+ # @yieldparam err [StandardError] error object if request failed
22570
+ #
22571
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
22572
+ #
22573
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
22574
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
22575
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
22576
+ def get_project_location_reasoning_engine_memory_operation(name, fields: nil, quota_user: nil, options: nil, &block)
22577
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
22578
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
22579
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
22580
+ command.params['name'] = name unless name.nil?
22581
+ command.query['fields'] = fields unless fields.nil?
22582
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
22583
+ execute_or_queue_command(command, &block)
22584
+ end
22585
+
22586
+ # Lists operations that match the specified filter in the request. If the server
22587
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
22588
+ # @param [String] name
22589
+ # The name of the operation's parent resource.
22590
+ # @param [String] filter
22591
+ # The standard list filter.
22592
+ # @param [Fixnum] page_size
22593
+ # The standard list page size.
22594
+ # @param [String] page_token
22595
+ # The standard list page token.
22596
+ # @param [String] fields
22597
+ # Selector specifying which fields to include in a partial response.
22598
+ # @param [String] quota_user
22599
+ # Available to use for quota purposes for server-side applications. Can be any
22600
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
22601
+ # @param [Google::Apis::RequestOptions] options
22602
+ # Request-specific options
22603
+ #
22604
+ # @yield [result, err] Result & error if block supplied
22605
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse] parsed result object
22606
+ # @yieldparam err [StandardError] error object if request failed
22607
+ #
22608
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse]
22609
+ #
22610
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
22611
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
22612
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
22613
+ def list_project_location_reasoning_engine_memory_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
22614
+ command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
22615
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
22616
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
22617
+ command.params['name'] = name unless name.nil?
22618
+ command.query['filter'] = filter unless filter.nil?
22619
+ command.query['pageSize'] = page_size unless page_size.nil?
22620
+ command.query['pageToken'] = page_token unless page_token.nil?
22621
+ command.query['fields'] = fields unless fields.nil?
22622
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
22623
+ execute_or_queue_command(command, &block)
22624
+ end
22625
+
22626
+ # Waits until the specified long-running operation is done or reaches at most a
22627
+ # specified timeout, returning the latest state. If the operation is already
22628
+ # done, the latest state is immediately returned. If the timeout specified is
22629
+ # greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If
22630
+ # the server does not support this method, it returns `google.rpc.Code.
22631
+ # UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return
22632
+ # the latest state before the specified timeout (including immediately), meaning
22633
+ # even an immediate response is no guarantee that the operation is done.
22634
+ # @param [String] name
22635
+ # The name of the operation resource to wait on.
22636
+ # @param [String] timeout
22637
+ # The maximum duration to wait before timing out. If left blank, the wait will
22638
+ # be at most the time permitted by the underlying HTTP/RPC protocol. If RPC
22639
+ # context deadline is also specified, the shorter one will be used.
22640
+ # @param [String] fields
22641
+ # Selector specifying which fields to include in a partial response.
22642
+ # @param [String] quota_user
22643
+ # Available to use for quota purposes for server-side applications. Can be any
22644
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
22645
+ # @param [Google::Apis::RequestOptions] options
22646
+ # Request-specific options
22647
+ #
22648
+ # @yield [result, err] Result & error if block supplied
22649
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
22650
+ # @yieldparam err [StandardError] error object if request failed
22651
+ #
22652
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
22653
+ #
22654
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
22655
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
22656
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
22657
+ def wait_project_location_reasoning_engine_memory_operation(name, timeout: nil, fields: nil, quota_user: nil, options: nil, &block)
22658
+ command = make_simple_command(:post, 'v1beta1/{+name}:wait', options)
22659
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
22660
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
22661
+ command.params['name'] = name unless name.nil?
22662
+ command.query['timeout'] = timeout unless timeout.nil?
22663
+ command.query['fields'] = fields unless fields.nil?
22664
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
22665
+ execute_or_queue_command(command, &block)
22666
+ end
22667
+
22342
22668
  # Starts asynchronous cancellation on a long-running operation. The server makes
22343
22669
  # a best effort to cancel the operation, but success is not guaranteed. If the
22344
22670
  # server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
@@ -22963,6 +23289,189 @@ module Google
22963
23289
  execute_or_queue_command(command, &block)
22964
23290
  end
22965
23291
 
23292
+ # Starts asynchronous cancellation on a long-running operation. The server makes
23293
+ # a best effort to cancel the operation, but success is not guaranteed. If the
23294
+ # server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
23295
+ # Clients can use Operations.GetOperation or other methods to check whether the
23296
+ # cancellation succeeded or whether the operation completed despite cancellation.
23297
+ # On successful cancellation, the operation is not deleted; instead, it becomes
23298
+ # an operation with an Operation.error value with a google.rpc.Status.code of `1`
23299
+ # , corresponding to `Code.CANCELLED`.
23300
+ # @param [String] name
23301
+ # The name of the operation resource to be cancelled.
23302
+ # @param [String] fields
23303
+ # Selector specifying which fields to include in a partial response.
23304
+ # @param [String] quota_user
23305
+ # Available to use for quota purposes for server-side applications. Can be any
23306
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
23307
+ # @param [Google::Apis::RequestOptions] options
23308
+ # Request-specific options
23309
+ #
23310
+ # @yield [result, err] Result & error if block supplied
23311
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
23312
+ # @yieldparam err [StandardError] error object if request failed
23313
+ #
23314
+ # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
23315
+ #
23316
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
23317
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
23318
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
23319
+ def cancel_project_location_reasoning_engine_session_operation(name, fields: nil, quota_user: nil, options: nil, &block)
23320
+ command = make_simple_command(:post, 'v1beta1/{+name}:cancel', options)
23321
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
23322
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
23323
+ command.params['name'] = name unless name.nil?
23324
+ command.query['fields'] = fields unless fields.nil?
23325
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
23326
+ execute_or_queue_command(command, &block)
23327
+ end
23328
+
23329
+ # Deletes a long-running operation. This method indicates that the client is no
23330
+ # longer interested in the operation result. It does not cancel the operation.
23331
+ # If the server doesn't support this method, it returns `google.rpc.Code.
23332
+ # UNIMPLEMENTED`.
23333
+ # @param [String] name
23334
+ # The name of the operation resource to be deleted.
23335
+ # @param [String] fields
23336
+ # Selector specifying which fields to include in a partial response.
23337
+ # @param [String] quota_user
23338
+ # Available to use for quota purposes for server-side applications. Can be any
23339
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
23340
+ # @param [Google::Apis::RequestOptions] options
23341
+ # Request-specific options
23342
+ #
23343
+ # @yield [result, err] Result & error if block supplied
23344
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
23345
+ # @yieldparam err [StandardError] error object if request failed
23346
+ #
23347
+ # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
23348
+ #
23349
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
23350
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
23351
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
23352
+ def delete_project_location_reasoning_engine_session_operation(name, fields: nil, quota_user: nil, options: nil, &block)
23353
+ command = make_simple_command(:delete, 'v1beta1/{+name}', options)
23354
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
23355
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
23356
+ command.params['name'] = name unless name.nil?
23357
+ command.query['fields'] = fields unless fields.nil?
23358
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
23359
+ execute_or_queue_command(command, &block)
23360
+ end
23361
+
23362
+ # Gets the latest state of a long-running operation. Clients can use this method
23363
+ # to poll the operation result at intervals as recommended by the API service.
23364
+ # @param [String] name
23365
+ # The name of the operation resource.
23366
+ # @param [String] fields
23367
+ # Selector specifying which fields to include in a partial response.
23368
+ # @param [String] quota_user
23369
+ # Available to use for quota purposes for server-side applications. Can be any
23370
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
23371
+ # @param [Google::Apis::RequestOptions] options
23372
+ # Request-specific options
23373
+ #
23374
+ # @yield [result, err] Result & error if block supplied
23375
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
23376
+ # @yieldparam err [StandardError] error object if request failed
23377
+ #
23378
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
23379
+ #
23380
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
23381
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
23382
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
23383
+ def get_project_location_reasoning_engine_session_operation(name, fields: nil, quota_user: nil, options: nil, &block)
23384
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
23385
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
23386
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
23387
+ command.params['name'] = name unless name.nil?
23388
+ command.query['fields'] = fields unless fields.nil?
23389
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
23390
+ execute_or_queue_command(command, &block)
23391
+ end
23392
+
23393
+ # Lists operations that match the specified filter in the request. If the server
23394
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
23395
+ # @param [String] name
23396
+ # The name of the operation's parent resource.
23397
+ # @param [String] filter
23398
+ # The standard list filter.
23399
+ # @param [Fixnum] page_size
23400
+ # The standard list page size.
23401
+ # @param [String] page_token
23402
+ # The standard list page token.
23403
+ # @param [String] fields
23404
+ # Selector specifying which fields to include in a partial response.
23405
+ # @param [String] quota_user
23406
+ # Available to use for quota purposes for server-side applications. Can be any
23407
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
23408
+ # @param [Google::Apis::RequestOptions] options
23409
+ # Request-specific options
23410
+ #
23411
+ # @yield [result, err] Result & error if block supplied
23412
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse] parsed result object
23413
+ # @yieldparam err [StandardError] error object if request failed
23414
+ #
23415
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse]
23416
+ #
23417
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
23418
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
23419
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
23420
+ def list_project_location_reasoning_engine_session_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
23421
+ command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
23422
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
23423
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
23424
+ command.params['name'] = name unless name.nil?
23425
+ command.query['filter'] = filter unless filter.nil?
23426
+ command.query['pageSize'] = page_size unless page_size.nil?
23427
+ command.query['pageToken'] = page_token unless page_token.nil?
23428
+ command.query['fields'] = fields unless fields.nil?
23429
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
23430
+ execute_or_queue_command(command, &block)
23431
+ end
23432
+
23433
+ # Waits until the specified long-running operation is done or reaches at most a
23434
+ # specified timeout, returning the latest state. If the operation is already
23435
+ # done, the latest state is immediately returned. If the timeout specified is
23436
+ # greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If
23437
+ # the server does not support this method, it returns `google.rpc.Code.
23438
+ # UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return
23439
+ # the latest state before the specified timeout (including immediately), meaning
23440
+ # even an immediate response is no guarantee that the operation is done.
23441
+ # @param [String] name
23442
+ # The name of the operation resource to wait on.
23443
+ # @param [String] timeout
23444
+ # The maximum duration to wait before timing out. If left blank, the wait will
23445
+ # be at most the time permitted by the underlying HTTP/RPC protocol. If RPC
23446
+ # context deadline is also specified, the shorter one will be used.
23447
+ # @param [String] fields
23448
+ # Selector specifying which fields to include in a partial response.
23449
+ # @param [String] quota_user
23450
+ # Available to use for quota purposes for server-side applications. Can be any
23451
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
23452
+ # @param [Google::Apis::RequestOptions] options
23453
+ # Request-specific options
23454
+ #
23455
+ # @yield [result, err] Result & error if block supplied
23456
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
23457
+ # @yieldparam err [StandardError] error object if request failed
23458
+ #
23459
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
23460
+ #
23461
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
23462
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
23463
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
23464
+ def wait_project_location_reasoning_engine_session_operation(name, timeout: nil, fields: nil, quota_user: nil, options: nil, &block)
23465
+ command = make_simple_command(:post, 'v1beta1/{+name}:wait', options)
23466
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
23467
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
23468
+ command.params['name'] = name unless name.nil?
23469
+ command.query['timeout'] = timeout unless timeout.nil?
23470
+ command.query['fields'] = fields unless fields.nil?
23471
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
23472
+ execute_or_queue_command(command, &block)
23473
+ end
23474
+
22966
23475
  # Creates a Schedule.
22967
23476
  # @param [String] parent
22968
23477
  # Required. The resource name of the Location to create the Schedule in. Format:
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.48.0
4
+ version: 0.50.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.48.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.50.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: