google-apis-aiplatform_v1beta1 0.67.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: 67e0e82bf6ecf57613c576a7bf7157bdbc577570c2e98e3eac36ea5b7d339f69
4
- data.tar.gz: 33b63c36782e7ff414d92a500bcf71624aae8c309ca96f59f7d48637d173a249
3
+ metadata.gz: d9feaafd8b0ad756cd4ee7d7ad28580687ced08e43041914528808fab07664ea
4
+ data.tar.gz: '035839af391d2e9f63492a6926c331a5d9c222fea2b5de252ff596d555822be5'
5
5
  SHA512:
6
- metadata.gz: b686cb2a0aeee7d32fcc0ba109a70ce3480d8804300fba70202d5e95f6f4cc21dff738db088e30aa1becff09371e635a1bf51d94d8415e6cdd736baa6834651d
7
- data.tar.gz: 43029b575e4d8d3002b8bd6d8d811bf15735b3de32e652169c50273ca4999bb8f4c4da18aa537605de684914df407809d81a9af0f9214834bfacc47ab88e60d8
6
+ metadata.gz: 6dbb5ac590fe1f8044b7d4eb0a1ace6cdbaab152a51a51934b9b60d6fe475390e5f5d5fea9f72dc15afe4f473539ea5081773b2afb265eb68ae667da51303c29
7
+ data.tar.gz: ad8cea3b0421cbc9f993d6372290d50f321be341ee84c1f7c3fc0c24e5cb023146441d7e9ac833422fe9332a194aae024c22e200cb6af127e0f296caf5c6a4d0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.67.0 (2025-11-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20251114
@@ -8289,7 +8289,8 @@ module Google
8289
8289
  end
8290
8290
  end
8291
8291
 
8292
- # 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.
8293
8294
  class GoogleCloudAiplatformV1beta1DistillationDataStats
8294
8295
  include Google::Apis::Core::Hashable
8295
8296
 
@@ -16490,6 +16491,19 @@ module Google
16490
16491
  # @return [String]
16491
16492
  attr_accessor :name
16492
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
+
16493
16507
  def initialize(**args)
16494
16508
  update!(**args)
16495
16509
  end
@@ -16499,6 +16513,8 @@ module Google
16499
16513
  @args = args[:args] if args.key?(:args)
16500
16514
  @id = args[:id] if args.key?(:id)
16501
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)
16502
16518
  end
16503
16519
  end
16504
16520
 
@@ -16518,6 +16534,14 @@ module Google
16518
16534
  # @return [String]
16519
16535
  attr_accessor :mode
16520
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
+
16521
16545
  def initialize(**args)
16522
16546
  update!(**args)
16523
16547
  end
@@ -16526,6 +16550,7 @@ module Google
16526
16550
  def update!(**args)
16527
16551
  @allowed_function_names = args[:allowed_function_names] if args.key?(:allowed_function_names)
16528
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)
16529
16554
  end
16530
16555
  end
16531
16556
 
@@ -16544,8 +16569,8 @@ module Google
16544
16569
  attr_accessor :description
16545
16570
 
16546
16571
  # Required. The name of the function to call. Must start with a letter or an
16547
- # underscore. Must be a-z, A-Z, 0-9, or contain underscores, dots and dashes,
16548
- # 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.
16549
16574
  # Corresponds to the JSON property `name`
16550
16575
  # @return [String]
16551
16576
  attr_accessor :name
@@ -18124,6 +18149,11 @@ module Google
18124
18149
  # @return [Fixnum]
18125
18150
  attr_accessor :thinking_budget
18126
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
+
18127
18157
  def initialize(**args)
18128
18158
  update!(**args)
18129
18159
  end
@@ -18132,6 +18162,7 @@ module Google
18132
18162
  def update!(**args)
18133
18163
  @include_thoughts = args[:include_thoughts] if args.key?(:include_thoughts)
18134
18164
  @thinking_budget = args[:thinking_budget] if args.key?(:thinking_budget)
18165
+ @thinking_level = args[:thinking_level] if args.key?(:thinking_level)
18135
18166
  end
18136
18167
  end
18137
18168
 
@@ -18920,6 +18951,12 @@ module Google
18920
18951
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions]
18921
18952
  attr_accessor :image_output_options
18922
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
+
18923
18960
  # Optional. Controls whether the model can generate people.
18924
18961
  # Corresponds to the JSON property `personGeneration`
18925
18962
  # @return [String]
@@ -18933,6 +18970,7 @@ module Google
18933
18970
  def update!(**args)
18934
18971
  @aspect_ratio = args[:aspect_ratio] if args.key?(:aspect_ratio)
18935
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)
18936
18974
  @person_generation = args[:person_generation] if args.key?(:person_generation)
18937
18975
  end
18938
18976
  end
@@ -22582,6 +22620,13 @@ module Google
22582
22620
  # @return [String]
22583
22621
  attr_accessor :machine_type
