google-apis-firebaseml_v2beta 0.32.0 → 0.34.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: ce84e97b283058904faab9c74f30f54356bd3913624f4ab45ae75b8be96ff198
4
- data.tar.gz: 946a1c7f997d696f224f1bc0c9665327a0af38c48f68cc7f04a29039de2e4fc2
3
+ metadata.gz: 747a234c0b6b7f7d37468beeb87648424ee6805f6606119114f33863fdc5e666
4
+ data.tar.gz: 5b66cfad1e8d9b3c6257fd441bd09358b8986a261aae918d681154d4f9ee6aa1
5
5
  SHA512:
6
- metadata.gz: 41eff913ccd7c60a3c5b1b1785db4b06d3ccd672c9879bc5bdc7464f9b3281591965b22c8481beb649b36d4d159850b0b54486615a422d949e2e52a2da400263
7
- data.tar.gz: 9adc24b3351da6be03fb17510fc8ca7ee15dcbea11baeb0e21be7d0155089c8ebb1a15e1e89fc73bab306893eea1eef2d75ae284e871c56caa1baef5a9beb748
6
+ metadata.gz: 856f0b4b3067075469a958c9dc78cde2f333e7258cbdb4dde20626581cafba25e75206ae47bfa2a30dbe10287b014b536718d69e24d47afbd06da07b06241c8a
7
+ data.tar.gz: 6dc26c2065ba9a7f6bff5a2051a435fd0f7ac9ce107fbb2c75df5b263901374449a7a614bb1a22f59353fd6b258f5ef3133d5115079b3abb03e96377eb675770
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-firebaseml_v2beta
2
2
 
3
+ ### v0.34.0 (2025-10-19)
4
+
5
+ * Regenerated from discovery document revision 20251013
6
+
7
+ ### v0.33.0 (2025-10-12)
8
+
9
+ * Regenerated from discovery document revision 20251005
10
+
3
11
  ### v0.32.0 (2025-10-05)
4
12
 
5
13
  * Regenerated from discovery document revision 20250930
@@ -1014,6 +1014,12 @@ module Google
1014
1014
  # @return [String]
1015
1015
  attr_accessor :name
1016
1016
 
1017
+ # Optional. Ordered `Parts` that constitute a function response. Parts may have
1018
+ # different IANA MIME types.
1019
+ # Corresponds to the JSON property `parts`
1020
+ # @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponsePart>]
1021
+ attr_accessor :parts
1022
+
1017
1023
  # Required. The function response in JSON object format. Use "output" key to
1018
1024
  # specify function output and "error" key to specify error details (if any). If "
1019
1025
  # output" and "error" keys are not specified, then whole "response" is treated
@@ -1030,10 +1036,113 @@ module Google
1030
1036
  def update!(**args)
1031
1037
  @id = args[:id] if args.key?(:id)
1032
1038
  @name = args[:name] if args.key?(:name)
1039
+ @parts = args[:parts] if args.key?(:parts)
1033
1040
  @response = args[:response] if args.key?(:response)
1034
1041
  end
1035
1042
  end
1036
1043
 
