google-apis-admin_directory_v1 0.53.0 → 0.55.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: 1bfbde67bdffe096d14f8a70a6b039c1218a74fb91897c54e7456181fb001b37
4
- data.tar.gz: 714ceb51e5131a281c0897f46441ab2940ff913a2e02d2ec40c3c986b568c5a1
3
+ metadata.gz: b169edc49c0d3529ff64b2a2cb0cbe66edc51d5e74b646afc5efb034cf287bfe
4
+ data.tar.gz: 90e4585cd1cab1716b4e2fb1b2c54a54a1016a06567ba8b7a127465596940ac6
5
5
  SHA512:
6
- metadata.gz: 6578865e75e72a9cc1d9b4c555ee0c6bf242a687a30b4a3db7fedb13e06e3478bd6723b4112a76e0d1648f8c2d83f16342eefd11ae8da17ee7c11b114d3ae2c6
7
- data.tar.gz: 6b462d874a3befc693b5610bb96d8c19069e9f7e8962805e58a1829c4d5e719c19154cbec000b8ca77136af97b1d1c9f0128886b0831ee4345890cff8ab5ff27
6
+ metadata.gz: 83db113dbefdb18eb099e348e1a2f7f469960526117c85a7c08ef3da5fb95ea17eb2fc03e1423cab5e65c034a76d7a0c863bed7b5603f35e1179847bfa6a2eee
7
+ data.tar.gz: a892217653e3485070f42745acf263b94dfb50f6fd21956743ddc70ed75c46286968e4bdad9d3b54c12786ab8d47ac09c5dfd25fa0f9f1db03fa6c69398775af
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-admin_directory_v1
2
2
 
3
+ ### v0.55.0 (2024-05-19)
4
+
5
+ * Regenerated from discovery document revision 20240509
6
+ * Regenerated using generator version 0.15.0
7
+
8
+ ### v0.54.0 (2024-05-05)
9
+
10
+ * Regenerated from discovery document revision 20240429
11
+
3
12
  ### v0.53.0 (2024-03-10)
4
13
 
5
14
  * Regenerated from discovery document revision 20240304
@@ -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>]
@@ -1001,6 +1007,11 @@ module Google
1001
1007
  # @return [String]
1002
1008
  attr_accessor :boot_mode
1003
1009
 
1010
+ # Output only. Chrome OS type of the device.
1011
+ # Corresponds to the JSON property `chromeOsType`
1012
+ # @return [String]
1013
+ attr_accessor :chrome_os_type
1014
+
1004
1015
  # Information regarding CPU specs in the device.
1005
1016
  # Corresponds to the JSON property `cpuInfo`
1006
1017
  # @return [Array<Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo>]
@@ -1063,6 +1074,29 @@ module Google
1063
1074
  # @return [String]
1064
1075
  attr_accessor :ethernet_mac_address0
1065
1076
 
1077
+ # Output only. Whether or not the device requires the extended support opt in.
1078
+ # Corresponds to the JSON property `extendedSupportEligible`
1079
+ # @return [Boolean]
1080
+ attr_accessor :extended_support_eligible
1081
+ alias_method :extended_support_eligible?, :extended_support_eligible
1082
+
1083
+ # Output only. Whether extended support policy is enabled on the device.
1084
+ # Corresponds to the JSON property `extendedSupportEnabled`
1085
+ # @return [Boolean]
1086
+ attr_accessor :extended_support_enabled
1087
+ alias_method :extended_support_enabled?, :extended_support_enabled
1088
+
1089
+ # Output only. Date of the device when extended support policy for automatic
1090
+ # updates starts.
1091
+ # Corresponds to the JSON property `extendedSupportStart`
1092
+ # @return [String]
1093
+ attr_accessor :extended_support_start
1094
+
1095
+ # Output only. Fan information for the device.
1096
+ # Corresponds to the JSON property `fanInfo`
1097
+ # @return [Array<Google::Apis::AdminDirectoryV1::FanInfo>]
1098
+ attr_accessor :fan_info
1099
+
1066
1100
  # The Chrome device's firmware version.
1067
1101
  # Corresponds to the JSON property `firmwareVersion`