22584
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
+
22585
22630
  # Optional. Immutable. The number of nodes per replica for multihost GPU
22586
22631
  # deployments.
22587
22632
  # Corresponds to the JSON property `multihostGpuNodeCount`
@@ -22611,6 +22656,7 @@ module Google
22611
22656
  @accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
22612
22657
  @gpu_partition_size = args[:gpu_partition_size] if args.key?(:gpu_partition_size)
22613
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)
22614
22660
  @multihost_gpu_node_count = args[:multihost_gpu_node_count] if args.key?(:multihost_gpu_node_count)
22615
22661
  @reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
22616
22662
  @tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
@@ -29407,6 +29453,11 @@ module Google
29407
29453
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Blob]
29408
29454
  attr_accessor :inline_data
29409
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
+
29410
29461
  # Optional. The text content of the part.
29411
29462
  # Corresponds to the JSON property `text`
29412
29463
  # @return [String]
@@ -29444,6 +29495,7 @@ module Google
29444
29495
  @function_call = args[:function_call] if args.key?(:function_call)
29445
29496
  @function_response = args[:function_response] if args.key?(:function_response)
29446
29497
  @inline_data = args[:inline_data] if args.key?(:inline_data)
29498
+ @media_resolution = args[:media_resolution] if args.key?(:media_resolution)
29447
29499
  @text = args[:text] if args.key?(:text)
29448
29500
  @thought = args[:thought] if args.key?(:thought)
29449
29501
  @thought_signature = args[:thought_signature] if args.key?(:thought_signature)
@@ -29451,6 +29503,78 @@ module Google
29451
29503
  end
29452
29504
  end
29453
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
+
29454
29578
  # Tuning spec for Partner models.
29455
29579
  class GoogleCloudAiplatformV1beta1PartnerModelTuningSpec
29456
29580
  include Google::Apis::Core::Hashable
@@ -35798,6 +35922,34 @@ module Google
35798
35922
  end
35799
35923
  end
35800
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
+
35801
35953
  # Request message for NotebookInternalService.ReportExecutionEvent.
35802
35954
  class GoogleCloudAiplatformV1beta1ReportExecutionEventRequest
35803
35955
  include Google::Apis::Core::Hashable
@@ -50962,7 +51114,8 @@ module Google
50962
51114
  class GoogleCloudAiplatformV1beta1TuningDataStats
50963
51115
  include Google::Apis::Core::Hashable
50964
51116
 
50965
- # 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.
50966
51119
  # Corresponds to the JSON property `distillationDataStats`
50967
51120
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DistillationDataStats]
50968
51121
  attr_accessor :distillation_data_stats
@@ -52568,6 +52721,11 @@ module Google
52568
52721
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PrebuiltVoiceConfig]
52569
52722
  attr_accessor :prebuilt_voice_config
52570
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
+
52571
52729
  def initialize(**args)
52572
52730
  update!(**args)
52573
52731
  end
@@ -52575,6 +52733,7 @@ module Google
52575
52733
  # Update properties of this object
52576
52734
  def update!(**args)
52577
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)
52578
52737
  end
52579
52738
  end
52580
52739
 
@@ -53221,8 +53380,9 @@ module Google
53221
53380
  attr_accessor :operations
53222
53381
 
53223
53382
  # Unordered list. Unreachable resources. Populated when the request sets `
53224
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
53225
- # 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.
53226
53386
  # Corresponds to the JSON property `unreachable`
53227
53387
  # @return [Array<String>]
53228
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.67.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 = "20251114"
25
+ REVISION = "20251117"
26
26
  end
27
27
  end
28
28
  end
@@ -4804,6 +4804,18 @@ module Google
4804
4804
  include Google::Apis::Core::JsonObjectSupport
4805
4805
  end
4806
4806
 
4807
+ class GoogleCloudAiplatformV1beta1PartMediaResolution
4808
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4809
+
4810
+ include Google::Apis::Core::JsonObjectSupport
4811
+ end
4812
+
4813
+ class GoogleCloudAiplatformV1beta1PartialArg
4814
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4815
+
4816
+ include Google::Apis::Core::JsonObjectSupport
4817
+ end
4818
+
4807
4819
  class GoogleCloudAiplatformV1beta1PartnerModelTuningSpec
4808
4820
  class Representation < Google::Apis::Core::JsonRepresentation; end
4809
4821
 
@@ -5932,6 +5944,12 @@ module Google
5932
5944
  include Google::Apis::Core::JsonObjectSupport
5933
5945
  end
5934
5946
 
5947
+ class GoogleCloudAiplatformV1beta1ReplicatedVoiceConfig
5948
+ class Representation < Google::Apis::Core::JsonRepresentation; end
5949
+
5950
+ include Google::Apis::Core::JsonObjectSupport
5951
+ end
5952
+
5935
5953
  class GoogleCloudAiplatformV1beta1ReportExecutionEventRequest
5936
5954
  class Representation < Google::Apis::Core::JsonRepresentation; end
5937
5955
 
