google-apis-chromemanagement_v1 0.29.0 → 0.30.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: cb7aba74a4a0b0025e603136d6070183b3e617178f851fd08110ee585d68b58f
|
4
|
+
data.tar.gz: 1fd6c677f0039edc6613580be000afbdba9136c4b3f408ac2ddae7215eee3692
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6be28289d49f35ec0ced2ae580e04cd84ea00f56cbd82ff703fb62473d8f245680a1e4e49060a56a68e4b100282e18fcf72d4ea9e00ea2dad2b314695ef73568
|
7
|
+
data.tar.gz: be1a58011e3ccbf38085df93a070fb4931eac26f1de3125c83ecbd05154eb7b5cf927ee8008d5ae447e9bf1310989f19348826fce4779c9d1109897717d415c7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-chromemanagement_v1
|
2
2
|
|
3
|
+
### v0.30.0 (2022-10-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220929
|
6
|
+
* Regenerated using generator version 0.11.0
|
7
|
+
|
3
8
|
### v0.29.0 (2022-09-29)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220926
|
@@ -454,6 +454,62 @@ module Google
|
|
454
454
|
end
|
455
455
|
end
|
456
456
|
|
457
|
+
# Boot performance report of a device. * This field is telemetry information and
|
458
|
+
# this will change over time as the device is utilized. * Data for this field is
|
459
|
+
# controlled via policy: [ReportDeviceBootMode](https://chromeenterprise.google/
|
460
|
+
# policies/#ReportDeviceBootMode) * Data Collection Frequency: On every boot up
|
461
|
+
# event * Default Data Reporting Frequency: 3 hours - Policy Controlled: Yes *
|
462
|
+
# Cache: If the device is offline, the collected data is stored locally, and
|
463
|
+
# will be reported when the device is next online: Yes * Reported for affiliated
|
464
|
+
# users only: N/A
|
465
|
+
class GoogleChromeManagementV1BootPerformanceReport
|
466
|
+
include Google::Apis::Core::Hashable
|
467
|
+
|
468
|
+
# Total time to boot up.
|
469
|
+
# Corresponds to the JSON property `bootUpDuration`
|
470
|
+
# @return [String]
|
471
|
+
attr_accessor :boot_up_duration
|
472
|
+
|
473
|
+
# The timestamp when power came on.
|
474
|
+
# Corresponds to the JSON property `bootUpTime`
|
475
|
+
# @return [String]
|
476
|
+
attr_accessor :boot_up_time
|
477
|
+
|
478
|
+
# Timestamp when the report was collected.
|
479
|
+
# Corresponds to the JSON property `reportTime`
|
480
|
+
# @return [String]
|
481
|
+
attr_accessor :report_time
|
482
|
+
|
483
|
+
# Total time since shutdown start to power off.
|
484
|
+
# Corresponds to the JSON property `shutdownDuration`
|
485
|
+
# @return [String]
|
486
|
+
attr_accessor :shutdown_duration
|
487
|
+
|
488
|
+
# The shutdown reason.
|
489
|
+
# Corresponds to the JSON property `shutdownReason`
|
490
|
+
# @return [String]
|
491
|
+
attr_accessor :shutdown_reason
|
492
|
+
|
493
|
+
# The timestamp when shutdown.
|
494
|
+
# Corresponds to the JSON property `shutdownTime`
|
495
|
+
# @return [String]
|
496
|
+
attr_accessor :shutdown_time
|
497
|
+
|
498
|
+
def initialize(**args)
|
499
|
+
update!(**args)
|
500
|
+
end
|
501
|
+
|
502
|
+
# Update properties of this object
|
503
|
+
def update!(**args)
|
504
|
+
@boot_up_duration = args[:boot_up_duration] if args.key?(:boot_up_duration)
|
505
|
+
@boot_up_time = args[:boot_up_time] if args.key?(:boot_up_time)
|
506
|
+
@report_time = args[:report_time] if args.key?(:report_time)
|
507
|
+
@shutdown_duration = args[:shutdown_duration] if args.key?(:shutdown_duration)
|
508
|
+
@shutdown_reason = args[:shutdown_reason] if args.key?(:shutdown_reason)
|
509
|
+
@shutdown_time = args[:shutdown_time] if args.key?(:shutdown_time)
|
510
|
+
end
|
511
|
+
end
|
512
|
+
|
457
513
|
# Describes a browser version and its install count.
|
458
514
|
class GoogleChromeManagementV1BrowserVersion
|
459
515
|
include Google::Apis::Core::Hashable
|
@@ -2020,6 +2076,11 @@ module Google
|
|
2020
2076
|
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport>]
|
2021
2077
|
attr_accessor :battery_status_report
|
2022
2078
|
|
2079
|
+
# Output only. Boot performance reports of the device.
|
2080
|
+
# Corresponds to the JSON property `bootPerformanceReport`
|
2081
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BootPerformanceReport>]
|
2082
|
+
attr_accessor :boot_performance_report
|
2083
|
+
|
2023
2084
|
# Output only. Information regarding CPU specs for the device.
|
2024
2085
|
# Corresponds to the JSON property `cpuInfo`
|
2025
2086
|
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuInfo>]
|
@@ -2155,6 +2216,7 @@ module Google
|
|
2155
2216
|
@audio_status_report = args[:audio_status_report] if args.key?(:audio_status_report)
|
2156
2217
|
@battery_info = args[:battery_info] if args.key?(:battery_info)
|
2157
2218
|
@battery_status_report = args[:battery_status_report] if args.key?(:battery_status_report)
|
2219
|
+
@boot_performance_report = args[:boot_performance_report] if args.key?(:boot_performance_report)
|
2158
2220
|
@cpu_info = args[:cpu_info] if args.key?(:cpu_info)
|
2159
2221
|
@cpu_status_report = args[:cpu_status_report] if args.key?(:cpu_status_report)
|
2160
2222
|
@customer = args[:customer] if args.key?(:customer)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ChromemanagementV1
|
18
18
|
# Version of the google-apis-chromemanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.30.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220929"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,12 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class GoogleChromeManagementV1BootPerformanceReport
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
67
73
|
class GoogleChromeManagementV1BrowserVersion
|
68
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
75
|
|
@@ -406,6 +412,18 @@ module Google
|
|
406
412
|
end
|
407
413
|
end
|
408
414
|
|
415
|
+
class GoogleChromeManagementV1BootPerformanceReport
|
416
|
+
# @private
|
417
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
418
|
+
property :boot_up_duration, as: 'bootUpDuration'
|
419
|
+
property :boot_up_time, as: 'bootUpTime'
|
420
|
+
property :report_time, as: 'reportTime'
|
421
|
+
property :shutdown_duration, as: 'shutdownDuration'
|
422
|
+
property :shutdown_reason, as: 'shutdownReason'
|
423
|
+
property :shutdown_time, as: 'shutdownTime'
|
424
|
+
end
|
425
|
+
end
|
426
|
+
|
409
427
|
class GoogleChromeManagementV1BrowserVersion
|
410
428
|
# @private
|
411
429
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -802,6 +820,8 @@ module Google
|
|
802
820
|
|
803
821
|
collection :battery_status_report, as: 'batteryStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport::Representation
|
804
822
|
|
823
|
+
collection :boot_performance_report, as: 'bootPerformanceReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BootPerformanceReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BootPerformanceReport::Representation
|
824
|
+
|
805
825
|
collection :cpu_info, as: 'cpuInfo', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuInfo::Representation
|
806
826
|
|
807
827
|
collection :cpu_status_report, as: 'cpuStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuStatusReport::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-chromemanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.30.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: 2022-10-
|
11
|
+
date: 2022-10-31 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.9.
|
19
|
+
version: 0.9.1
|
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.9.
|
29
|
+
version: 0.9.1
|
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-chromemanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.30.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromemanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|