1068
1102
  # @return [String]
@@ -1241,8 +1275,10 @@ module Google
1241
1275
  @annotated_location = args[:annotated_location] if args.key?(:annotated_location)
1242
1276
  @annotated_user = args[:annotated_user] if args.key?(:annotated_user)
1243
1277
  @auto_update_expiration = args[:auto_update_expiration] if args.key?(:auto_update_expiration)
1278
+ @auto_update_through = args[:auto_update_through] if args.key?(:auto_update_through)
1244
1279
  @backlight_info = args[:backlight_info] if args.key?(:backlight_info)
1245
1280
  @boot_mode = args[:boot_mode] if args.key?(:boot_mode)
1281
+ @chrome_os_type = args[:chrome_os_type] if args.key?(:chrome_os_type)
1246
1282
  @cpu_info = args[:cpu_info] if args.key?(:cpu_info)
1247
1283
  @cpu_status_reports = args[:cpu_status_reports] if args.key?(:cpu_status_reports)
1248
1284
  @deprovision_reason = args[:deprovision_reason] if args.key?(:deprovision_reason)
@@ -1254,6 +1290,10 @@ module Google
1254
1290
  @etag = args[:etag] if args.key?(:etag)
1255
1291
  @ethernet_mac_address = args[:ethernet_mac_address] if args.key?(:ethernet_mac_address)
1256
1292
  @ethernet_mac_address0 = args[:ethernet_mac_address0] if args.key?(:ethernet_mac_address0)
1293
+ @extended_support_eligible = args[:extended_support_eligible] if args.key?(:extended_support_eligible)
1294
+ @extended_support_enabled = args[:extended_support_enabled] if args.key?(:extended_support_enabled)
1295
+ @extended_support_start = args[:extended_support_start] if args.key?(:extended_support_start)
1296
+ @fan_info = args[:fan_info] if args.key?(:fan_info)
1257
1297
  @firmware_version = args[:firmware_version] if args.key?(:firmware_version)
1258
1298
  @first_enrollment_time = args[:first_enrollment_time] if args.key?(:first_enrollment_time)
1259
1299
  @kind = args[:kind] if args.key?(:kind)
@@ -2386,6 +2426,25 @@ module Google
2386
2426
  end
2387
2427
  end
2388
2428
 
2429
+ # Information about the device's fan.
2430
+ class FanInfo
2431
+ include Google::Apis::Core::Hashable
2432
+
2433
+ # Output only. Fan speed in RPM.
2434
+ # Corresponds to the JSON property `speedRpm`
2435
+ # @return [Fixnum]
2436
+ attr_accessor :speed_rpm
2437
+
2438
+ def initialize(**args)
2439
+ update!(**args)
2440
+ end
2441
+
2442
+ # Update properties of this object
2443
+ def update!(**args)
2444
+ @speed_rpm = args[:speed_rpm] if args.key?(:speed_rpm)
2445
+ end
2446
+ end
2447
+
2389
2448
  # JSON template for Feature object in Directory API.
2390
2449
  class Feature
2391
2450
  include Google::Apis::Core::Hashable
@@ -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.53.0"
19
+ GEM_VERSION = "0.55.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240304"
25
+ REVISION = "20240509"
26
26
  end
27
27
  end
28
28
  end
@@ -364,6 +364,12 @@ module Google
364
364
  include Google::Apis::Core::JsonObjectSupport
365
365
  end
366
366
 
367
+ class FanInfo
368
+ class Representation < Google::Apis::Core::JsonRepresentation; end
369
+
370
+ include Google::Apis::Core::JsonObjectSupport
371
+ end
372
+
367
373
  class Feature
368
374
  class Representation < Google::Apis::Core::JsonRepresentation; end
369
375
 
@@ -1010,9 +1016,11 @@ module Google
1010
1016
  property :annotated_location, as: 'annotatedLocation'
1011
1017
  property :annotated_user, as: 'annotatedUser'
1012
1018
  property :auto_update_expiration, :numeric_string => true, as: 'autoUpdateExpiration'