@@ -13765,6 +13783,9 @@ module Google
13765
13783
  hash :args, as: 'args'
13766
13784
  property :id, as: 'id'
13767
13785
  property :name, as: 'name'
13786
+ collection :partial_args, as: 'partialArgs', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PartialArg, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PartialArg::Representation
13787
+
13788
+ property :will_continue, as: 'willContinue'
13768
13789
  end
13769
13790
  end
13770
13791
 
@@ -13773,6 +13794,7 @@ module Google
13773
13794
  class Representation < Google::Apis::Core::JsonRepresentation
13774
13795
  collection :allowed_function_names, as: 'allowedFunctionNames'
13775
13796
  property :mode, as: 'mode'
13797
+ property :stream_function_call_arguments, as: 'streamFunctionCallArguments'
13776
13798
  end
13777
13799
  end
13778
13800
 
@@ -14216,6 +14238,7 @@ module Google
14216
14238
  class Representation < Google::Apis::Core::JsonRepresentation
14217
14239
  property :include_thoughts, as: 'includeThoughts'
14218
14240
  property :thinking_budget, as: 'thinkingBudget'
14241
+ property :thinking_level, as: 'thinkingLevel'
14219
14242
  end
14220
14243
  end
14221
14244
 
@@ -14442,6 +14465,7 @@ module Google
14442
14465
  property :aspect_ratio, as: 'aspectRatio'
14443
14466
  property :image_output_options, as: 'imageOutputOptions', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions::Representation
14444
14467
 
14468
+ property :image_size, as: 'imageSize'
14445
14469
  property :person_generation, as: 'personGeneration'
14446
14470
  end
14447
14471
  end
@@ -15565,6 +15589,7 @@ module Google
15565
15589
  property :accelerator_type, as: 'acceleratorType'
15566
15590
  property :gpu_partition_size, as: 'gpuPartitionSize'
15567
15591
  property :machine_type, as: 'machineType'
15592
+ property :min_gpu_driver_version, as: 'minGpuDriverVersion'
15568
15593
  property :multihost_gpu_node_count, as: 'multihostGpuNodeCount'
15569
15594
  property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReservationAffinity, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReservationAffinity::Representation
15570
15595
 
@@ -17450,6 +17475,8 @@ module Google
17450
17475
 
17451
17476
  property :inline_data, as: 'inlineData', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Blob, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Blob::Representation
17452
17477
 
17478
+ property :media_resolution, as: 'mediaResolution', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PartMediaResolution, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PartMediaResolution::Representation
17479
+
17453
17480
  property :text, as: 'text'
17454
17481
  property :thought, as: 'thought'
17455
17482
  property :thought_signature, :base64 => true, as: 'thoughtSignature'
@@ -17458,6 +17485,25 @@ module Google
17458
17485
  end
17459
17486
  end
17460
17487
 
17488
+ class GoogleCloudAiplatformV1beta1PartMediaResolution
17489
+ # @private
17490
+ class Representation < Google::Apis::Core::JsonRepresentation
17491
+ property :level, as: 'level'
17492
+ end
17493
+ end
17494
+
17495
+ class GoogleCloudAiplatformV1beta1PartialArg
17496
+ # @private
17497
+ class Representation < Google::Apis::Core::JsonRepresentation
17498
+ property :bool_value, as: 'boolValue'
17499
+ property :json_path, as: 'jsonPath'
17500
+ property :null_value, as: 'nullValue'
17501
+ property :number_value, as: 'numberValue'
17502
+ property :string_value, as: 'stringValue'
17503
+ property :will_continue, as: 'willContinue'
17504
+ end
17505
+ end
17506
+
17461
17507
  class GoogleCloudAiplatformV1beta1PartnerModelTuningSpec
17462
17508
  # @private
17463
17509
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -19338,6 +19384,14 @@ module Google
19338
19384
  end
19339
19385
  end
19340
19386
 
19387
+ class GoogleCloudAiplatformV1beta1ReplicatedVoiceConfig
19388
+ # @private
19389
+ class Representation < Google::Apis::Core::JsonRepresentation
19390
+ property :mime_type, as: 'mimeType'
19391
+ property :voice_sample_audio, :base64 => true, as: 'voiceSampleAudio'
19392
+ end
19393
+ end
19394
+
19341
19395
  class GoogleCloudAiplatformV1beta1ReportExecutionEventRequest
19342
19396
  # @private
19343
19397
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -24135,6 +24189,8 @@ module Google
24135
24189
  class Representation < Google::Apis::Core::JsonRepresentation
24136
24190
  property :prebuilt_voice_config, as: 'prebuiltVoiceConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PrebuiltVoiceConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PrebuiltVoiceConfig::Representation
24137
24191
 
24192
+ property :replicated_voice_config, as: 'replicatedVoiceConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReplicatedVoiceConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReplicatedVoiceConfig::Representation
24193
+
24138
24194
  end
24139
24195
  end
24140
24196