1044
+ # Raw media bytes for function response. Text should not be sent as raw bytes,
1045
+ # use the 'text' field.
1046
+ class GoogleCloudAiplatformV1beta1FunctionResponseBlob
1047
+ include Google::Apis::Core::Hashable
1048
+
1049
+ # Required. Raw bytes.
1050
+ # Corresponds to the JSON property `data`
1051
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
1052
+ # @return [String]
1053
+ attr_accessor :data
1054
+
1055
+ # Optional. Display name of the blob. Used to provide a label or filename to
1056
+ # distinguish blobs. This field is only returned in PromptMessage for prompt
1057
+ # management. It is currently used in the Gemini GenerateContent calls only when
1058
+ # server side tools (code_execution, google_search, and url_context) are enabled.
1059
+ # Corresponds to the JSON property `displayName`
1060
+ # @return [String]
1061
+ attr_accessor :display_name
1062
+
1063
+ # Required. The IANA standard MIME type of the source data.
1064
+ # Corresponds to the JSON property `mimeType`
1065
+ # @return [String]
1066
+ attr_accessor :mime_type
1067
+
1068
+ def initialize(**args)
1069
+ update!(**args)
1070
+ end
1071
+
1072
+ # Update properties of this object
1073
+ def update!(**args)
1074
+ @data = args[:data] if args.key?(:data)
1075
+ @display_name = args[:display_name] if args.key?(:display_name)
1076
+ @mime_type = args[:mime_type] if args.key?(:mime_type)
1077
+ end
1078
+ end
1079
+
1080
+ # URI based data for function response.
1081
+ class GoogleCloudAiplatformV1beta1FunctionResponseFileData
1082
+ include Google::Apis::Core::Hashable
1083
+
1084
+ # Optional. Display name of the file data. Used to provide a label or filename
1085
+ # to distinguish file datas. This field is only returned in PromptMessage for
1086
+ # prompt management. It is currently used in the Gemini GenerateContent calls
1087
+ # only when server side tools (code_execution, google_search, and url_context)
1088
+ # are enabled.
1089
+ # Corresponds to the JSON property `displayName`
1090
+ # @return [String]
1091
+ attr_accessor :display_name
1092
+
1093
+ # Required. URI.
1094
+ # Corresponds to the JSON property `fileUri`
1095
+ # @return [String]
1096
+ attr_accessor :file_uri
1097
+
1098
+ # Required. The IANA standard MIME type of the source data.
1099
+ # Corresponds to the JSON property `mimeType`
1100
+ # @return [String]
1101
+ attr_accessor :mime_type
1102
+
1103
+ def initialize(**args)
1104
+ update!(**args)
1105
+ end
1106
+
1107
+ # Update properties of this object
1108
+ def update!(**args)
1109
+ @display_name = args[:display_name] if args.key?(:display_name)
1110
+ @file_uri = args[:file_uri] if args.key?(:file_uri)
1111
+ @mime_type = args[:mime_type] if args.key?(:mime_type)
1112
+ end
1113
+ end
1114
+
1115
+ # A datatype containing media that is part of a `FunctionResponse` message. A `
1116
+ # FunctionResponsePart` consists of data which has an associated datatype. A `
1117
+ # FunctionResponsePart` can only contain one of the accepted types in `
1118
+ # FunctionResponsePart.data`. A `FunctionResponsePart` must have a fixed IANA
1119
+ # MIME type identifying the type and subtype of the media if the `inline_data`
1120
+ # field is filled with raw bytes.
1121
+ class GoogleCloudAiplatformV1beta1FunctionResponsePart
1122
+ include Google::Apis::Core::Hashable
1123
+
1124
+ # URI based data for function response.
1125
+ # Corresponds to the JSON property `fileData`
1126
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponseFileData]
1127
+ attr_accessor :file_data
1128
+
1129
+ # Raw media bytes for function response. Text should not be sent as raw bytes,
1130
+ # use the 'text' field.
1131
+ # Corresponds to the JSON property `inlineData`
1132
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponseBlob]
1133
+ attr_accessor :inline_data
1134
+
1135
+ def initialize(**args)
1136
+ update!(**args)
1137
+ end
1138
+
1139
+ # Update properties of this object
1140
+ def update!(**args)
1141
+ @file_data = args[:file_data] if args.key?(:file_data)
1142
+ @inline_data = args[:inline_data] if args.key?(:inline_data)
1143
+ end
1144
+ end
1145
+
1037
1146
  # Request message for [PredictionService.GenerateContent].
1038
1147
  class GoogleCloudAiplatformV1beta1GenerateContentRequest
1039
1148
  include Google::Apis::Core::Hashable
@@ -1962,6 +2071,16 @@ module Google
1962
2071
  # @return [String]
1963
2072
  attr_accessor :aspect_ratio
1964
2073
 