1019
+ property :auto_update_through, as: 'autoUpdateThrough'
1013
1020
  collection :backlight_info, as: 'backlightInfo', class: Google::Apis::AdminDirectoryV1::BacklightInfo, decorator: Google::Apis::AdminDirectoryV1::BacklightInfo::Representation
1014
1021
 
1015
1022
  property :boot_mode, as: 'bootMode'
1023
+ property :chrome_os_type, as: 'chromeOsType'
1016
1024
  collection :cpu_info, as: 'cpuInfo', class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo, decorator: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::Representation
1017
1025
 
1018
1026
  collection :cpu_status_reports, as: 'cpuStatusReports', class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuStatusReport, decorator: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuStatusReport::Representation
@@ -1028,6 +1036,11 @@ module Google
1028
1036
  property :etag, as: 'etag'
1029
1037
  property :ethernet_mac_address, as: 'ethernetMacAddress'
1030
1038
  property :ethernet_mac_address0, as: 'ethernetMacAddress0'
1039
+ property :extended_support_eligible, as: 'extendedSupportEligible'
1040
+ property :extended_support_enabled, as: 'extendedSupportEnabled'
1041
+ property :extended_support_start, as: 'extendedSupportStart'
1042
+ collection :fan_info, as: 'fanInfo', class: Google::Apis::AdminDirectoryV1::FanInfo, decorator: Google::Apis::AdminDirectoryV1::FanInfo::Representation
1043
+
1031
1044
  property :firmware_version, as: 'firmwareVersion'
1032
1045
  property :first_enrollment_time, as: 'firstEnrollmentTime'
1033
1046
  property :kind, as: 'kind'
@@ -1379,6 +1392,13 @@ module Google
1379
1392
  end
1380
1393
  end
1381
1394
 
1395
+ class FanInfo
1396
+ # @private
1397
+ class Representation < Google::Apis::Core::JsonRepresentation
1398
+ property :speed_rpm, as: 'speedRpm'
1399
+ end
1400
+ end
1401
+
1382
1402
  class Feature
1383
1403
  # @private
1384
1404
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -279,7 +279,7 @@ module Google
279
279
  # Return devices from all child orgunits, as well as the specified org unit. If
280
280
  # this is set to true, 'orgUnitPath' must be provided.
281
281
  # @param [Fixnum] max_results
282
- # Maximum number of results to return.
282
+ # Maximum number of results to return, value should not exceed 300.
283
283
  # @param [String] order_by
284
284
  # Device property to use for sorting results.
285
285
  # @param [String] org_unit_path
@@ -290,7 +290,8 @@ module Google
290
290
  # results. The follow-on request's `pageToken` query parameter is the `
291
291
  # nextPageToken` from your previous response.
292
292
  # @param [String] projection
293
- # Restrict information returned to a set of selected fields.
293
+ # Determines whether the response contains the full list of properties or only a
294
+ # subset.
294
295
  # @param [String] query
295
296
  # Search string in the format given at https://developers.google.com/admin-sdk/
296
297
  # directory/v1/list-query-operators
@@ -381,7 +382,8 @@ module Google
381
382
  # method.
382
383
  # @param [Google::Apis::AdminDirectoryV1::ChromeOsDevice] chrome_os_device_object
383
384
  # @param [String] projection
384
- # Restrict information returned to a set of selected fields.
385
+ # Determines whether the response contains the full list of properties or only a
386
+ # subset.
385
387
  # @param [String] fields
386
388
  # Selector specifying which fields to include in a partial response.
387
389
  # @param [String] quota_user
@@ -426,7 +428,8 @@ module Google
426
428
  # method.
427
429
  # @param [Google::Apis::AdminDirectoryV1::ChromeOsDevice] chrome_os_device_object
428
430
  # @param [String] projection
429
- # Restrict information returned to a set of selected fields.
431
+ # Determines whether the response contains the full list of properties or only a
432
+ # subset.
430
433
  # @param [String] fields
431
434
  # Selector specifying which fields to include in a partial response.
432
435
  # @param [String] quota_user
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.53.0
4
+ version: 0.55.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-10 00:00:00.000000000 Z
11
+ date: 2024-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.53.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-admin_directory_v1/v0.55.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: []