Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of firebaseml v2beta client #21122

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -224633,6 +224633,7 @@
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1Part/functionResponse": function_response
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1Part/inlineData": inline_data
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1Part/text": text
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1Part/thought": thought
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1Part/videoMetadata": video_metadata
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1PrebuiltVoiceConfig": google_cloud_aiplatform_v1beta1_prebuilt_voice_config
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1PrebuiltVoiceConfig/voiceName": voice_name
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-firebaseml_v2beta/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-firebaseml_v2beta

### v0.13.0 (2024-12-22)

* Regenerated from discovery document revision 20241217

### v0.12.0 (2024-12-15)

* Regenerated from discovery document revision 20241211
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1284,6 +1284,12 @@ class GoogleCloudAiplatformV1beta1Part
# @return [String]
attr_accessor :text

# Output only. Indicates if the part is thought from the model.
# Corresponds to the JSON property `thought`
# @return [Boolean]
attr_accessor :thought
alias_method :thought?, :thought

# Metadata describes the input video content.
# Corresponds to the JSON property `videoMetadata`
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VideoMetadata]
Expand All @@ -1302,6 +1308,7 @@ def update!(**args)
@function_response = args[:function_response] if args.key?(:function_response)
@inline_data = args[:inline_data] if args.key?(:inline_data)
@text = args[:text] if args.key?(:text)
@thought = args[:thought] if args.key?(:thought)
@video_metadata = args[:video_metadata] if args.key?(:video_metadata)
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module FirebasemlV2beta
# Version of the google-apis-firebaseml_v2beta gem
GEM_VERSION = "0.12.0"
GEM_VERSION = "0.13.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.15.1"

# Revision of the discovery document this client was generated from
REVISION = "20241211"
REVISION = "20241217"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :inline_data, as: 'inlineData', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1Blob, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1Blob::Representation

property :text, as: 'text'
property :thought, as: 'thought'
property :video_metadata, as: 'videoMetadata', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VideoMetadata, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VideoMetadata::Representation

end
Expand Down
Loading