2074
+ # The image output format for generated images.
2075
+ # Corresponds to the JSON property `imageOutputOptions`
2076
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions]
2077
+ attr_accessor :image_output_options
2078
+
2079
+ # Optional. Controls whether the model can generate people.
2080
+ # Corresponds to the JSON property `personGeneration`
2081
+ # @return [String]
2082
+ attr_accessor :person_generation
2083
+
1965
2084
  def initialize(**args)
1966
2085
  update!(**args)
1967
2086
  end
@@ -1969,6 +2088,33 @@ module Google
1969
2088
  # Update properties of this object
1970
2089
  def update!(**args)
1971
2090
  @aspect_ratio = args[:aspect_ratio] if args.key?(:aspect_ratio)
2091
+ @image_output_options = args[:image_output_options] if args.key?(:image_output_options)
2092
+ @person_generation = args[:person_generation] if args.key?(:person_generation)
2093
+ end
2094
+ end
2095
+
2096
+ # The image output format for generated images.
2097
+ class GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions
2098
+ include Google::Apis::Core::Hashable
2099
+
2100
+ # Optional. The compression quality of the output image.
2101
+ # Corresponds to the JSON property `compressionQuality`
2102
+ # @return [Fixnum]
2103
+ attr_accessor :compression_quality
2104
+
2105
+ # Optional. The image format that the output should be saved as.
2106
+ # Corresponds to the JSON property `mimeType`
2107
+ # @return [String]
2108
+ attr_accessor :mime_type
2109
+
2110
+ def initialize(**args)
2111
+ update!(**args)
2112
+ end
2113
+
2114
+ # Update properties of this object
2115
+ def update!(**args)
2116
+ @compression_quality = args[:compression_quality] if args.key?(:compression_quality)
2117
+ @mime_type = args[:mime_type] if args.key?(:mime_type)
1972
2118
  end
1973
2119
  end
1974
2120
 
@@ -2099,6 +2245,27 @@ module Google
2099
2245
  end
2100
2246
  end
2101
2247
 
2248
+ # Configuration for a multi-speaker text-to-speech setup. Enables the use of up
2249
+ # to two distinct voices in a single synthesis request.
2250
+ class GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig
2251
+ include Google::Apis::Core::Hashable
2252
+
2253
+ # Required. A list of configurations for the voices of the speakers. Exactly two
2254
+ # speaker voice configurations must be provided.
2255
+ # Corresponds to the JSON property `speakerVoiceConfigs`
2256
+ # @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SpeakerVoiceConfig>]
2257
+ attr_accessor :speaker_voice_configs
2258
+
2259
+ def initialize(**args)
2260
+ update!(**args)
2261
+ end
2262
+
2263
+ # Update properties of this object
2264
+ def update!(**args)
2265
+ @speaker_voice_configs = args[:speaker_voice_configs] if args.key?(:speaker_voice_configs)
2266
+ end
2267
+ end
2268
+
2102
2269
  # A datatype containing media that is part of a multi-part `Content` message. A `
2103
2270
  # Part` consists of data which has an associated datatype. A `Part` can only
2104
2271
  # contain one of the accepted types in `Part.data`. A `Part` must have a fixed
@@ -2852,6 +3019,32 @@ module Google
2852
3019
  end
2853
3020
  end
2854
3021
 
3022
+ # Configuration for a single speaker in a multi speaker setup.
3023
+ class GoogleCloudAiplatformV1beta1SpeakerVoiceConfig
3024
+ include Google::Apis::Core::Hashable
3025
+
3026
+ # Required. The name of the speaker. This should be the same as the speaker name
3027
+ # used in the prompt.
3028
+ # Corresponds to the JSON property `speaker`
3029
+ # @return [String]
3030
+ attr_accessor :speaker
3031
+
3032
+ # The configuration for the voice to use.
3033
+ # Corresponds to the JSON property `voiceConfig`
3034
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VoiceConfig]
3035
+ attr_accessor :voice_config
3036
+
3037
+ def initialize(**args)
3038
+ update!(**args)
3039
+ end
3040
+
3041
+ # Update properties of this object
3042
+ def update!(**args)
3043
+ @speaker = args[:speaker] if args.key?(:speaker)
3044
+ @voice_config = args[:voice_config] if args.key?(:voice_config)
3045
+ end
3046
+ end
3047
+
2855
3048
  # The speech generation config.
