google-apis-aiplatform_v1beta1 0.66.0 → 0.68.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: 80d48bdfb75787d6c53fe92ff71769c1ccdd0d7ec72585f69c2d9751597f90f6
4
- data.tar.gz: 53c9ea4dabe58ce968aff770b9ccc160f40ce958a1405595725e64b13d20e2a7
3
+ metadata.gz: d9feaafd8b0ad756cd4ee7d7ad28580687ced08e43041914528808fab07664ea
4
+ data.tar.gz: '035839af391d2e9f63492a6926c331a5d9c222fea2b5de252ff596d555822be5'
5
5
  SHA512:
6
- metadata.gz: 9034c1eed7c572f1fc2baacaa56db22cb1908b9d8f57741a3a5579834249b7832cf325b0355050a0e2ff34017bd3a3272598cbf79303b8dd0f5c87eb3786ec67
7
- data.tar.gz: 3067a8475eaac207d81b10c3c344f2cb0fc76835607e529c1551f3d9fa0ae129bc7cbf7f7dd7fd59808d48e462259e0060d017229b2ae1928bfca55b10b91ec1
6
+ metadata.gz: 6dbb5ac590fe1f8044b7d4eb0a1ace6cdbaab152a51a51934b9b60d6fe475390e5f5d5fea9f72dc15afe4f473539ea5081773b2afb265eb68ae667da51303c29
7
+ data.tar.gz: ad8cea3b0421cbc9f993d6372290d50f321be341ee84c1f7c3fc0c24e5cb023146441d7e9ac833422fe9332a194aae024c22e200cb6af127e0f296caf5c6a4d0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.68.0 (2025-11-23)
4
+
5
+ * Regenerated from discovery document revision 20251117
6
+
7
+ ### v0.67.0 (2025-11-16)
8
+
9
+ * Regenerated from discovery document revision 20251114
10
+
3
11
  ### v0.66.0 (2025-11-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20251101
@@ -1871,7 +1871,8 @@ module Google
1871
1871
  # Required. The resource metric name. Supported metrics: * For Online Prediction:
1872
1872
  # * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `
1873
1873
  # aiplatform.googleapis.com/prediction/online/cpu/utilization` * `aiplatform.
1874
- # googleapis.com/prediction/online/request_count`
1874
+ # googleapis.com/prediction/online/request_count` * `pubsub.googleapis.com/
1875
+ # subscription/num_undelivered_messages`
1875
1876
  # Corresponds to the JSON property `metricName`
1876
1877
  # @return [String]
1877
1878
  attr_accessor :metric_name
@@ -8288,7 +8289,8 @@ module Google
8288
8289
  end
8289
8290
  end
8290
8291
 
8291
- # Statistics computed for datasets used for distillation.
8292
+ # Statistics for distillation prompt dataset. These statistics do not include
8293
+ # the responses sampled from the teacher model.
8292
8294
  class GoogleCloudAiplatformV1beta1DistillationDataStats
8293
8295
  include Google::Apis::Core::Hashable
8294
8296
 
@@ -16489,6 +16491,19 @@ module Google
16489
16491
  # @return [String]
16490
16492
  attr_accessor :name
16491
16493
 
16494
+ # Optional. The partial argument value of the function call. If provided,
16495
+ # represents the arguments/fields that are streamed incrementally.
16496
+ # Corresponds to the JSON property `partialArgs`
16497
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PartialArg>]
16498
+ attr_accessor :partial_args
16499
+
16500
+ # Optional. Whether this is the last part of the FunctionCall. If true, another
16501
+ # partial message for the current FunctionCall is expected to follow.
16502
+ # Corresponds to the JSON property `willContinue`
16503
+ # @return [Boolean]
16504
+ attr_accessor :will_continue
16505
+ alias_method :will_continue?, :will_continue
16506
+
16492
16507
  def initialize(**args)
16493
16508
  update!(**args)
16494
16509
  end
@@ -16498,6 +16513,8 @@ module Google
16498
16513
  @args = args[:args] if args.key?(:args)
16499
16514
  @id = args[:id] if args.key?(:id)
