Skip to content
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
5 changes: 5 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -254146,6 +254146,11 @@
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1GroundingSupport/segment": segment
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ImageConfig": google_cloud_aiplatform_v1beta1_image_config
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ImageConfig/aspectRatio": aspect_ratio
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ImageConfig/imageOutputOptions": image_output_options
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ImageConfig/personGeneration": person_generation
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions": google_cloud_aiplatform_v1beta1_image_config_image_output_options
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions/compressionQuality": compression_quality
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions/mimeType": mime_type
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1LogprobsResult": google_cloud_aiplatform_v1beta1_logprobs_result
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1LogprobsResult/chosenCandidates": chosen_candidates
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1LogprobsResult/chosenCandidates/chosen_candidate": chosen_candidate
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.34.0 (2025-10-19)

* Regenerated from discovery document revision 20251013

### v0.33.0 (2025-10-12)

* Regenerated from discovery document revision 20251005
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2071,13 +2071,50 @@ class GoogleCloudAiplatformV1beta1ImageConfig
# @return [String]
attr_accessor :aspect_ratio

# The image output format for generated images.
# Corresponds to the JSON property `imageOutputOptions`
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions]
attr_accessor :image_output_options

# Optional. Controls whether the model can generate people.
# Corresponds to the JSON property `personGeneration`
# @return [String]
attr_accessor :person_generation

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@aspect_ratio = args[:aspect_ratio] if args.key?(:aspect_ratio)
@image_output_options = args[:image_output_options] if args.key?(:image_output_options)
@person_generation = args[:person_generation] if args.key?(:person_generation)
end
end

# The image output format for generated images.
class GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions
include Google::Apis::Core::Hashable

# Optional. The compression quality of the output image.
# Corresponds to the JSON property `compressionQuality`
# @return [Fixnum]
attr_accessor :compression_quality

# Optional. The image format that the output should be saved as.
# Corresponds to the JSON property `mimeType`
# @return [String]
attr_accessor :mime_type

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@compression_quality = args[:compression_quality] if args.key?(:compression_quality)
@mime_type = args[:mime_type] if args.key?(:mime_type)
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.33.0"
GEM_VERSION = "0.34.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20251005"
REVISION = "20251013"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end

class GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class GoogleCloudAiplatformV1beta1LogprobsResult
class Representation < Google::Apis::Core::JsonRepresentation; end

Expand Down Expand Up @@ -1163,6 +1169,17 @@ class GoogleCloudAiplatformV1beta1ImageConfig
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :aspect_ratio, as: 'aspectRatio'
property :image_output_options, as: 'imageOutputOptions', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions::Representation

property :person_generation, as: 'personGeneration'
end
end

class GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :compression_quality, as: 'compressionQuality'
property :mime_type, as: 'mimeType'
end
end

Expand Down