2856
3049
  class GoogleCloudAiplatformV1beta1SpeechConfig
2857
3050
  include Google::Apis::Core::Hashable
@@ -2861,6 +3054,12 @@ module Google
2861
3054
  # @return [String]
2862
3055
  attr_accessor :language_code
2863
3056
 
3057
+ # Configuration for a multi-speaker text-to-speech setup. Enables the use of up
3058
+ # to two distinct voices in a single synthesis request.
3059
+ # Corresponds to the JSON property `multiSpeakerVoiceConfig`
3060
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig]
3061
+ attr_accessor :multi_speaker_voice_config
3062
+
2864
3063
  # The configuration for the voice to use.
2865
3064
  # Corresponds to the JSON property `voiceConfig`
2866
3065
  # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VoiceConfig]
@@ -2873,6 +3072,7 @@ module Google
2873
3072
  # Update properties of this object
2874
3073
  def update!(**args)
2875
3074
  @language_code = args[:language_code] if args.key?(:language_code)
3075
+ @multi_speaker_voice_config = args[:multi_speaker_voice_config] if args.key?(:multi_speaker_voice_config)
2876
3076
  @voice_config = args[:voice_config] if args.key?(:voice_config)
2877
3077
  end
2878
3078
  end
@@ -2892,6 +3092,11 @@ module Google
2892
3092
  # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution]
2893
3093
  attr_accessor :code_execution
2894
3094
 
3095
+ # Tool to support computer use.
3096
+ # Corresponds to the JSON property `computerUse`
3097
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse]
3098
+ attr_accessor :computer_use
3099
+
2895
3100
  # Tool to search public web data, powered by Vertex AI Search and Sec4
2896
3101
  # compliance.
2897
3102
  # Corresponds to the JSON property `enterpriseWebSearch`
@@ -2941,6 +3146,7 @@ module Google
2941
3146
  # Update properties of this object
2942
3147
  def update!(**args)
2943
3148
  @code_execution = args[:code_execution] if args.key?(:code_execution)
3149
+ @computer_use = args[:computer_use] if args.key?(:computer_use)
2944
3150
  @enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
2945
3151
  @function_declarations = args[:function_declarations] if args.key?(:function_declarations)
2946
3152
  @google_maps = args[:google_maps] if args.key?(:google_maps)
@@ -2966,6 +3172,35 @@ module Google
2966
3172
  end
2967
3173
  end
2968
3174
 
3175
+ # Tool to support computer use.
3176
+ class GoogleCloudAiplatformV1beta1ToolComputerUse
3177
+ include Google::Apis::Core::Hashable
3178
+
3179
+ # Required. The environment being operated.
3180
+ # Corresponds to the JSON property `environment`
3181
+ # @return [String]
3182
+ attr_accessor :environment
3183
+
3184
+ # Optional. By default, predefined functions are included in the final model
3185
+ # call. Some of them can be explicitly excluded from being automatically
3186
+ # included. This can serve two purposes: 1. Using a more restricted / different
3187
+ # action space. 2. Improving the definitions / instructions of predefined
3188
+ # functions.
3189
+ # Corresponds to the JSON property `excludedPredefinedFunctions`
3190
+ # @return [Array<String>]
3191
+ attr_accessor :excluded_predefined_functions
3192
+
3193
+ def initialize(**args)
3194
+ update!(**args)
3195
+ end
3196
+
3197
+ # Update properties of this object
3198
+ def update!(**args)
3199
+ @environment = args[:environment] if args.key?(:environment)
3200
+ @excluded_predefined_functions = args[:excluded_predefined_functions] if args.key?(:excluded_predefined_functions)
3201
+ end
3202
+ end
3203
+
2969
3204
  # Tool config. This config is shared for all tools provided in the request.