16500
16515
  @name = args[:name] if args.key?(:name)
16516
+ @partial_args = args[:partial_args] if args.key?(:partial_args)
16517
+ @will_continue = args[:will_continue] if args.key?(:will_continue)
16501
16518
  end
16502
16519
  end
16503
16520
 
@@ -16517,6 +16534,14 @@ module Google
16517
16534
  # @return [String]
16518
16535
  attr_accessor :mode
16519
16536
 
16537
+ # Optional. When set to true, arguments of a single function call will be
16538
+ # streamed out in multiple parts/contents/responses. Partial parameter results
16539
+ # will be returned in the [FunctionCall.partial_args] field.
16540
+ # Corresponds to the JSON property `streamFunctionCallArguments`
16541
+ # @return [Boolean]
16542
+ attr_accessor :stream_function_call_arguments
16543
+ alias_method :stream_function_call_arguments?, :stream_function_call_arguments
16544
+
16520
16545
  def initialize(**args)
16521
16546
  update!(**args)
16522
16547
  end
@@ -16525,6 +16550,7 @@ module Google
16525
16550
  def update!(**args)
16526
16551
  @allowed_function_names = args[:allowed_function_names] if args.key?(:allowed_function_names)
16527
16552
  @mode = args[:mode] if args.key?(:mode)
16553
+ @stream_function_call_arguments = args[:stream_function_call_arguments] if args.key?(:stream_function_call_arguments)
16528
16554
  end
16529
16555
  end
16530
16556
 
@@ -16543,8 +16569,8 @@ module Google
16543
16569
  attr_accessor :description
16544
16570
 
16545
16571
  # Required. The name of the function to call. Must start with a letter or an
16546
- # underscore. Must be a-z, A-Z, 0-9, or contain underscores, dots and dashes,
16547
- # with a maximum length of 64.
16572
+ # underscore. Must be a-z, A-Z, 0-9, or contain underscores, dots, colons and
16573
+ # dashes, with a maximum length of 64.
16548
16574
  # Corresponds to the JSON property `name`
16549
16575
  # @return [String]
16550
16576
  attr_accessor :name
@@ -18123,6 +18149,11 @@ module Google
18123
18149
  # @return [Fixnum]
18124
18150
  attr_accessor :thinking_budget
18125
18151
 
18152
+ # Optional. The number of thoughts tokens that the model should generate.
18153
+ # Corresponds to the JSON property `thinkingLevel`
18154
+ # @return [String]
18155
+ attr_accessor :thinking_level
18156
+
18126
18157
  def initialize(**args)
18127
18158
  update!(**args)
18128
18159
  end
@@ -18131,6 +18162,7 @@ module Google
18131
18162
  def update!(**args)
18132
18163
  @include_thoughts = args[:include_thoughts] if args.key?(:include_thoughts)
18133
18164
  @thinking_budget = args[:thinking_budget] if args.key?(:thinking_budget)
18165
+ @thinking_level = args[:thinking_level] if args.key?(:thinking_level)
18134
18166
  end
18135
18167
  end
18136
18168
 
@@ -18919,6 +18951,12 @@ module Google
18919
18951
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions]
18920
18952
  attr_accessor :image_output_options
18921
18953
 
18954
+ # Optional. Specifies the size of generated images. Supported values are `1K`, `
18955
+ # 2K`, `4K`. If not specified, the model will use default value `1K`.
18956
+ # Corresponds to the JSON property `imageSize`
18957
+ # @return [String]
18958
+ attr_accessor :image_size
18959
+
18922
18960
  # Optional. Controls whether the model can generate people.
18923
18961
  # Corresponds to the JSON property `personGeneration`
18924
18962
  # @return [String]
@@ -18932,6 +18970,7 @@ module Google
18932
18970
  def update!(**args)
18933
18971
  @aspect_ratio = args[:aspect_ratio] if args.key?(:aspect_ratio)
18934
18972
  @image_output_options = args[:image_output_options] if args.key?(:image_output_options)
18973
+ @image_size = args[:image_size] if args.key?(:image_size)
18935
18974
  @person_generation = args[:person_generation] if args.key?(:person_generation)
18936
18975
  end
18937
18976
  end
@@ -22581,6 +22620,13 @@ module Google
22581
22620
  # @return [String]
22582
22621
  attr_accessor :machine_type
22583
22622
 
22623
+ # Optional. Immutable. The minimum GPU driver version that this machine requires.
22624
+ # For example, "535.104.06". If not specified, the default GPU driver version
22625
+ # will be used by the underlying infrastructure.
22626
+ # Corresponds to the JSON property `minGpuDriverVersion`
22627
+ # @return [String]
22628
+ attr_accessor :min_gpu_driver_version
22629
+
22584
22630
  # Optional. Immutable. The number of nodes per replica for multihost GPU
22585
22631
  # deployments.
22586
22632
  # Corresponds to the JSON property `multihostGpuNodeCount`
@@ -22610,6 +22656,7 @@ module Google
22610
22656
  @accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
22611
22657
  @gpu_partition_size = args[:gpu_partition_size] if args.key?(:gpu_partition_size)
22612
22658
  @machine_type = args[:machine_type] if args.key?(:machine_type)
22659
+ @min_gpu_driver_version = args[:min_gpu_driver_version] if args.key?(:min_gpu_driver_version)
22613
22660
  @multihost_gpu_node_count = args[:multihost_gpu_node_count] if args.key?(:multihost_gpu_node_count)
22614
22661
  @reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
22615
22662
  @tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
@@ -29406,6 +29453,11 @@ module Google
29406
29453
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Blob]
29407
29454
  attr_accessor :inline_data
29408
29455
 
29456
+ # per part media resolution. Media resolution for the input media.
29457
+ # Corresponds to the JSON property `mediaResolution`
29458
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PartMediaResolution]
29459
+ attr_accessor :media_resolution
29460
+
29409
29461
  # Optional. The text content of the part.
29410
29462
  # Corresponds to the JSON property `text`
29411
29463
  # @return [String]
@@ -29443,6 +29495,7 @@ module Google
29443
29495
  @function_call = args[:function_call] if args.key?(:function_call)
29444
29496
  @function_response = args[:function_response] if args.key?(:function_response)
29445
29497
  @inline_data = args[:inline_data] if args.key?(:inline_data)
29498
+ @media_resolution = args[:media_resolution] if args.key?(:media_resolution)
29446
29499
  @text = args[:text] if args.key?(:text)
29447
29500
  @thought = args[:thought] if args.key?(:thought)
29448
29501
  @thought_signature = args[:thought_signature] if args.key?(:thought_signature)
@@ -29450,6 +29503,78 @@ module Google
29450
29503
  end
29451
29504
  end
29452
29505
 
