google-apis-admin_directory_v1 0.53.0 → 0.54.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 929855b6085eaae732a1363467d2eb5c5db5b807940171144babea1b701f9398
|
4
|
+
data.tar.gz: 538be8fbac87a8aac412d27a2e972f902a54f6930ad9eaf25ec050ad29d10ed9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85cee7ea2fe0375e5c8202223bf1f42a406c8e3f2d80ae06a12b07981fa9679348f9e1f4935d140e34c540eb77c88fa33879050abdf67401a6b873724c01f5f1
|
7
|
+
data.tar.gz: 2041d1920257053e960f68a84f5b1a593a57a44fc512fab6d7031ed49e611749f55f5e06497d2bdc63df805d3f3241bb03a6eed6481f780bf583bedee2d6f69f
|
data/CHANGELOG.md
CHANGED
@@ -980,11 +980,17 @@ module Google
|
|
980
980
|
attr_accessor :annotated_user
|
981
981
|
|
982
982
|
# (Read-only) The timestamp after which the device will stop receiving Chrome
|
983
|
-
# updates or support
|
983
|
+
# updates or support. Please use "autoUpdateThrough" instead.
|
984
984
|
# Corresponds to the JSON property `autoUpdateExpiration`
|
985
985
|
# @return [Fixnum]
|
986
986
|
attr_accessor :auto_update_expiration
|
987
987
|
|
988
|
+
# Output only. The timestamp after which the device will stop receiving Chrome
|
989
|
+
# updates or support.
|
990
|
+
# Corresponds to the JSON property `autoUpdateThrough`
|
991
|
+
# @return [String]
|
992
|
+
attr_accessor :auto_update_through
|
993
|
+
|
988
994
|
# Output only. Contains backlight information for the device.
|
989
995
|
# Corresponds to the JSON property `backlightInfo`
|
990
996
|
# @return [Array<Google::Apis::AdminDirectoryV1::BacklightInfo>]
|
@@ -1063,6 +1069,24 @@ module Google
|
|
1063
1069
|
# @return [String]
|
1064
1070
|
attr_accessor :ethernet_mac_address0
|
1065
1071
|
|
1072
|
+
# Output only. Whether or not the device requires the extended support opt in.
|
1073
|
+
# Corresponds to the JSON property `extendedSupportEligible`
|
1074
|
+
# @return [Boolean]
|
1075
|
+
attr_accessor :extended_support_eligible
|
1076
|
+
alias_method :extended_support_eligible?, :extended_support_eligible
|
1077
|
+
|
1078
|
+
# Output only. Whether extended support policy is enabled on the device.
|
1079
|
+
# Corresponds to the JSON property `extendedSupportEnabled`
|
1080
|
+
# @return [Boolean]
|
1081
|
+
attr_accessor :extended_support_enabled
|
1082
|
+
alias_method :extended_support_enabled?, :extended_support_enabled
|
1083
|
+
|
1084
|
+
# Output only. Date of the device when extended support policy for automatic
|
1085
|
+
# updates starts.
|
1086
|
+
# Corresponds to the JSON property `extendedSupportStart`
|
1087
|
+
# @return [String]
|
1088
|
+
attr_accessor :extended_support_start
|
1089
|
+
|
1066
1090
|
# The Chrome device's firmware version.
|
1067
1091
|
# Corresponds to the JSON property `firmwareVersion`
|
1068
1092
|
# @return [String]
|
@@ -1241,6 +1265,7 @@ module Google
|
|
1241
1265
|
@annotated_location = args[:annotated_location] if args.key?(:annotated_location)
|
1242
1266
|
@annotated_user = args[:annotated_user] if args.key?(:annotated_user)
|
1243
1267
|
@auto_update_expiration = args[:auto_update_expiration] if args.key?(:auto_update_expiration)
|
1268
|
+
@auto_update_through = args[:auto_update_through] if args.key?(:auto_update_through)
|
1244
1269
|
@backlight_info = args[:backlight_info] if args.key?(:backlight_info)
|
1245
1270
|
@boot_mode = args[:boot_mode] if args.key?(:boot_mode)
|
1246
1271
|
@cpu_info = args[:cpu_info] if args.key?(:cpu_info)
|
@@ -1254,6 +1279,9 @@ module Google
|
|
1254
1279
|
@etag = args[:etag] if args.key?(:etag)
|
1255
1280
|
@ethernet_mac_address = args[:ethernet_mac_address] if args.key?(:ethernet_mac_address)
|
1256
1281
|
@ethernet_mac_address0 = args[:ethernet_mac_address0] if args.key?(:ethernet_mac_address0)
|
1282
|
+
@extended_support_eligible = args[:extended_support_eligible] if args.key?(:extended_support_eligible)
|
1283
|
+
@extended_support_enabled = args[:extended_support_enabled] if args.key?(:extended_support_enabled)
|
1284
|
+
@extended_support_start = args[:extended_support_start] if args.key?(:extended_support_start)
|
1257
1285
|
@firmware_version = args[:firmware_version] if args.key?(:firmware_version)
|
1258
1286
|
@first_enrollment_time = args[:first_enrollment_time] if args.key?(:first_enrollment_time)
|
1259
1287
|
@kind = args[:kind] if args.key?(:kind)
|
@@ -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.54.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 = "20240429"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1010,6 +1010,7 @@ module Google
|
|
1010
1010
|
property :annotated_location, as: 'annotatedLocation'
|
1011
1011
|
property :annotated_user, as: 'annotatedUser'
|
1012
1012
|
property :auto_update_expiration, :numeric_string => true, as: 'autoUpdateExpiration'
|
1013
|
+
property :auto_update_through, as: 'autoUpdateThrough'
|
1013
1014
|
collection :backlight_info, as: 'backlightInfo', class: Google::Apis::AdminDirectoryV1::BacklightInfo, decorator: Google::Apis::AdminDirectoryV1::BacklightInfo::Representation
|
1014
1015
|
|
1015
1016
|
property :boot_mode, as: 'bootMode'
|
@@ -1028,6 +1029,9 @@ module Google
|
|
1028
1029
|
property :etag, as: 'etag'
|
1029
1030
|
property :ethernet_mac_address, as: 'ethernetMacAddress'
|
1030
1031
|
property :ethernet_mac_address0, as: 'ethernetMacAddress0'
|
1032
|
+
property :extended_support_eligible, as: 'extendedSupportEligible'
|
1033
|
+
property :extended_support_enabled, as: 'extendedSupportEnabled'
|
1034
|
+
property :extended_support_start, as: 'extendedSupportStart'
|
1031
1035
|
property :firmware_version, as: 'firmwareVersion'
|
1032
1036
|
property :first_enrollment_time, as: 'firstEnrollmentTime'
|
1033
1037
|
property :kind, as: 'kind'
|
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.54.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-
|
11
|
+
date: 2024-05-05 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.54.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: []
|