2970
3205
  class GoogleCloudAiplatformV1beta1ToolConfig
2971
3206
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebasemlV2beta
18
18
  # Version of the google-apis-firebaseml_v2beta gem
19
- GEM_VERSION = "0.32.0"
19
+ GEM_VERSION = "0.34.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 = "20250930"
25
+ REVISION = "20251013"
26
26
  end
27
27
  end
28
28
  end
@@ -190,6 +190,24 @@ module Google
190
190
  include Google::Apis::Core::JsonObjectSupport
191
191
  end
192
192
 
193
+ class GoogleCloudAiplatformV1beta1FunctionResponseBlob
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
199
+ class GoogleCloudAiplatformV1beta1FunctionResponseFileData
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
205
+ class GoogleCloudAiplatformV1beta1FunctionResponsePart
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
193
211
  class GoogleCloudAiplatformV1beta1GenerateContentRequest
194
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
213
 
@@ -322,6 +340,12 @@ module Google
322
340
  include Google::Apis::Core::JsonObjectSupport
323
341
  end
324
342
 
343
+ class GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions
344
+ class Representation < Google::Apis::Core::JsonRepresentation; end
345
+
346
+ include Google::Apis::Core::JsonObjectSupport
347
+ end
348
+
325
349
  class GoogleCloudAiplatformV1beta1LogprobsResult
326
350
  class Representation < Google::Apis::Core::JsonRepresentation; end
327
351
 
@@ -352,6 +376,12 @@ module Google
352
376
  include Google::Apis::Core::JsonObjectSupport
353
377
  end
354
378
 
379
+ class GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
355
385
  class GoogleCloudAiplatformV1beta1Part
356
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
387
 
@@ -460,6 +490,12 @@ module Google
460
490
  include Google::Apis::Core::JsonObjectSupport
461
491
  end
462
492
 
493
+ class GoogleCloudAiplatformV1beta1SpeakerVoiceConfig
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
463
499
  class GoogleCloudAiplatformV1beta1SpeechConfig
464
500
  class Representation < Google::Apis::Core::JsonRepresentation; end
465
501
 
@@ -478,6 +514,12 @@ module Google
478
514
  include Google::Apis::Core::JsonObjectSupport
479
515
  end
480
516
 
517
+ class GoogleCloudAiplatformV1beta1ToolComputerUse
518
+ class Representation < Google::Apis::Core::JsonRepresentation; end
519
+
520
+ include Google::Apis::Core::JsonObjectSupport
521
+ end
522
+
481
523
  class GoogleCloudAiplatformV1beta1ToolConfig
482
524
  class Representation < Google::Apis::Core::JsonRepresentation; end
483
525
 
@@ -833,10 +875,40 @@ module Google
833
875
  class Representation < Google::Apis::Core::JsonRepresentation
834
876
  property :id, as: 'id'
835
877
  property :name, as: 'name'
878
+ collection :parts, as: 'parts', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponsePart, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponsePart::Representation
879
+
836
880
  hash :response, as: 'response'
837
881
  end
838
882
  end
839
883
 
884
+ class GoogleCloudAiplatformV1beta1FunctionResponseBlob
885
+ # @private
886
+ class Representation < Google::Apis::Core::JsonRepresentation
887
+ property :data, :base64 => true, as: 'data'
888
+ property :display_name, as: 'displayName'
889
+ property :mime_type, as: 'mimeType'
890
+ end
891
+ end
892
+
893
+ class GoogleCloudAiplatformV1beta1FunctionResponseFileData
894
+ # @private
895
+ class Representation < Google::Apis::Core::JsonRepresentation
896
+ property :display_name, as: 'displayName'
897
+ property :file_uri, as: 'fileUri'
898
+ property :mime_type, as: 'mimeType'
899
+ end
900
+ end
901
+
902
+ class GoogleCloudAiplatformV1beta1FunctionResponsePart
903
+ # @private
904
+ class Representation < Google::Apis::Core::JsonRepresentation
905
+ property :file_data, as: 'fileData', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponseFileData, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponseFileData::Representation
906
+
907
+ property :inline_data, as: 'inlineData', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponseBlob, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponseBlob::Representation
908
+
909
+ end
910
+ end
911
+
840
912
  class GoogleCloudAiplatformV1beta1GenerateContentRequest
