google-apis-vision_v1p2beta1 0.19.0 → 0.21.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/vision_v1p2beta1/classes.rb +35 -31
- data/lib/google/apis/vision_v1p2beta1/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6bea7af990d7dbcd6f68aa9a800daf4c2eeff58211772a1d93d3f119adf7b38e
|
4
|
+
data.tar.gz: 3a2784c632a5bfe30cb62dc397fba69c0e80e061df77e93fb962651202a2d3d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62c2fb7b23f55ddbd9dd55ed4e224952ce8486feab6a5a3b21d279b22a31b86574203b86e57fe08a90c024fa09c9d378d597db00671cb9765962c011cf2f7e86
|
7
|
+
data.tar.gz: 686cd1e5507d1ebbce08d45a677b6f26d3cc71171a34d15988d5c8ac56a18050512fcc9cea77ea35f0066dd92ce5af4434277def84b36272523724c709a4a7c1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-vision_v1p2beta1
|
2
2
|
|
3
|
+
### v0.21.0 (2023-05-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230519
|
6
|
+
|
7
|
+
### v0.20.0 (2023-04-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230407
|
10
|
+
|
3
11
|
### v0.19.0 (2023-02-15)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.12.0
|
@@ -357,18 +357,18 @@ module Google
|
|
357
357
|
end
|
358
358
|
|
359
359
|
# Represents a color in the RGBA color space. This representation is designed
|
360
|
-
# for simplicity of conversion to
|
360
|
+
# for simplicity of conversion to and from color representations in various
|
361
361
|
# languages over compactness. For example, the fields of this representation can
|
362
362
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
363
363
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
364
364
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
365
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
365
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
366
366
|
# information about the absolute color space that should be used to interpret
|
367
|
-
# the RGB value
|
367
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
368
368
|
# applications should assume the sRGB color space. When color equality needs to
|
369
369
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
370
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
371
|
-
# 1e-5
|
370
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
371
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
372
372
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
373
373
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
374
374
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -450,18 +450,18 @@ module Google
|
|
450
450
|
include Google::Apis::Core::Hashable
|
451
451
|
|
452
452
|
# Represents a color in the RGBA color space. This representation is designed
|
453
|
-
# for simplicity of conversion to
|
453
|
+
# for simplicity of conversion to and from color representations in various
|
454
454
|
# languages over compactness. For example, the fields of this representation can
|
455
455
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
456
456
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
457
457
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
458
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
458
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
459
459
|
# information about the absolute color space that should be used to interpret
|
460
|
-
# the RGB value
|
460
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
461
461
|
# applications should assume the sRGB color space. When color equality needs to
|
462
462
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
463
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
464
|
-
# 1e-5
|
463
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
464
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
465
465
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
466
466
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
467
467
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -1150,18 +1150,18 @@ module Google
|
|
1150
1150
|
include Google::Apis::Core::Hashable
|
1151
1151
|
|
1152
1152
|
# Represents a color in the RGBA color space. This representation is designed
|
1153
|
-
# for simplicity of conversion to
|
1153
|
+
# for simplicity of conversion to and from color representations in various
|
1154
1154
|
# languages over compactness. For example, the fields of this representation can
|
1155
1155
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
1156
1156
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
1157
1157
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
1158
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
1158
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
1159
1159
|
# information about the absolute color space that should be used to interpret
|
1160
|
-
# the RGB value
|
1160
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
1161
1161
|
# applications should assume the sRGB color space. When color equality needs to
|
1162
1162
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
1163
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
1164
|
-
# 1e-5
|
1163
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
1164
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
1165
1165
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
1166
1166
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
1167
1167
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -3144,18 +3144,18 @@ module Google
|
|
3144
3144
|
include Google::Apis::Core::Hashable
|
3145
3145
|
|
3146
3146
|
# Represents a color in the RGBA color space. This representation is designed
|
3147
|
-
# for simplicity of conversion to
|
3147
|
+
# for simplicity of conversion to and from color representations in various
|
3148
3148
|
# languages over compactness. For example, the fields of this representation can
|
3149
3149
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
3150
3150
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
3151
3151
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
3152
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
3152
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
3153
3153
|
# information about the absolute color space that should be used to interpret
|
3154
|
-
# the RGB value
|
3154
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
3155
3155
|
# applications should assume the sRGB color space. When color equality needs to
|
3156
3156
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
3157
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
3158
|
-
# 1e-5
|
3157
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
3158
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
3159
3159
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
3160
3160
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
3161
3161
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -4619,7 +4619,11 @@ module Google
|
|
4619
4619
|
class GoogleCloudVisionV1p2beta1TextDetectionParams
|
4620
4620
|
include Google::Apis::Core::Hashable
|
4621
4621
|
|
4622
|
-
# A list of advanced OCR options to fine-tune OCR behavior.
|
4622
|
+
# A list of advanced OCR options to further fine-tune OCR behavior. Current
|
4623
|
+
# valid values are: - `legacy_layout`: a heuristics layout detection algorithm,
|
4624
|
+
# which serves as an alternative to the current ML-based layout detection
|
4625
|
+
# algorithm. Customers can choose the best suitable layout algorithm based on
|
4626
|
+
# their situation.
|
4623
4627
|
# Corresponds to the JSON property `advancedOcrOptions`
|
4624
4628
|
# @return [Array<String>]
|
4625
4629
|
attr_accessor :advanced_ocr_options
|
@@ -5211,18 +5215,18 @@ module Google
|
|
5211
5215
|
include Google::Apis::Core::Hashable
|
5212
5216
|
|
5213
5217
|
# Represents a color in the RGBA color space. This representation is designed
|
5214
|
-
# for simplicity of conversion to
|
5218
|
+
# for simplicity of conversion to and from color representations in various
|
5215
5219
|
# languages over compactness. For example, the fields of this representation can
|
5216
5220
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
5217
5221
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
5218
5222
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
5219
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
5223
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
5220
5224
|
# information about the absolute color space that should be used to interpret
|
5221
|
-
# the RGB value
|
5225
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
5222
5226
|
# applications should assume the sRGB color space. When color equality needs to
|
5223
5227
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
5224
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
5225
|
-
# 1e-5
|
5228
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
5229
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
5226
5230
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
5227
5231
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
5228
5232
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -7105,18 +7109,18 @@ module Google
|
|
7105
7109
|
include Google::Apis::Core::Hashable
|
7106
7110
|
|
7107
7111
|
# Represents a color in the RGBA color space. This representation is designed
|
7108
|
-
# for simplicity of conversion to
|
7112
|
+
# for simplicity of conversion to and from color representations in various
|
7109
7113
|
# languages over compactness. For example, the fields of this representation can
|
7110
7114
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
7111
7115
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
7112
7116
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
7113
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
7117
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
7114
7118
|
# information about the absolute color space that should be used to interpret
|
7115
|
-
# the RGB value
|
7119
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
7116
7120
|
# applications should assume the sRGB color space. When color equality needs to
|
7117
7121
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
7118
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
7119
|
-
# 1e-5
|
7122
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
7123
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
7120
7124
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
7121
7125
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
7122
7126
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module VisionV1p2beta1
|
18
18
|
# Version of the google-apis-vision_v1p2beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230519"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-vision_v1p2beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vision_v1p2beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vision_v1p2beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vision_v1p2beta1/v0.21.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vision_v1p2beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|