google-apis-chromemanagement_v1 0.39.0 → 0.40.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: c92e4b460f16a11703d84e981fbb52a4483389755d4753c9ea704346fca7052d
|
4
|
+
data.tar.gz: 446b0c05b3100835a7ed4fc39d526cc72011aa24ae05cfee70c1e7ef8ea4b8c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a217c9c25c5155a0bf9b4759dd64653ccae82cb8a41bb3fb9511dad0762d80a269cda5f8d7ee74eb9c1c9e470773baac4a3b6fbca49f67406471097fb15759b6
|
7
|
+
data.tar.gz: 22aeadffe25b433586a094389f9f6beb62af05703c9c0bd5da8ac10874f35b6689a823ac376b2c5389a676fb4228f507ae3d05676cd0976390718469f9a7ecee
|
data/CHANGELOG.md
CHANGED
@@ -1569,6 +1569,41 @@ module Google
|
|
1569
1569
|
end
|
1570
1570
|
end
|
1571
1571
|
|
1572
|
+
# Heartbeat status report of a device. * Available for Kiosks * This field
|
1573
|
+
# provides online/offline/unknown status of a device and will only be included
|
1574
|
+
# if the status has changed (e.g. Online -> Offline) * Data for this field is
|
1575
|
+
# controlled via policy: [HeartbeatEnabled](https://chromeenterprise.google/
|
1576
|
+
# policies/#HeartbeatEnabled) [More Info](https://support.google.com/chrome/a/
|
1577
|
+
# answer/6179663#:~:text=On%20the%20Chrome,device%20status%20alerts) * Heartbeat
|
1578
|
+
# Frequency: 2 mins * Note: If a device goes offline, it can take up to 12
|
1579
|
+
# minutes for the online status of the device to be updated * Cache: If the
|
1580
|
+
# device is offline, the collected data is stored locally, and will be reported
|
1581
|
+
# when the device is next online: N/A * Reported for affiliated users only: N/A *
|
1582
|
+
# Granular permission needed: TELEMETRY_API_DEVICE_ACTIVITY_REPORT
|
1583
|
+
class GoogleChromeManagementV1HeartbeatStatusReport
|
1584
|
+
include Google::Apis::Core::Hashable
|
1585
|
+
|
1586
|
+
# Timestamp of when status changed was detected
|
1587
|
+
# Corresponds to the JSON property `reportTime`
|
1588
|
+
# @return [String]
|
1589
|
+
attr_accessor :report_time
|
1590
|
+
|
1591
|
+
# State the device changed to
|
1592
|
+
# Corresponds to the JSON property `state`
|
1593
|
+
# @return [String]
|
1594
|
+
attr_accessor :state
|
1595
|
+
|
1596
|
+
def initialize(**args)
|
1597
|
+
update!(**args)
|
1598
|
+
end
|
1599
|
+
|
1600
|
+
# Update properties of this object
|
1601
|
+
def update!(**args)
|
1602
|
+
@report_time = args[:report_time] if args.key?(:report_time)
|
1603
|
+
@state = args[:state] if args.key?(:state)
|
1604
|
+
end
|
1605
|
+
end
|
1606
|
+
|
1572
1607
|
# Data that describes the result of the HTTPS latency diagnostics routine, with
|
1573
1608
|
# the HTTPS requests issued to Google websites.
|
1574
1609
|
class GoogleChromeManagementV1HttpsLatencyRoutineData
|
@@ -1678,6 +1713,45 @@ module Google
|
|
1678
1713
|
end
|
1679
1714
|
end
|
1680
1715
|
|
1716
|
+
# Kiosk app status report of a device. * Available for Kiosks * This field
|
1717
|
+
# provides the app id and version number running on a kiosk device and the
|
1718
|
+
# timestamp of when the report was last updated * Data for this field is
|
1719
|
+
# controlled via policy: [ReportDeviceSessionStatus](https://chromeenterprise.
|
1720
|
+
# google/policies/#ReportDeviceSessionStatus) * Data Collection Frequency: Only
|
1721
|
+
# at Upload * Default Data Reporting Frequency: 3 hours - Policy Controlled: Yes
|
1722
|
+
# * Cache: If the device is offline, the collected data is stored locally, and
|
1723
|
+
# will be reported when the device is next online: No * Reported for affiliated
|
1724
|
+
# users only: N/A * Granular permission needed: TELEMETRY_API_APPS_REPORT
|
1725
|
+
class GoogleChromeManagementV1KioskAppStatusReport
|
1726
|
+
include Google::Apis::Core::Hashable
|
1727
|
+
|
1728
|
+
# App id of kiosk app for example "mdmkkicfmmkgmpkmkdikhlbggogpicma"
|
1729
|
+
# Corresponds to the JSON property `appId`
|
1730
|
+
# @return [String]
|
1731
|
+
attr_accessor :app_id
|
1732
|
+
|
1733
|
+
# App version number of kiosk app for example "1.10.118"
|
1734
|
+
# Corresponds to the JSON property `appVersion`
|
1735
|
+
# @return [String]
|
1736
|
+
attr_accessor :app_version
|
1737
|
+
|
1738
|
+
# Timestamp of when report was collected
|
1739
|
+
# Corresponds to the JSON property `reportTime`
|
1740
|
+
# @return [String]
|
1741
|
+
attr_accessor :report_time
|
1742
|
+
|
1743
|
+
def initialize(**args)
|
1744
|
+
update!(**args)
|
1745
|
+
end
|
1746
|
+
|
1747
|
+
# Update properties of this object
|
1748
|
+
def update!(**args)
|
1749
|
+
@app_id = args[:app_id] if args.key?(:app_id)
|
1750
|
+
@app_version = args[:app_version] if args.key?(:app_version)
|
1751
|
+
@report_time = args[:report_time] if args.key?(:report_time)
|
1752
|
+
end
|
1753
|
+
end
|
1754
|
+
|
1681
1755
|
#
|
1682
1756
|
class GoogleChromeManagementV1ListTelemetryDevicesResponse
|
1683
1757
|
include Google::Apis::Core::Hashable
|
@@ -2338,6 +2412,17 @@ module Google
|
|
2338
2412
|
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1GraphicsStatusReport>]
|
2339
2413
|
attr_accessor :graphics_status_report
|
2340
2414
|
|
2415
|
+
# Output only. Heartbeat status report containing timestamps periodically sorted
|
2416
|
+
# in decreasing order of report_time
|
2417
|
+
# Corresponds to the JSON property `heartbeatStatusReport`
|
2418
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HeartbeatStatusReport>]
|
2419
|
+
attr_accessor :heartbeat_status_report
|
2420
|
+
|
2421
|
+
# Output only. Kiosk app status report for the kiosk device
|
2422
|
+
# Corresponds to the JSON property `kioskAppStatusReport`
|
2423
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1KioskAppStatusReport>]
|
2424
|
+
attr_accessor :kiosk_app_status_report
|
2425
|
+
|
2341
2426
|
# Memory information of a device. * This field has both telemetry and device
|
2342
2427
|
# information: - `totalRamBytes` - Device information - `availableRamBytes` -
|
2343
2428
|
# Telemetry information - `totalMemoryEncryption` - Device information * Data
|
@@ -2449,6 +2534,8 @@ module Google
|
|
2449
2534
|
@device_id = args[:device_id] if args.key?(:device_id)
|
2450
2535
|
@graphics_info = args[:graphics_info] if args.key?(:graphics_info)
|
2451
2536
|
@graphics_status_report = args[:graphics_status_report] if args.key?(:graphics_status_report)
|
2537
|
+
@heartbeat_status_report = args[:heartbeat_status_report] if args.key?(:heartbeat_status_report)
|
2538
|
+
@kiosk_app_status_report = args[:kiosk_app_status_report] if args.key?(:kiosk_app_status_report)
|
2452
2539
|
@memory_info = args[:memory_info] if args.key?(:memory_info)
|
2453
2540
|
@memory_status_report = args[:memory_status_report] if args.key?(:memory_status_report)
|
2454
2541
|
@name = args[:name] if args.key?(:name)
|
@@ -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.40.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 = "
|
25
|
+
REVISION = "20230516"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -220,6 +220,12 @@ module Google
|
|
220
220
|
include Google::Apis::Core::JsonObjectSupport
|
221
221
|
end
|
222
222
|
|
223
|
+
class GoogleChromeManagementV1HeartbeatStatusReport
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
|
+
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
227
|
+
end
|
228
|
+
|
223
229
|
class GoogleChromeManagementV1HttpsLatencyRoutineData
|
224
230
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
231
|
|
@@ -232,6 +238,12 @@ module Google
|
|
232
238
|
include Google::Apis::Core::JsonObjectSupport
|
233
239
|
end
|
234
240
|
|
241
|
+
class GoogleChromeManagementV1KioskAppStatusReport
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
235
247
|
class GoogleChromeManagementV1ListTelemetryDevicesResponse
|
236
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
249
|
|
@@ -793,6 +805,14 @@ module Google
|
|
793
805
|
end
|
794
806
|
end
|
795
807
|
|
808
|
+
class GoogleChromeManagementV1HeartbeatStatusReport
|
809
|
+
# @private
|
810
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
811
|
+
property :report_time, as: 'reportTime'
|
812
|
+
property :state, as: 'state'
|
813
|
+
end
|
814
|
+
end
|
815
|
+
|
796
816
|
class GoogleChromeManagementV1HttpsLatencyRoutineData
|
797
817
|
# @private
|
798
818
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -818,6 +838,15 @@ module Google
|
|
818
838
|
end
|
819
839
|
end
|
820
840
|
|
841
|
+
class GoogleChromeManagementV1KioskAppStatusReport
|
842
|
+
# @private
|
843
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
844
|
+
property :app_id, as: 'appId'
|
845
|
+
property :app_version, as: 'appVersion'
|
846
|
+
property :report_time, as: 'reportTime'
|
847
|
+
end
|
848
|
+
end
|
849
|
+
|
821
850
|
class GoogleChromeManagementV1ListTelemetryDevicesResponse
|
822
851
|
# @private
|
823
852
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -990,6 +1019,10 @@ module Google
|
|
990
1019
|
|
991
1020
|
collection :graphics_status_report, as: 'graphicsStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1GraphicsStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1GraphicsStatusReport::Representation
|
992
1021
|
|
1022
|
+
collection :heartbeat_status_report, as: 'heartbeatStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HeartbeatStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HeartbeatStatusReport::Representation
|
1023
|
+
|
1024
|
+
collection :kiosk_app_status_report, as: 'kioskAppStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1KioskAppStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1KioskAppStatusReport::Representation
|
1025
|
+
|
993
1026
|
property :memory_info, as: 'memoryInfo', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryInfo::Representation
|
994
1027
|
|
995
1028
|
collection :memory_status_report, as: 'memoryStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryStatusReport::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.40.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-05-
|
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-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.40.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: []
|