google-apis-aiplatform_v1beta1 0.40.0 → 0.41.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: 025ab707eb783af9773bfd79ec464b6ac34bfcbe6d2816422047177364cd066c
4
- data.tar.gz: bc209bbd818aafe0bb626958128faeb5f0d2b9e9e6847969b01f6f95649510cf
3
+ metadata.gz: 98d0abc1a71a743f6d0c5e38ef54c38be63dc5e9dd27bf517f106fb9843abb03
4
+ data.tar.gz: 8dee00cbfaa6058583801a95d62e42528c0437cfd5f304a747298629aff4a1a7
5
5
  SHA512:
6
- metadata.gz: 9efbee7a9e3a208f63b9064c4bf893d8972c7a8ab7cb33f8963e6bdc52154fe7770a162057c8ca04b93080bab1c9017e2b844cea38d4f5edd8d8b3eb2582ad52
7
- data.tar.gz: 8790a9d7f807a0aeb6854512bea89a0c9783675b48251a0a6e4082aec4139015d165e399757b2e350b73d58cc693d18db13f0fcfda9669b69b9c39bd00fc1cbd
6
+ metadata.gz: bb3e0157b7c48fbe0f0e426da3fd507602f30ae130b3611f8f88bbc9d0d6cca9ed66a9e547169fdd70143a7a7a84211e06c5ec7598df8475432b9be6f2e90ba3
7
+ data.tar.gz: 0fefb574ab5a9d76336e5d8407f33588befd347369fe366212e976664f826b6dcb5f23c2117bba2acd5be8325548edda2a3c4be3bdb93432d0a4a3c7a61c6e20
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.41.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250319
6
+
3
7
  ### v0.40.0 (2025-03-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20250307
@@ -13239,6 +13239,12 @@ module Google
13239
13239
  # @return [Hash<String,Object>]
13240
13240
  attr_accessor :args
13241
13241
 
13242
+ # Optional. The unique id of the function call. If populated, the client to
13243
+ # execute the `function_call` and return the response with the matching `id`.
13244
+ # Corresponds to the JSON property `id`
13245
+ # @return [String]
13246
+ attr_accessor :id
13247
+
13242
13248
  # Required. The name of the function to call. Matches [FunctionDeclaration.name].
13243
13249
  # Corresponds to the JSON property `name`
13244
13250
  # @return [String]
@@ -13251,6 +13257,7 @@ module Google
13251
13257
  # Update properties of this object
13252
13258
  def update!(**args)
13253
13259
  @args = args[:args] if args.key?(:args)
13260
+ @id = args[:id] if args.key?(:id)
13254
13261
  @name = args[:name] if args.key?(:name)
13255
13262
  end
13256
13263
  end
@@ -13337,6 +13344,12 @@ module Google
13337
13344
  class GoogleCloudAiplatformV1beta1FunctionResponse
13338
13345
  include Google::Apis::Core::Hashable
13339
13346
 
13347
+ # Optional. The id of the function call this response is for. Populated by the
13348
+ # client to match the corresponding function call `id`.
13349
+ # Corresponds to the JSON property `id`
13350
+ # @return [String]
13351
+ attr_accessor :id
13352
+
13340
13353
  # Required. The name of the function to call. Matches [FunctionDeclaration.name]
13341
13354
  # and [FunctionCall.name].
13342
13355
  # Corresponds to the JSON property `name`
@@ -13357,6 +13370,7 @@ module Google
13357
13370
 
13358
13371
  # Update properties of this object
13359
13372
  def update!(**args)
13373
+ @id = args[:id] if args.key?(:id)
13360
13374
  @name = args[:name] if args.key?(:name)
13361
13375
  @response = args[:response] if args.key?(:response)
13362
13376
  end
@@ -14396,6 +14410,11 @@ module Google
14396
14410
  class GoogleCloudAiplatformV1beta1GroundingChunkWeb
14397
14411
  include Google::Apis::Core::Hashable
14398
14412
 
14413
+ # Domain of the (original) URI.
14414
+ # Corresponds to the JSON property `domain`
14415
+ # @return [String]
14416
+ attr_accessor :domain
14417
+
14399
14418
  # Title of the chunk.
14400
14419
  # Corresponds to the JSON property `title`
14401
14420
  # @return [String]
@@ -14412,6 +14431,7 @@ module Google
14412
14431
 
14413
14432
  # Update properties of this object
14414
14433
  def update!(**args)
14434
+ @domain = args[:domain] if args.key?(:domain)
14415
14435
  @title = args[:title] if args.key?(:title)
14416
14436
  @uri = args[:uri] if args.key?(:uri)
14417
14437
  end
@@ -37598,8 +37618,7 @@ module Google
37598
37618
  include Google::Apis::Core::Hashable
37599
37619
 
37600
37620
  # Required. The name of the secret in Cloud Secret Manager. Format: `secret_name`
37601
- # if the secret is in the same project. projects/`project`/secrets/`secret_name`
37602
- # if the secret is in a different project.
37621
+ # .
37603
37622
  # Corresponds to the JSON property `secret`
37604
37623
  # @return [String]
37605
37624
  attr_accessor :secret
@@ -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.40.0"
19
+ GEM_VERSION = "0.41.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250307"
25
+ REVISION = "20250319"
26
26
  end
27
27
  end
28
28
  end
@@ -11295,6 +11295,7 @@ module Google
11295
11295
  # @private
11296
11296
  class Representation < Google::Apis::Core::JsonRepresentation
11297
11297
  hash :args, as: 'args'
11298
+ property :id, as: 'id'
11298
11299
  property :name, as: 'name'
11299
11300
  end
11300
11301
  end
@@ -11322,6 +11323,7 @@ module Google
11322
11323
  class GoogleCloudAiplatformV1beta1FunctionResponse
11323
11324
  # @private
11324
11325
  class Representation < Google::Apis::Core::JsonRepresentation
11326
+ property :id, as: 'id'
11325
11327
  property :name, as: 'name'
11326
11328
  hash :response, as: 'response'
11327
11329
  end
@@ -11636,6 +11638,7 @@ module Google
11636
11638
  class GoogleCloudAiplatformV1beta1GroundingChunkWeb
11637
11639
  # @private
11638
11640
  class Representation < Google::Apis::Core::JsonRepresentation
11641
+ property :domain, as: 'domain'
11639
11642
  property :title, as: 'title'
11640
11643
  property :uri, as: 'uri'
11641
11644
  end
@@ -3219,9 +3219,7 @@ module Google
3219
3219
  execute_or_queue_command(command, &block)
3220
3220
  end
3221
3221
 
3222
- # Lists Annotations belongs to a dataitem This RPC is only available in
3223
- # InternalDatasetService. It is only used for exporting conversation data to
3224
- # CCAI Insights.
3222
+ # Lists Annotations belongs to a dataitem.
3225
3223
  # @param [String] parent
3226
3224
  # Required. The resource name of the DataItem to list Annotations from. Format: `
3227
3225
  # projects/`project`/locations/`location`/datasets/`dataset`/dataItems/`
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-aiplatform_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.40.0
4
+ version: 0.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-23 00:00:00.000000000 Z
10
+ date: 2025-03-30 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.40.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.41.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: