google-apis-drivelabels_v2 0.9.0 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/drivelabels_v2/classes.rb +25 -25
- data/lib/google/apis/drivelabels_v2/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: 2c2acae7eb5f85ad80e2e2f1aee4afa527ff63d3521a00440252f3020556aab9
|
4
|
+
data.tar.gz: 5de8631eaac43000bafda9c88c47930af7d6ee9ec6e496cdc576a076b51e4337
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 708c4b24cfc1d7d0f3e94c9c8893d0320ebad80c189cf32b4c50964b95d059ca17ef0d981eafff89a8e17b4975d816b19bff5c87109cdb69497a20930b2dc1b5
|
7
|
+
data.tar.gz: 9bebc4aa839ae5819a53580b71d24c6ffc487e107d80bdc3b5520dc911ad5efdb96e7b27931210b6337c5dc2b1d4537b92e4d84c8f5ad07dcfc07ae14b95e3b2
|
data/CHANGELOG.md
CHANGED
@@ -28,18 +28,18 @@ module Google
|
|
28
28
|
include Google::Apis::Core::Hashable
|
29
29
|
|
30
30
|
# Represents a color in the RGBA color space. This representation is designed
|
31
|
-
# for simplicity of conversion to
|
31
|
+
# for simplicity of conversion to and from color representations in various
|
32
32
|
# languages over compactness. For example, the fields of this representation can
|
33
33
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
34
34
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
35
35
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
36
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
36
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
37
37
|
# information about the absolute color space that should be used to interpret
|
38
|
-
# the RGB value
|
38
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
39
39
|
# applications should assume the sRGB color space. When color equality needs to
|
40
40
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
41
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
42
|
-
# 1e-5
|
41
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
42
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
43
43
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
44
44
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
45
45
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -77,18 +77,18 @@ module Google
|
|
77
77
|
attr_accessor :background_color
|
78
78
|
|
79
79
|
# Represents a color in the RGBA color space. This representation is designed
|
80
|
-
# for simplicity of conversion to
|
80
|
+
# for simplicity of conversion to and from color representations in various
|
81
81
|
# languages over compactness. For example, the fields of this representation can
|
82
82
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
83
83
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
84
84
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
85
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
85
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
86
86
|
# information about the absolute color space that should be used to interpret
|
87
|
-
# the RGB value
|
87
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
88
88
|
# applications should assume the sRGB color space. When color equality needs to
|
89
89
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
90
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
91
|
-
# 1e-5
|
90
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
91
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
92
92
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
93
93
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
94
94
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -126,18 +126,18 @@ module Google
|
|
126
126
|
attr_accessor :foreground_color
|
127
127
|
|
128
128
|
# Represents a color in the RGBA color space. This representation is designed
|
129
|
-
# for simplicity of conversion to
|
129
|
+
# for simplicity of conversion to and from color representations in various
|
130
130
|
# languages over compactness. For example, the fields of this representation can
|
131
131
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
132
132
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
133
133
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
134
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
134
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
135
135
|
# information about the absolute color space that should be used to interpret
|
136
|
-
# the RGB value
|
136
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
137
137
|
# applications should assume the sRGB color space. When color equality needs to
|
138
138
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
139
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
140
|
-
# 1e-5
|
139
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
140
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
141
141
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
142
142
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
143
143
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -191,18 +191,18 @@ module Google
|
|
191
191
|
include Google::Apis::Core::Hashable
|
192
192
|
|
193
193
|
# Represents a color in the RGBA color space. This representation is designed
|
194
|
-
# for simplicity of conversion to
|
194
|
+
# for simplicity of conversion to and from color representations in various
|
195
195
|
# languages over compactness. For example, the fields of this representation can
|
196
196
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
197
197
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
198
198
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
199
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
199
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
200
200
|
# information about the absolute color space that should be used to interpret
|
201
|
-
# the RGB value
|
201
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
202
202
|
# applications should assume the sRGB color space. When color equality needs to
|
203
203
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
204
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
205
|
-
# 1e-5
|
204
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
205
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
206
206
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
207
207
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
208
208
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -3227,18 +3227,18 @@ module Google
|
|
3227
3227
|
end
|
3228
3228
|
|
3229
3229
|
# Represents a color in the RGBA color space. This representation is designed
|
3230
|
-
# for simplicity of conversion to
|
3230
|
+
# for simplicity of conversion to and from color representations in various
|
3231
3231
|
# languages over compactness. For example, the fields of this representation can
|
3232
3232
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
3233
3233
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
3234
3234
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
3235
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
3235
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
3236
3236
|
# information about the absolute color space that should be used to interpret
|
3237
|
-
# the RGB value
|
3237
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
3238
3238
|
# applications should assume the sRGB color space. When color equality needs to
|
3239
3239
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
3240
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
3241
|
-
# 1e-5
|
3240
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
3241
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
3242
3242
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
3243
3243
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
3244
3244
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DrivelabelsV2
|
18
18
|
# Version of the google-apis-drivelabels_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.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 = "20230517"
|
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-drivelabels_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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-21 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-drivelabels_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-drivelabels_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-drivelabels_v2/v0.10.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-drivelabels_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|