google-apis-firebaseml_v2beta 0.32.0 → 0.33.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: 7ab42c30b02acc1843b1c786e35dc09f572ca4708c5e39f828af616a3776529e
4
+ data.tar.gz: 7392d900db4ec9cf0c290c71fdb981cd3fd88e24b0a3ea6b190b6914b3b2d35c
5
5
  SHA512:
6
- metadata.gz: 41eff913ccd7c60a3c5b1b1785db4b06d3ccd672c9879bc5bdc7464f9b3281591965b22c8481beb649b36d4d159850b0b54486615a422d949e2e52a2da400263
7
- data.tar.gz: 9adc24b3351da6be03fb17510fc8ca7ee15dcbea11baeb0e21be7d0155089c8ebb1a15e1e89fc73bab306893eea1eef2d75ae284e871c56caa1baef5a9beb748
6
+ metadata.gz: 62fb4405e132686ccea18d17fd0fab12e4a14ee6c38680751615eaa8f0b7307255f0f287c486a942026c343cceb2e3c0a451950e20fc9dc9ca0dccd085c9769b
7
+ data.tar.gz: 8778a7fbc01e2b247f3433494f6bb9361d4426baa488cc7af5a18c93fb3ddf5e76ebde604b0ec63de1c5d930f210bae4ee0812d02f46ac9cf60b17917cafc23c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firebaseml_v2beta
2
2
 
3
+ ### v0.33.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20251005
6
+
3
7
  ### v0.32.0 (2025-10-05)
4
8
 
5
9
  * 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
@@ -2099,6 +2208,27 @@ module Google
2099
2208
  end
2100
2209
  end
2101
2210
 
2211
+ # Configuration for a multi-speaker text-to-speech setup. Enables the use of up
2212
+ # to two distinct voices in a single synthesis request.
2213
+ class GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig
2214
+ include Google::Apis::Core::Hashable
2215
+
2216
+ # Required. A list of configurations for the voices of the speakers. Exactly two
2217
+ # speaker voice configurations must be provided.
2218
+ # Corresponds to the JSON property `speakerVoiceConfigs`
2219
+ # @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SpeakerVoiceConfig>]
2220
+ attr_accessor :speaker_voice_configs
2221
+
2222
+ def initialize(**args)
2223
+ update!(**args)
2224
+ end
2225
+
2226
+ # Update properties of this object
2227
+ def update!(**args)
2228
+ @speaker_voice_configs = args[:speaker_voice_configs] if args.key?(:speaker_voice_configs)
2229
+ end
2230
+ end
2231
+
2102
2232
  # A datatype containing media that is part of a multi-part `Content` message. A `
2103
2233
  # Part` consists of data which has an associated datatype. A `Part` can only
2104
2234
  # contain one of the accepted types in `Part.data`. A `Part` must have a fixed
@@ -2852,6 +2982,32 @@ module Google
2852
2982
  end
2853
2983
  end
2854
2984
 
2985
+ # Configuration for a single speaker in a multi speaker setup.
2986
+ class GoogleCloudAiplatformV1beta1SpeakerVoiceConfig
2987
+ include Google::Apis::Core::Hashable
2988
+
2989
+ # Required. The name of the speaker. This should be the same as the speaker name
2990
+ # used in the prompt.
2991
+ # Corresponds to the JSON property `speaker`
2992
+ # @return [String]
2993
+ attr_accessor :speaker
2994
+
2995
+ # The configuration for the voice to use.
2996
+ # Corresponds to the JSON property `voiceConfig`
2997
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VoiceConfig]
2998
+ attr_accessor :voice_config
2999
+
3000
+ def initialize(**args)
3001
+ update!(**args)
3002
+ end
3003
+
3004
+ # Update properties of this object
3005
+ def update!(**args)
3006
+ @speaker = args[:speaker] if args.key?(:speaker)
3007
+ @voice_config = args[:voice_config] if args.key?(:voice_config)
3008
+ end
3009
+ end
3010
+
2855
3011
  # The speech generation config.
2856
3012
  class GoogleCloudAiplatformV1beta1SpeechConfig
2857
3013
  include Google::Apis::Core::Hashable
@@ -2861,6 +3017,12 @@ module Google
2861
3017
  # @return [String]
2862
3018
  attr_accessor :language_code
2863
3019
 
3020
+ # Configuration for a multi-speaker text-to-speech setup. Enables the use of up
3021
+ # to two distinct voices in a single synthesis request.
3022
+ # Corresponds to the JSON property `multiSpeakerVoiceConfig`
3023
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig]
3024
+ attr_accessor :multi_speaker_voice_config
3025
+
2864
3026
  # The configuration for the voice to use.
2865
3027
  # Corresponds to the JSON property `voiceConfig`
2866
3028
  # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VoiceConfig]
@@ -2873,6 +3035,7 @@ module Google
2873
3035
  # Update properties of this object
2874
3036
  def update!(**args)
2875
3037
  @language_code = args[:language_code] if args.key?(:language_code)
3038
+ @multi_speaker_voice_config = args[:multi_speaker_voice_config] if args.key?(:multi_speaker_voice_config)
2876
3039
  @voice_config = args[:voice_config] if args.key?(:voice_config)
2877
3040
  end
2878
3041
  end
@@ -2892,6 +3055,11 @@ module Google
2892
3055
  # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution]
2893
3056
  attr_accessor :code_execution
2894
3057
 
3058
+ # Tool to support computer use.
3059
+ # Corresponds to the JSON property `computerUse`
3060
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse]
3061
+ attr_accessor :computer_use
3062
+
2895
3063
  # Tool to search public web data, powered by Vertex AI Search and Sec4
2896
3064
  # compliance.
2897
3065
  # Corresponds to the JSON property `enterpriseWebSearch`
@@ -2941,6 +3109,7 @@ module Google
2941
3109
  # Update properties of this object
2942
3110
  def update!(**args)
2943
3111
  @code_execution = args[:code_execution] if args.key?(:code_execution)
3112
+ @computer_use = args[:computer_use] if args.key?(:computer_use)
2944
3113
  @enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
2945
3114
  @function_declarations = args[:function_declarations] if args.key?(:function_declarations)
2946
3115
  @google_maps = args[:google_maps] if args.key?(:google_maps)
@@ -2966,6 +3135,35 @@ module Google
2966
3135
  end
2967
3136
  end
2968
3137
 
3138
+ # Tool to support computer use.
3139
+ class GoogleCloudAiplatformV1beta1ToolComputerUse
3140
+ include Google::Apis::Core::Hashable
3141
+
3142
+ # Required. The environment being operated.
3143
+ # Corresponds to the JSON property `environment`
3144
+ # @return [String]
3145
+ attr_accessor :environment
3146
+
3147
+ # Optional. By default, predefined functions are included in the final model
3148
+ # call. Some of them can be explicitly excluded from being automatically
3149
+ # included. This can serve two purposes: 1. Using a more restricted / different
3150
+ # action space. 2. Improving the definitions / instructions of predefined
3151
+ # functions.
3152
+ # Corresponds to the JSON property `excludedPredefinedFunctions`
3153
+ # @return [Array<String>]
3154
+ attr_accessor :excluded_predefined_functions
3155
+
3156
+ def initialize(**args)
3157
+ update!(**args)
3158
+ end
3159
+
3160
+ # Update properties of this object
3161
+ def update!(**args)
3162
+ @environment = args[:environment] if args.key?(:environment)
3163
+ @excluded_predefined_functions = args[:excluded_predefined_functions] if args.key?(:excluded_predefined_functions)
3164
+ end
3165
+ end
3166
+
2969
3167
  # Tool config. This config is shared for all tools provided in the request.
2970
3168
  class GoogleCloudAiplatformV1beta1ToolConfig
2971
3169
  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.33.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 = "20251005"
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
 
@@ -352,6 +370,12 @@ module Google
352
370
  include Google::Apis::Core::JsonObjectSupport
353
371
  end
354
372
 
373
+ class GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
355
379
  class GoogleCloudAiplatformV1beta1Part
356
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
381
 
@@ -460,6 +484,12 @@ module Google
460
484
  include Google::Apis::Core::JsonObjectSupport
461
485
  end
462
486
 
487
+ class GoogleCloudAiplatformV1beta1SpeakerVoiceConfig
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
463
493
  class GoogleCloudAiplatformV1beta1SpeechConfig
464
494
  class Representation < Google::Apis::Core::JsonRepresentation; end
465
495
 
@@ -478,6 +508,12 @@ module Google
478
508
  include Google::Apis::Core::JsonObjectSupport
479
509
  end
480
510
 
511
+ class GoogleCloudAiplatformV1beta1ToolComputerUse
512
+ class Representation < Google::Apis::Core::JsonRepresentation; end
513
+
514
+ include Google::Apis::Core::JsonObjectSupport
515
+ end
516
+
481
517
  class GoogleCloudAiplatformV1beta1ToolConfig
482
518
  class Representation < Google::Apis::Core::JsonRepresentation; end
483
519
 
@@ -833,10 +869,40 @@ module Google
833
869
  class Representation < Google::Apis::Core::JsonRepresentation
834
870
  property :id, as: 'id'
835
871
  property :name, as: 'name'
872
+ collection :parts, as: 'parts', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponsePart, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponsePart::Representation
873
+
836
874
  hash :response, as: 'response'
837
875
  end
838
876
  end
839
877
 
878
+ class GoogleCloudAiplatformV1beta1FunctionResponseBlob
879
+ # @private
880
+ class Representation < Google::Apis::Core::JsonRepresentation
881
+ property :data, :base64 => true, as: 'data'
882
+ property :display_name, as: 'displayName'
883
+ property :mime_type, as: 'mimeType'
884
+ end
885
+ end
886
+
887
+ class GoogleCloudAiplatformV1beta1FunctionResponseFileData
888
+ # @private
889
+ class Representation < Google::Apis::Core::JsonRepresentation
890
+ property :display_name, as: 'displayName'
891
+ property :file_uri, as: 'fileUri'
892
+ property :mime_type, as: 'mimeType'
893
+ end
894
+ end
895
+
896
+ class GoogleCloudAiplatformV1beta1FunctionResponsePart
897
+ # @private
898
+ class Representation < Google::Apis::Core::JsonRepresentation
899
+ property :file_data, as: 'fileData', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponseFileData, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponseFileData::Representation
900
+
901
+ property :inline_data, as: 'inlineData', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponseBlob, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionResponseBlob::Representation
902
+
903
+ end
904
+ end
905
+
840
906
  class GoogleCloudAiplatformV1beta1GenerateContentRequest
841
907
  # @private
842
908
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1143,6 +1209,14 @@ module Google
1143
1209
  end
1144
1210
  end
1145
1211
 
1212
+ class GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig
1213
+ # @private
1214
+ class Representation < Google::Apis::Core::JsonRepresentation
1215
+ collection :speaker_voice_configs, as: 'speakerVoiceConfigs', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SpeakerVoiceConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SpeakerVoiceConfig::Representation
1216
+
1217
+ end
1218
+ end
1219
+
1146
1220
  class GoogleCloudAiplatformV1beta1Part
1147
1221
  # @private
1148
1222
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1347,10 +1421,21 @@ module Google
1347
1421
  end
1348
1422
  end
1349
1423
 
1424
+ class GoogleCloudAiplatformV1beta1SpeakerVoiceConfig
1425
+ # @private
1426
+ class Representation < Google::Apis::Core::JsonRepresentation
1427
+ property :speaker, as: 'speaker'
1428
+ property :voice_config, as: 'voiceConfig', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VoiceConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VoiceConfig::Representation
1429
+
1430
+ end
1431
+ end
1432
+
1350
1433
  class GoogleCloudAiplatformV1beta1SpeechConfig
1351
1434
  # @private
1352
1435
  class Representation < Google::Apis::Core::JsonRepresentation
1353
1436
  property :language_code, as: 'languageCode'
1437
+ property :multi_speaker_voice_config, as: 'multiSpeakerVoiceConfig', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig::Representation
1438
+
1354
1439
  property :voice_config, as: 'voiceConfig', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VoiceConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VoiceConfig::Representation
1355
1440
 
1356
1441
  end
@@ -1361,6 +1446,8 @@ module Google
1361
1446
  class Representation < Google::Apis::Core::JsonRepresentation
1362
1447
  property :code_execution, as: 'codeExecution', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolCodeExecution::Representation
1363
1448
 
1449
+ property :computer_use, as: 'computerUse', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ToolComputerUse::Representation
1450
+
1364
1451
  property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1EnterpriseWebSearch, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1EnterpriseWebSearch::Representation
1365
1452
 
1366
1453
  collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionDeclaration, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionDeclaration::Representation
@@ -1384,6 +1471,14 @@ module Google
1384
1471
  end
1385
1472
  end
1386
1473
 
1474
+ class GoogleCloudAiplatformV1beta1ToolComputerUse
1475
+ # @private
1476
+ class Representation < Google::Apis::Core::JsonRepresentation
1477
+ property :environment, as: 'environment'
1478
+ collection :excluded_predefined_functions, as: 'excludedPredefinedFunctions'
1479
+ end
1480
+ end
1481
+
1387
1482
  class GoogleCloudAiplatformV1beta1ToolConfig
1388
1483
  # @private
1389
1484
  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.33.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.33.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: