google-apis-firebaseml_v2beta 0.33.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 747a234c0b6b7f7d37468beeb87648424ee6805f6606119114f33863fdc5e666
|
4
|
+
data.tar.gz: 5b66cfad1e8d9b3c6257fd441bd09358b8986a261aae918d681154d4f9ee6aa1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 856f0b4b3067075469a958c9dc78cde2f333e7258cbdb4dde20626581cafba25e75206ae47bfa2a30dbe10287b014b536718d69e24d47afbd06da07b06241c8a
|
7
|
+
data.tar.gz: 6dc26c2065ba9a7f6bff5a2051a435fd0f7ac9ce107fbb2c75df5b263901374449a7a614bb1a22f59353fd6b258f5ef3133d5115079b3abb03e96377eb675770
|
data/CHANGELOG.md
CHANGED
@@ -2071,6 +2071,16 @@ module Google
|
|
2071
2071
|
# @return [String]
|
2072
2072
|
attr_accessor :aspect_ratio
|
2073
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
|
+
|
2074
2084
|
def initialize(**args)
|
2075
2085
|
update!(**args)
|
2076
2086
|
end
|
@@ -2078,6 +2088,33 @@ module Google
|
|
2078
2088
|
# Update properties of this object
|
2079
2089
|
def update!(**args)
|
2080
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)
|
2081
2118
|
end
|
2082
2119
|
end
|
2083
2120
|
|
@@ -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.
|
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 = "
|
25
|
+
REVISION = "20251013"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -340,6 +340,12 @@ module Google
|
|
340
340
|
include Google::Apis::Core::JsonObjectSupport
|
341
341
|
end
|
342
342
|
|
343
|
+
class GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
+
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
347
|
+
end
|
348
|
+
|
343
349
|
class GoogleCloudAiplatformV1beta1LogprobsResult
|
344
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
351
|
|
@@ -1163,6 +1169,17 @@ module Google
|
|
1163
1169
|
# @private
|
1164
1170
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1165
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'
|
1166
1183
|
end
|
1167
1184
|
end
|
1168
1185
|
|
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.
|
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.
|
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:
|