google-apis-chromemanagement_v1 0.39.0 → 0.41.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: 2fa098b618f512d056452f759f05fd27cafe7682b81c32f2ea19ea97b0d15ae0
4
- data.tar.gz: 8c81188af52637cb89460a748d4ed19026661f58535cf3b04a2ce4a2a0ea1271
3
+ metadata.gz: 7ec2afd990653efae4a4c278c91e8637e695b12eb3a5d8a4ea104f97843a2fb1
4
+ data.tar.gz: 7faf6740c88f92fb4f85200400b1f427c7128fe0eef0599dcda2c063efdaffd9
5
5
  SHA512:
6
- metadata.gz: 41c20cb48854a7a60a67ebb5b4bc71d1af2ac6f649649e0c89f6f54aaad9797626ccfc0863f0b4a3d537f35c05728b2dad38df8ef3a6021f1a7c776b7e5e6778
7
- data.tar.gz: 87298f799fa6a366272a48b9da3a64186c9bff8f4f3b8d2c12128f690845987cf4279a4caa0e6562223e95d88a5144b1502df6726a640b9818ede8d91c9bc298
6
+ metadata.gz: 8cfc380dac153bee5bef65a36f5b200f3360d317488b3489761767855c1a082b33b9fe3b3025350a9868d7bc9febdde5e5fd04638bdb791df2760264ed8201c0
7
+ data.tar.gz: 98b23c012cbe1758f4af1ae8997bea5e51e3fcfcae53af294594e0fa697f129de7e3164d0ec45c44ada704ab60b8025dafe732a6c473eaf2c9bce4fd3f8f9799
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-chromemanagement_v1
2
2
 
3
+ ### v0.41.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230620
6
+
7
+ ### v0.40.0 (2023-05-21)
8
+
9
+ * Regenerated from discovery document revision 20230516
10
+
3
11
  ### v0.39.0 (2023-05-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20230504
@@ -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.39.0"
19
+ GEM_VERSION = "0.41.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 = "20230504"
25
+ REVISION = "20230620"
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
@@ -599,20 +599,23 @@ module Google
599
599
  # Required. Customer id or "my_customer" to use the customer associated to the
600
600
  # account making the request.
601
601
  # @param [String] filter
602
- # Optional. Only include resources that match the filter. Supported filter
603
- # fields: - device_id - user_id - device_org_unit_id - user_org_unit_id -
604
- # timestamp - event_type The "timestamp" filter accepts either the Unix Epoch
605
- # milliseconds format or the RFC3339 UTC "Zulu" format with nanosecond
606
- # resolution and up to nine fractional digits. Both formats should be surrounded
607
- # by simple double quotes. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:
608
- # 23.045123456Z", "1679283943823".
602
+ # Optional. Only include resources that match the filter. Although this
603
+ # parameter is currently optional, this parameter will be required- please
604
+ # specify at least 1 event type. Supported filter fields: - device_id - user_id -
605
+ # device_org_unit_id - user_org_unit_id - timestamp - event_type The "timestamp"
606
+ # filter accepts either the Unix Epoch milliseconds format or the RFC3339 UTC "
607
+ # Zulu" format with nanosecond resolution and up to nine fractional digits. Both
608
+ # formats should be surrounded by simple double quotes. Examples: "2014-10-02T15:
609
+ # 01:23Z", "2014-10-02T15:01:23.045123456Z", "1679283943823".
609
610
  # @param [Fixnum] page_size
610
611
  # Optional. Maximum number of results to return. Default value is 100. Maximum
611
612
  # value is 1000.
612
613
  # @param [String] page_token
613
614
  # Optional. Token to specify next page in the list.
614
615
  # @param [String] read_mask
615
- # Required. Read mask to specify which fields to return.
616
+ # Required. Read mask to specify which fields to return. Although currently
617
+ # required, this field will become optional, while the filter parameter with an
618
+ # event type will be come required.
616
619
  # @param [String] fields
617
620
  # Selector specifying which fields to include in a partial response.
618
621
  # @param [String] quota_user
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.39.0
4
+ version: 0.41.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-14 00:00:00.000000000 Z
11
+ date: 2023-06-25 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.39.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.41.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: []