google-apis-drivelabels_v2beta 0.6.0 → 0.8.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: 13fd51434a0b611bf5aed6e569f38cae882ffa3a2f45fa853e547037cf64e7c1
4
- data.tar.gz: 3c8626b5466731695c9d560961c6b1e06fdee9dd3a8c83e50c97070c5d48db74
3
+ metadata.gz: 8d0796a7e474f34380a7fa1d92e452b929a2c0d5307e7c4f7d28a151d4c40591
4
+ data.tar.gz: 1458888b34d61426800f82536e59d0ae6b359a36f929d19c6e1ecece69566713
5
5
  SHA512:
6
- metadata.gz: f35e2bdbadbf982e01575216a9166a706bbdd494143da9eac6dc9362fbeeb3703760f0ada63f3ff164a68323c0b579763f58c4e491bb4f79f17bb2d4b26bed5d
7
- data.tar.gz: 4bf9b4e9526afb7037a5c4ae4f44b78b478016d425cd754193b660fa43c1d90aadb292fa355a43853a9f94d437e037bbddca3ce6a0eb0a9beddb673fdd4b33d3
6
+ metadata.gz: 8b6816dbc60f531ffea0528525a8b8ebefe25271374781c1f7d07a4da811bf3de3ea48da641008212e22305fcf771a6dbabe4f160bfd501a3414f2a87c9ca606
7
+ data.tar.gz: a249e208d1c4736ebb91b734ec2edc424ec358f959f05a9998b6d360f5ac9cf959f692e6478044fa7df4a5f8c035c8468ae5d0e746382b88ebc4e5555f8a875a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-drivelabels_v2beta
2
2
 
3
+ ### v0.8.0 (2023-05-21)
4
+
5
+ * Regenerated from discovery document revision 20230517
6
+
7
+ ### v0.7.0 (2023-04-02)
8
+
9
+ * Regenerated from discovery document revision 20230327
10
+
3
11
  ### v0.6.0 (2023-03-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20230320
@@ -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/from color representations in various
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 doesn't carry
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 (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
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. Example (Java): import com.google.type.Color; // ... public static java.
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/from color representations in various
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 doesn't carry
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 (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
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. Example (Java): import com.google.type.Color; // ... public static java.
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/from color representations in various
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 doesn't carry
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 (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
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. Example (Java): import com.google.type.Color; // ... public static java.
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/from color representations in various
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 doesn't carry
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 (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
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. Example (Java): import com.google.type.Color; // ... public static java.
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
@@ -2201,6 +2201,12 @@ module Google
2201
2201
  # @return [Google::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaUserInfo]
2202
2202
  attr_accessor :creator
2203
2203
 
2204
+ # Output only. The customer this label belongs to. For example: "customers/
2205
+ # 123abc789."
2206
+ # Corresponds to the JSON property `customer`
2207
+ # @return [String]
2208
+ attr_accessor :customer
2209
+
2204
2210
  # Output only. The time this label was disabled. This value has no meaning when
2205
2211
  # the label is not disabled.
2206
2212
  # Corresponds to the JSON property `disableTime`
@@ -2316,6 +2322,7 @@ module Google
2316
2322
  @applied_label_policy = args[:applied_label_policy] if args.key?(:applied_label_policy)
2317
2323
  @create_time = args[:create_time] if args.key?(:create_time)
2318
2324
  @creator = args[:creator] if args.key?(:creator)
2325
+ @customer = args[:customer] if args.key?(:customer)
2319
2326
  @disable_time = args[:disable_time] if args.key?(:disable_time)
2320
2327
  @disabler = args[:disabler] if args.key?(:disabler)
2321
2328
  @display_hints = args[:display_hints] if args.key?(:display_hints)
@@ -3220,18 +3227,18 @@ module Google
3220
3227
  end
3221
3228
 
3222
3229
  # Represents a color in the RGBA color space. This representation is designed
3223
- # for simplicity of conversion to/from color representations in various
3230
+ # for simplicity of conversion to and from color representations in various
3224
3231
  # languages over compactness. For example, the fields of this representation can
3225
3232
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3226
3233
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3227
3234
  # method in iOS; and, with just a little work, it can be easily formatted into a
3228
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3235
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3229
3236
  # information about the absolute color space that should be used to interpret
3230
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
3237
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
3231
3238
  # applications should assume the sRGB color space. When color equality needs to
3232
3239
  # be decided, implementations, unless documented otherwise, treat two colors as
3233
- # equal if all their red, green, blue, and alpha values each differ by at most
3234
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
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.
3235
3242
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3236
3243
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3237
3244
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DrivelabelsV2beta
18
18
  # Version of the google-apis-drivelabels_v2beta gem
19
- GEM_VERSION = "0.6.0"
19
+ GEM_VERSION = "0.8.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 = "20230320"
25
+ REVISION = "20230517"
26
26
  end
27
27
  end
28
28
  end
@@ -1159,6 +1159,7 @@ module Google
1159
1159
  property :create_time, as: 'createTime'
1160
1160
  property :creator, as: 'creator', class: Google::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaUserInfo, decorator: Google::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaUserInfo::Representation
1161
1161
 
1162
+ property :customer, as: 'customer'
1162
1163
  property :disable_time, as: 'disableTime'
1163
1164
  property :disabler, as: 'disabler', class: Google::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaUserInfo, decorator: Google::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaUserInfo::Representation
1164
1165
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-drivelabels_v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.8.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-03-26 00:00:00.000000000 Z
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_v2beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-drivelabels_v2beta/v0.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-drivelabels_v2beta/v0.8.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-drivelabels_v2beta
63
63
  post_install_message:
64
64
  rdoc_options: []