29506
+ # per part media resolution. Media resolution for the input media.
29507
+ class GoogleCloudAiplatformV1beta1PartMediaResolution
29508
+ include Google::Apis::Core::Hashable
29509
+
29510
+ # The tokenization quality used for given media.
29511
+ # Corresponds to the JSON property `level`
29512
+ # @return [String]
29513
+ attr_accessor :level
29514
+
29515
+ def initialize(**args)
29516
+ update!(**args)
29517
+ end
29518
+
29519
+ # Update properties of this object
29520
+ def update!(**args)
29521
+ @level = args[:level] if args.key?(:level)
29522
+ end
29523
+ end
29524
+
29525
+ # Partial argument value of the function call.
29526
+ class GoogleCloudAiplatformV1beta1PartialArg
29527
+ include Google::Apis::Core::Hashable
29528
+
29529
+ # Optional. Represents a boolean value.
29530
+ # Corresponds to the JSON property `boolValue`
29531
+ # @return [Boolean]
29532
+ attr_accessor :bool_value
29533
+ alias_method :bool_value?, :bool_value
29534
+
29535
+ # Required. A JSON Path (RFC 9535) to the argument being streamed. https://
29536
+ # datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".
29537
+ # Corresponds to the JSON property `jsonPath`
29538
+ # @return [String]
29539
+ attr_accessor :json_path
29540
+
29541
+ # Optional. Represents a null value.
29542
+ # Corresponds to the JSON property `nullValue`
29543
+ # @return [String]
29544
+ attr_accessor :null_value
29545
+
29546
+ # Optional. Represents a double value.
29547
+ # Corresponds to the JSON property `numberValue`
29548
+ # @return [Float]
29549
+ attr_accessor :number_value
29550
+
29551
+ # Optional. Represents a string value.
29552
+ # Corresponds to the JSON property `stringValue`
29553
+ # @return [String]
29554
+ attr_accessor :string_value
29555
+
29556
+ # Optional. Whether this is not the last part of the same json_path. If true,
29557
+ # another PartialArg message for the current json_path is expected to follow.
29558
+ # Corresponds to the JSON property `willContinue`
29559
+ # @return [Boolean]
29560
+ attr_accessor :will_continue
29561
+ alias_method :will_continue?, :will_continue
29562
+
29563
+ def initialize(**args)
29564
+ update!(**args)
29565
+ end
29566
+
29567
+ # Update properties of this object
29568
+ def update!(**args)
29569
+ @bool_value = args[:bool_value] if args.key?(:bool_value)
29570
+ @json_path = args[:json_path] if args.key?(:json_path)
29571
+ @null_value = args[:null_value] if args.key?(:null_value)
29572
+ @number_value = args[:number_value] if args.key?(:number_value)
29573
+ @string_value = args[:string_value] if args.key?(:string_value)
29574
+ @will_continue = args[:will_continue] if args.key?(:will_continue)
29575
+ end
29576
+ end
29577
+
29453
29578
  # Tuning spec for Partner models.
29454
29579
  class GoogleCloudAiplatformV1beta1PartnerModelTuningSpec
29455
29580
  include Google::Apis::Core::Hashable
@@ -32370,6 +32495,34 @@ module Google
32370
32495
  end
32371
32496
  end
32372
32497
 
32498
+ # Request message for MemoryBankService.PurgeMemories.
32499
+ class GoogleCloudAiplatformV1beta1PurgeMemoriesRequest
32500
+ include Google::Apis::Core::Hashable
32501
+
32502
+ # Required. The standard list filter to determine which memories to purge. More
32503
+ # detail in [AIP-160](https://google.aip.dev/160).
32504
+ # Corresponds to the JSON property `filter`
32505
+ # @return [String]
32506
+ attr_accessor :filter
32507
+
32508
+ # Optional. If true, the memories will actually be purged. If false, the purge
32509
+ # request will be validated but not executed.
32510
+ # Corresponds to the JSON property `force`
32511
+ # @return [Boolean]
32512
+ attr_accessor :force
32513
+ alias_method :force?, :force
32514
+
32515
+ def initialize(**args)
32516
+ update!(**args)
32517
+ end
32518
+
32519
+ # Update properties of this object
32520
+ def update!(**args)
32521
+ @filter = args[:filter] if args.key?(:filter)
32522
+ @force = args[:force] if args.key?(:force)
32523
+ end
32524
+ end
32525
+
32373
32526
  # The spec of a Python packaged code.
32374
32527
  class GoogleCloudAiplatformV1beta1PythonPackageSpec
32375
32528
  include Google::Apis::Core::Hashable
@@ -35769,6 +35922,34 @@ module Google
35769
35922
  end
35770
35923
  end
35771
35924
 
35925
+ # The configuration for the replicated voice to use.
35926
+ class GoogleCloudAiplatformV1beta1ReplicatedVoiceConfig
35927
+ include Google::Apis::Core::Hashable
35928
+
35929
+ # Optional. The mimetype of the voice sample. Currently only mime_type=audio/pcm
35930
+ # is supported, which is raw mono 16-bit signed little-endian pcm data, with 24k
35931
+ # sampling rate.
35932
+ # Corresponds to the JSON property `mimeType`
35933
+ # @return [String]
35934
+ attr_accessor :mime_type
35935
+
35936
+ # Optional. The sample of the custom voice.
35937
+ # Corresponds to the JSON property `voiceSampleAudio`
35938
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
35939
+ # @return [String]
35940
+ attr_accessor :voice_sample_audio
35941
+
35942
+ def initialize(**args)
35943
+ update!(**args)
35944
+ end
35945
+
35946
+ # Update properties of this object
35947
+ def update!(**args)
35948
+ @mime_type = args[:mime_type] if args.key?(:mime_type)
35949
+ @voice_sample_audio = args[:voice_sample_audio] if args.key?(:voice_sample_audio)
35950
+ end
35951
+ end
35952
+
35772
35953
  # Request message for NotebookInternalService.ReportExecutionEvent.
35773
35954
  class GoogleCloudAiplatformV1beta1ReportExecutionEventRequest
35774
35955
  include Google::Apis::Core::Hashable
@@ -36343,7 +36524,9 @@ module Google
36343
36524
 
36344
36525
  # Optional. The standard list filter that will be applied to the retrieved
36345
36526
  # memories. More detail in [AIP-160](https://google.aip.dev/160). Supported
36346
- # fields: * `fact` * `create_time` * `update_time`
36527
+ # fields: * `fact` * `create_time` * `update_time` * `topics` (i.e. `topics.
36528
+ # custom_memory_topic_label: "example topic" OR topics.managed_memory_topic:
36529
+ # USER_PREFERENCES`)
36347
36530
  # Corresponds to the JSON property `filter`
36348
36531
  # @return [String]
36349
36532
  attr_accessor :filter
@@ -40864,6 +41047,71 @@ module Google
40864
41047
  end
40865
41048
  end
40866
41049
 
41050
+ # Defines data for an application builder.
41051
+ class GoogleCloudAiplatformV1beta1SchemaPromptSpecAppBuilderData
41052
+ include Google::Apis::Core::Hashable
41053
+
41054
+ # Serialized state of the code repository. This string will typically contain a
41055
+ # JSON representation of the UI's CodeRepositoryService state (files, folders,
41056
+ # content, and any metadata). The UI is responsible for serialization and
41057
+ # deserialization.
41058
+ # Corresponds to the JSON property `codeRepositoryState`
41059
+ # @return [String]
41060
+ attr_accessor :code_repository_state
41061
+
41062
+ # Linked resources attached to the application by the user.
41063
+ # Corresponds to the JSON property `linkedResources`
41064
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SchemaPromptSpecAppBuilderDataLinkedResource>]
41065
+ attr_accessor :linked_resources
41066
+
41067
+ def initialize(**args)
41068
+ update!(**args)
41069
+ end
41070
+
41071
+ # Update properties of this object
41072
+ def update!(**args)
41073
+ @code_repository_state = args[:code_repository_state] if args.key?(:code_repository_state)
41074
+ @linked_resources = args[:linked_resources] if args.key?(:linked_resources)
41075
+ end
41076
+ end
41077
+
41078
+ # A linked resource attached to the application by the user.
41079
+ class GoogleCloudAiplatformV1beta1SchemaPromptSpecAppBuilderDataLinkedResource
41080
+ include Google::Apis::Core::Hashable
41081
+
41082
+ # A user-friendly name for the data source shown in the UI.
41083
+ # Corresponds to the JSON property `displayName`
41084
+ # @return [String]
41085
+ attr_accessor :display_name
41086
+
41087
+ # The unique resource name of the data source. The format is determined by the '
41088
+ # type' field. For type "SAVED_PROMPT": projects/`project`/locations/`location`/
41089
+ # datasets/`dataset` For type "AI_AGENT": projects/`project`/locations/`location`
41090
+ # /agents/`agent`
41091
+ # Corresponds to the JSON property `name`
41092
+ # @return [String]
41093
+ attr_accessor :name
41094
+
41095
+ # The type of the linked resource. e.g., "SAVED_PROMPT", "AI_AGENT" This string
41096
+ # corresponds to the name of the LinkedResourceType enum member. See: google3/
41097
+ # cloud/console/web/ai/platform/llm/prompts/build/services/
41098
+ # specs_repository_service/linked_resources/linked_resource.ts
41099
+ # Corresponds to the JSON property `type`
41100
+ # @return [String]
41101
+ attr_accessor :type
41102
+
41103
+ def initialize(**args)
41104
+ update!(**args)
41105
+ end
41106
+
41107
+ # Update properties of this object
41108
+ def update!(**args)
41109
+ @display_name = args[:display_name] if args.key?(:display_name)
41110
+ @name = args[:name] if args.key?(:name)
41111
+ @type = args[:type] if args.key?(:type)
41112
+ end
41113
+ end
41114
+
40867
41115
  # Prompt variation that embeds preambles to prompt string.
40868
41116
  class GoogleCloudAiplatformV1beta1SchemaPromptSpecMultimodalPrompt
40869
41117
  include Google::Apis::Core::Hashable
@@ -41017,6 +41265,11 @@ module Google
41017
41265
  class GoogleCloudAiplatformV1beta1SchemaPromptSpecStructuredPrompt
41018
41266
  include Google::Apis::Core::Hashable
41019
41267
 
41268
+ # Defines data for an application builder.
41269
+ # Corresponds to the JSON property `appBuilderData`
41270
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SchemaPromptSpecAppBuilderData]
41271
+ attr_accessor :app_builder_data
41272
+
41020
41273
  # The structured data content of a message. A Content message contains a `role`
41021
41274
  # field, which indicates the producer of the content, and a `parts` field, which
41022
41275
  # contains the multi-part data of the message.
@@ -41067,6 +41320,7 @@ module Google
41067
41320
 
41068
41321
  # Update properties of this object
41069
41322
  def update!(**args)
41323
+ @app_builder_data = args[:app_builder_data] if args.key?(:app_builder_data)
41070
41324
  @context = args[:context] if args.key?(:context)
41071
41325
  @examples = args[:examples] if args.key?(:examples)
41072
41326
  @infill_prefix = args[:infill_prefix] if args.key?(:infill_prefix)
@@ -50860,7 +51114,8 @@ module Google
50860
51114
  class GoogleCloudAiplatformV1beta1TuningDataStats
50861
51115
  include Google::Apis::Core::Hashable
50862
51116
 
50863
- # Statistics computed for datasets used for distillation.
51117
+ # Statistics for distillation prompt dataset. These statistics do not include
51118
+ # the responses sampled from the teacher model.
50864
51119
  # Corresponds to the JSON property `distillationDataStats`
50865
51120
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DistillationDataStats]
50866
51121
  attr_accessor :distillation_data_stats
@@ -52466,6 +52721,11 @@ module Google
52466
52721
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PrebuiltVoiceConfig]
52467
52722
  attr_accessor :prebuilt_voice_config
52468
52723
 
52724
+ # The configuration for the replicated voice to use.
52725
+ # Corresponds to the JSON property `replicatedVoiceConfig`
52726
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReplicatedVoiceConfig]
52727
+ attr_accessor :replicated_voice_config
52728
+
52469
52729
  def initialize(**args)
52470
52730
  update!(**args)
52471
52731
  end
@@ -52473,6 +52733,7 @@ module Google
52473
52733
  # Update properties of this object
52474
52734
  def update!(**args)
52475
52735
  @prebuilt_voice_config = args[:prebuilt_voice_config] if args.key?(:prebuilt_voice_config)
52736
+ @replicated_voice_config = args[:replicated_voice_config] if args.key?(:replicated_voice_config)
52476
52737
  end
52477
52738
  end
52478
52739
 
@@ -53119,8 +53380,9 @@ module Google
53119
53380
  attr_accessor :operations
53120
53381
 
53121
53382
  # Unordered list. Unreachable resources. Populated when the request sets `
53122
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
53123
- # when attempting to list all resources across all supported locations.
53383
+ # ListOperationsRequest.return_partial_success` and reads across collections.
53384
+ # For example, when attempting to list all resources across all supported
53385
+ # locations.
53124
53386
  # Corresponds to the JSON property `unreachable`
53125
53387
  # @return [Array<String>]
53126
53388
  attr_accessor :unreachable
@@ -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.66.0"
19
+ GEM_VERSION = "0.68.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 = "20251101"
25
+ REVISION = "20251117"
26
26
  end
27
27
  end
28
28
  end