841
913
  # @private
842
914
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1097,6 +1169,17 @@ module Google
1097
1169
  # @private
1098
1170
  class Representation < Google::Apis::Core::JsonRepresentation
1099
1171
  property :aspect_ratio, as: 'aspectRatio'
1172
+ property :image_output_options, as: 'imageOutputOptions', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions::Representation
1173
+
1174
+ property :person_generation, as: 'personGeneration'
1175
+ end
1176
+ end
1177
+
1178
+ class GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions
1179
+ # @private
1180
+ class Representation < Google::Apis::Core::JsonRepresentation
1181
+ property :compression_quality, as: 'compressionQuality'
1182
+ property :mime_type, as: 'mimeType'
1100
1183
  end
1101
1184
  end
1102
1185
 
@@ -1143,6 +1226,14 @@ module Google
1143
1226
  end
1144
1227
  end
1145
1228
 
1229
+ class GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig
1230
+ # @private
1231
+ class Representation < Google::Apis::Core::JsonRepresentation
1232
+ collection :speaker_voice_configs, as: 'speakerVoiceConfigs', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SpeakerVoiceConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SpeakerVoiceConfig::Representation
1233
+
1234
+ end
1235
+ end
1236
+
1146
1237
  class GoogleCloudAiplatformV1beta1Part
1147
1238
  # @private
1148
1239
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1347,10 +1438,21 @@ module Google
1347
1438
  end
1348
1439
  end
1349
1440
 
1441
+ class GoogleCloudAiplatformV1beta1SpeakerVoiceConfig
1442
+ # @private
1443
+ class Representation < Google::Apis::Core::JsonRepresentation
1444
+ property :speaker, as: 'speaker'
1445
+ property :voice_config, as: 'voiceConfig', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VoiceConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VoiceConfig::Representation
1446
+
1447
+ end
1448
+ end
1449
+
1350
1450
  class GoogleCloudAiplatformV1beta1SpeechConfig
1351
1451
  # @private
1352
1452
  class Representation < Google::Apis::Core::JsonRepresentation
1353
1453
  property :language_code, as: 'languageCode'
1454
+ property :multi_speaker_voice_config, as: 'multiSpeakerVoiceConfig', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig::Representation
1455
+
1354
1456
  property :voice_config, as: 'voiceConfig', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VoiceConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VoiceConfig::Representation
1355
1457
 
1356
1458
  end
@@ -1361,6 +1463,8 @@ module Google
1361
1463
  class Representation < Google::Apis::Core::JsonRepresentation
1362
1464
  property :code_execution, as: 'codeExecution', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution::Representation
1363
1465
 
1466
+ property :computer_use, as: 'computerUse', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse::Representation
1467
+
1364
1468
  property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1EnterpriseWebSearch, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1EnterpriseWebSearch::Representation
1365
1469
 
1366
1470
  collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionDeclaration, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionDeclaration::Representation
@@ -1384,6 +1488,14 @@ module Google
1384
1488
  end
1385
1489
  end
1386
1490
 
1491
+ class GoogleCloudAiplatformV1beta1ToolComputerUse
1492
+ # @private
1493
+ class Representation < Google::Apis::Core::JsonRepresentation
1494
+ property :environment, as: 'environment'
1495
+ collection :excluded_predefined_functions, as: 'excludedPredefinedFunctions'
1496
+ end
1497
+ end
1498
+
1387
1499
  class GoogleCloudAiplatformV1beta1ToolConfig
1388
1500
  # @private
1389
1501
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebaseml_v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.34.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-firebaseml_v2beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.32.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.34.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseml_v2beta
62
62
  rdoc_options: []
63
63
  require_paths: