google-apis-vision_v1p1beta1 0.18.0 → 0.20.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a36c54b26147e26399cdd2f51431d639f2ead05efb3b9248b249f8b61ef6c55d
4
- data.tar.gz: 6b9a5a9c51eddf507bda3e9c91e65525ad62ece4e4c69f5c185cd0e551bc0d24
3
+ metadata.gz: d6e5472b5463fc95193fea88384b3e9088290652d24d49924a4697599927d7b6
4
+ data.tar.gz: 7596776d5bfa115e22936dea40dc4ac3d63dcaa2c35565169d469e733bb396e9
5
5
  SHA512:
6
- metadata.gz: 3d715051412a1dded436a0a0ebd7a35cb867bab14b9926f032b4befe9ed43f508de34277db251e3137b65c19286fc090e8845bd8956a985aa1dc99e8daddb8fa
7
- data.tar.gz: 2071229ad5afcbf72e5dee375a664739de0522789d93799b433e1afc74ba95f93f904c5739b30e66df67d19feee279b1dbfe7ac973f7ccb4ef55206253f1483c
6
+ metadata.gz: d997ada0c7560b3485cc9fd0716111f3929c19902aeed1211e9c131b203d2ee8b0f566afbe3a92f6de33c04b55ee10b4d9555faed2f80dd449d7b748afa6f0b8
7
+ data.tar.gz: bfad7466412e66cd708cb69faa1191a7e052b2726e0ec0d6869eaf905350ab1602a876b55e01e61415943a98c3d297fdfbbdccad971adf9cb2ded1fd2445f0b8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-vision_v1p1beta1
2
2
 
3
+ ### v0.20.0 (2023-05-28)
4
+
5
+ * Regenerated from discovery document revision 20230519
6
+
7
+ ### v0.19.0 (2023-04-16)
8
+
9
+ * Regenerated from discovery document revision 20230407
10
+
3
11
  ### v0.18.0 (2023-02-19)
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/from color representations in various
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 doesn't carry
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 (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
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. Example (Java): import com.google.type.Color; // ... public static java.
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/from color representations in various
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 doesn't carry
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 (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
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. Example (Java): import com.google.type.Color; // ... public static java.
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
@@ -1424,18 +1424,18 @@ module Google
1424
1424
  include Google::Apis::Core::Hashable
1425
1425
 
1426
1426
  # Represents a color in the RGBA color space. This representation is designed
1427
- # for simplicity of conversion to/from color representations in various
1427
+ # for simplicity of conversion to and from color representations in various
1428
1428
  # languages over compactness. For example, the fields of this representation can
1429
1429
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
1430
1430
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
1431
1431
  # method in iOS; and, with just a little work, it can be easily formatted into a
1432
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
1432
+ # CSS `rgba()` string in JavaScript. This reference page does not have
1433
1433
  # information about the absolute color space that should be used to interpret
1434
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
1434
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
1435
1435
  # applications should assume the sRGB color space. When color equality needs to
1436
1436
  # be decided, implementations, unless documented otherwise, treat two colors as
1437
- # equal if all their red, green, blue, and alpha values each differ by at most
1438
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
1437
+ # equal if all their red, green, blue, and alpha values each differ by at most `
1438
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
1439
1439
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
1440
1440
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
1441
1441
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -2899,7 +2899,11 @@ module Google
2899
2899
  class GoogleCloudVisionV1p1beta1TextDetectionParams
2900
2900
  include Google::Apis::Core::Hashable
2901
2901
 
2902
- # A list of advanced OCR options to fine-tune OCR behavior.
2902
+ # A list of advanced OCR options to further fine-tune OCR behavior. Current
2903
+ # valid values are: - `legacy_layout`: a heuristics layout detection algorithm,
2904
+ # which serves as an alternative to the current ML-based layout detection
2905
+ # algorithm. Customers can choose the best suitable layout algorithm based on
2906
+ # their situation.
2903
2907
  # Corresponds to the JSON property `advancedOcrOptions`
2904
2908
  # @return [Array<String>]
2905
2909
  attr_accessor :advanced_ocr_options
@@ -3457,18 +3461,18 @@ module Google
3457
3461
  include Google::Apis::Core::Hashable
3458
3462
 
3459
3463
  # Represents a color in the RGBA color space. This representation is designed
3460
- # for simplicity of conversion to/from color representations in various
3464
+ # for simplicity of conversion to and from color representations in various
3461
3465
  # languages over compactness. For example, the fields of this representation can
3462
3466
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3463
3467
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3464
3468
  # method in iOS; and, with just a little work, it can be easily formatted into a
3465
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3469
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3466
3470
  # information about the absolute color space that should be used to interpret
3467
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
3471
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
3468
3472
  # applications should assume the sRGB color space. When color equality needs to
3469
3473
  # be decided, implementations, unless documented otherwise, treat two colors as
3470
- # equal if all their red, green, blue, and alpha values each differ by at most
3471
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
3474
+ # equal if all their red, green, blue, and alpha values each differ by at most `
3475
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
3472
3476
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3473
3477
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3474
3478
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -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/from color representations in various
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 doesn't carry
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 (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
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. Example (Java): import com.google.type.Color; // ... public static java.
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/from color representations in various
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 doesn't carry
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 (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
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. Example (Java): import com.google.type.Color; // ... public static java.
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 VisionV1p1beta1
18
18
  # Version of the google-apis-vision_v1p1beta1 gem
19
- GEM_VERSION = "0.18.0"
19
+ GEM_VERSION = "0.20.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 = "20220915"
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_v1p1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.20.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-02-19 00:00:00.000000000 Z
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_v1p1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vision_v1p1beta1/v0.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vision_v1p1beta1/v0.20.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vision_v1p1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []