google-apis-admin_directory_v1 0.52.0 → 0.53.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: 1bfbde67bdffe096d14f8a70a6b039c1218a74fb91897c54e7456181fb001b37
|
4
|
+
data.tar.gz: 714ceb51e5131a281c0897f46441ab2940ff913a2e02d2ec40c3c986b568c5a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6578865e75e72a9cc1d9b4c555ee0c6bf242a687a30b4a3db7fedb13e06e3478bd6723b4112a76e0d1648f8c2d83f16342eefd11ae8da17ee7c11b114d3ae2c6
|
7
|
+
data.tar.gz: 6b462d874a3befc693b5610bb96d8c19069e9f7e8962805e58a1829c4d5e719c19154cbec000b8ca77136af97b1d1c9f0128886b0831ee4345890cff8ab5ff27
|
data/CHANGELOG.md
CHANGED
@@ -224,6 +224,38 @@ module Google
|
|
224
224
|
end
|
225
225
|
end
|
226
226
|
|
227
|
+
# Information about the device's backlights.
|
228
|
+
class BacklightInfo
|
229
|
+
include Google::Apis::Core::Hashable
|
230
|
+
|
231
|
+
# Output only. Current brightness of the backlight, between 0 and max_brightness.
|
232
|
+
# Corresponds to the JSON property `brightness`
|
233
|
+
# @return [Fixnum]
|
234
|
+
attr_accessor :brightness
|
235
|
+
|
236
|
+
# Output only. Maximum brightness for the backlight.
|
237
|
+
# Corresponds to the JSON property `maxBrightness`
|
238
|
+
# @return [Fixnum]
|
239
|
+
attr_accessor :max_brightness
|
240
|
+
|
241
|
+
# Output only. Path to this backlight on the system. Useful if the caller needs
|
242
|
+
# to correlate with other information.
|
243
|
+
# Corresponds to the JSON property `path`
|
244
|
+
# @return [String]
|
245
|
+
attr_accessor :path
|
246
|
+
|
247
|
+
def initialize(**args)
|
248
|
+
update!(**args)
|
249
|
+
end
|
250
|
+
|
251
|
+
# Update properties of this object
|
252
|
+
def update!(**args)
|
253
|
+
@brightness = args[:brightness] if args.key?(:brightness)
|
254
|
+
@max_brightness = args[:max_brightness] if args.key?(:max_brightness)
|
255
|
+
@path = args[:path] if args.key?(:path)
|
256
|
+
end
|
257
|
+
end
|
258
|
+
|
227
259
|
# A request for changing the status of a batch of ChromeOS devices.
|
228
260
|
class BatchChangeChromeOsDeviceStatusRequest
|
229
261
|
include Google::Apis::Core::Hashable
|
@@ -953,6 +985,11 @@ module Google
|
|
953
985
|
# @return [Fixnum]
|
954
986
|
attr_accessor :auto_update_expiration
|
955
987
|
|
988
|
+
# Output only. Contains backlight information for the device.
|
989
|
+
# Corresponds to the JSON property `backlightInfo`
|
990
|
+
# @return [Array<Google::Apis::AdminDirectoryV1::BacklightInfo>]
|
991
|
+
attr_accessor :backlight_info
|
992
|
+
|
956
993
|
# The boot mode for the device. The possible values are: * `Verified`: The
|
957
994
|
# device is running a valid version of the Chrome OS. * `Dev`: The devices's
|
958
995
|
# developer hardware switch is enabled. When booted, the device has a command
|
@@ -1204,6 +1241,7 @@ module Google
|
|
1204
1241
|
@annotated_location = args[:annotated_location] if args.key?(:annotated_location)
|
1205
1242
|
@annotated_user = args[:annotated_user] if args.key?(:annotated_user)
|
1206
1243
|
@auto_update_expiration = args[:auto_update_expiration] if args.key?(:auto_update_expiration)
|
1244
|
+
@backlight_info = args[:backlight_info] if args.key?(:backlight_info)
|
1207
1245
|
@boot_mode = args[:boot_mode] if args.key?(:boot_mode)
|
1208
1246
|
@cpu_info = args[:cpu_info] if args.key?(:cpu_info)
|
1209
1247
|
@cpu_status_reports = args[:cpu_status_reports] if args.key?(:cpu_status_reports)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AdminDirectoryV1
|
18
18
|
# Version of the google-apis-admin_directory_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.53.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240304"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,12 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class BacklightInfo
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
55
61
|
class BatchChangeChromeOsDeviceStatusRequest
|
56
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
63
|
|
@@ -788,6 +794,15 @@ module Google
|
|
788
794
|
end
|
789
795
|
end
|
790
796
|
|
797
|
+
class BacklightInfo
|
798
|
+
# @private
|
799
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
800
|
+
property :brightness, as: 'brightness'
|
801
|
+
property :max_brightness, as: 'maxBrightness'
|
802
|
+
property :path, as: 'path'
|
803
|
+
end
|
804
|
+
end
|
805
|
+
|
791
806
|
class BatchChangeChromeOsDeviceStatusRequest
|
792
807
|
# @private
|
793
808
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -995,6 +1010,8 @@ module Google
|
|
995
1010
|
property :annotated_location, as: 'annotatedLocation'
|
996
1011
|
property :annotated_user, as: 'annotatedUser'
|
997
1012
|
property :auto_update_expiration, :numeric_string => true, as: 'autoUpdateExpiration'
|
1013
|
+
collection :backlight_info, as: 'backlightInfo', class: Google::Apis::AdminDirectoryV1::BacklightInfo, decorator: Google::Apis::AdminDirectoryV1::BacklightInfo::Representation
|
1014
|
+
|
998
1015
|
property :boot_mode, as: 'bootMode'
|
999
1016
|
collection :cpu_info, as: 'cpuInfo', class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo, decorator: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::Representation
|
1000
1017
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-admin_directory_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.53.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: 2024-03-
|
11
|
+
date: 2024-03-10 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-admin_directory_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-admin_directory_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-admin_directory_v1/v0.53.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-admin_directory_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|