google-apis-chromemanagement_v1 0.16.0 → 0.19.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: c7ec3ccb5283bd2d8289b0ecf9cb32af570da0aacb62c50a3eec0fda2847afc4
4
- data.tar.gz: 0fc925c8bea97c311918ef0b450041d1a694ce1eae3307922fd1bbf332b16622
3
+ metadata.gz: 4d54abadf22543459960fde1cb6d0a01f69761c238bc74260f5f6fff321c3045
4
+ data.tar.gz: c90c07a9d1718e3053b40651cabda1276620ca83297dc6028e7cf9cb5bc37ef8
5
5
  SHA512:
6
- metadata.gz: 012e62ae951efbb437318b9800e406db0052fb15a03d9eac669f22fa3aa1f9f1ccc4e450016147f32ca658d01e351c10984deb222a3ffbcecd8c7ee8243d0fac
7
- data.tar.gz: 11223eccf5cb720d875f4cbd4cfe9252d5be4a68d39c7a16f373c165e9bde1a80ffc6a54330151c1d0359bf78607110ea7bb3a9037e238625f86815c419f93e3
6
+ metadata.gz: f0f0991b3fef2391c3af12b24c3ccd951fd60d4056cf219733e56c9a6bf55430a03dfcff1288377a1f7e1d0ccc15656542f0ec043c3d060d45f41eb2caa4e18c
7
+ data.tar.gz: 2928c2c20266d80bb30a14a3199cfc3c8357cb3d6189902edc06ed3aade43331916df314b5b821e3998380371784e0e37c81d981eb684f5434de492e2fb7d37e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-chromemanagement_v1
2
2
 
3
+ ### v0.19.0 (2022-04-07)
4
+
5
+ * Regenerated from discovery document revision 20220405
6
+
7
+ ### v0.18.0 (2022-04-02)
8
+
9
+ * Regenerated from discovery document revision 20220331
10
+
11
+ ### v0.17.0 (2022-03-02)
12
+
13
+ * Regenerated from discovery document revision 20220228
14
+
3
15
  ### v0.16.0 (2022-02-15)
4
16
 
5
17
  * Regenerated from discovery document revision 20220212
@@ -201,6 +201,63 @@ module Google
201
201
  end
202
202
  end
203
203
 
204
+ # Audio report.
205
+ class GoogleChromeManagementV1AudioStatusReport
206
+ include Google::Apis::Core::Hashable
207
+
208
+ # Output only. Active input device's name.
209
+ # Corresponds to the JSON property `inputDevice`
210
+ # @return [String]
211
+ attr_accessor :input_device
212
+
213
+ # Output only. Active input device's gain in [0, 100].
214
+ # Corresponds to the JSON property `inputGain`
215
+ # @return [Fixnum]
216
+ attr_accessor :input_gain
217
+
218
+ # Output only. Is active input device mute or not.
219
+ # Corresponds to the JSON property `inputMute`
220
+ # @return [Boolean]
221
+ attr_accessor :input_mute
222
+ alias_method :input_mute?, :input_mute
223
+
224
+ # Output only. Active output device's name.
225
+ # Corresponds to the JSON property `outputDevice`
226
+ # @return [String]
227
+ attr_accessor :output_device
228
+
229
+ # Output only. Is active output device mute or not.
230
+ # Corresponds to the JSON property `outputMute`
231
+ # @return [Boolean]
232
+ attr_accessor :output_mute
233
+ alias_method :output_mute?, :output_mute
234
+
235
+ # Output only. Active output device's volume in [0, 100].
236
+ # Corresponds to the JSON property `outputVolume`
237
+ # @return [Fixnum]
238
+ attr_accessor :output_volume
239
+
240
+ # Output only. Timestamp of when the sample was collected on device.
241
+ # Corresponds to the JSON property `reportTime`
242
+ # @return [String]
243
+ attr_accessor :report_time
244
+
245
+ def initialize(**args)
246
+ update!(**args)
247
+ end
248
+
249
+ # Update properties of this object
250
+ def update!(**args)
251
+ @input_device = args[:input_device] if args.key?(:input_device)
252
+ @input_gain = args[:input_gain] if args.key?(:input_gain)
253
+ @input_mute = args[:input_mute] if args.key?(:input_mute)
254
+ @output_device = args[:output_device] if args.key?(:output_device)
255
+ @output_mute = args[:output_mute] if args.key?(:output_mute)
256
+ @output_volume = args[:output_volume] if args.key?(:output_volume)
257
+ @report_time = args[:report_time] if args.key?(:report_time)
258
+ end
259
+ end
260
+
204
261
  # Battery info
205
262
  class GoogleChromeManagementV1BatteryInfo
206
263
  include Google::Apis::Core::Hashable
@@ -218,11 +275,11 @@ module Google
218
275
  # Represents a whole or partial calendar date, such as a birthday. The time of
219
276
  # day and time zone are either specified elsewhere or are insignificant. The
220
277
  # date is relative to the Gregorian Calendar. This can represent one of the
221
- # following: * A full date, with non-zero year, month, and day values * A month
222
- # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
223
- # zero month and a zero day * A year and month, with a zero day (e.g., a credit
224
- # card expiration date) Related types: * google.type.TimeOfDay * google.type.
225
- # DateTime * google.protobuf.Timestamp
278
+ # following: * A full date, with non-zero year, month, and day values. * A month
279
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
280
+ # with a zero month and a zero day. * A year and month, with a zero day (for
281
+ # example, a credit card expiration date). Related types: * google.type.
282
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
226
283
  # Corresponds to the JSON property `manufactureDate`
227
284
  # @return [Google::Apis::ChromemanagementV1::GoogleTypeDate]
228
285
  attr_accessor :manufacture_date
@@ -343,7 +400,8 @@ module Google
343
400
  # @return [String]
344
401
  attr_accessor :report_time
345
402
 
346
- # Output only. Sampling data for the battery.
403
+ # Output only. Sampling data for the battery sorted in a decreasing order of
404
+ # report_time.
347
405
  # Corresponds to the JSON property `sample`
348
406
  # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatterySampleReport>]
349
407
  attr_accessor :sample
@@ -430,12 +488,24 @@ module Google
430
488
  attr_accessor :is_cws_hosted
431
489
  alias_method :is_cws_hosted?, :is_cws_hosted
432
490
 
491
+ # Output only. Whether the app is only for Kiosk mode on Chrome OS devices
492
+ # Corresponds to the JSON property `isKioskOnly`
493
+ # @return [Boolean]
494
+ attr_accessor :is_kiosk_only
495
+ alias_method :is_kiosk_only?, :is_kiosk_only
496
+
433
497
  # Output only. Whether the app or extension is a theme.
434
498
  # Corresponds to the JSON property `isTheme`
435
499
  # @return [Boolean]
436
500
  attr_accessor :is_theme
437
501
  alias_method :is_theme?, :is_theme
438
502
 
503
+ # Output only. Whether this app is enabled for Kiosk mode on Chrome OS devices
504
+ # Corresponds to the JSON property `kioskEnabled`
505
+ # @return [Boolean]
506
+ attr_accessor :kiosk_enabled
507
+ alias_method :kiosk_enabled?, :kiosk_enabled
508
+
439
509
  # Output only. The minimum number of users using this app.
440
510
  # Corresponds to the JSON property `minUserCount`
441
511
  # @return [Fixnum]
@@ -470,7 +540,9 @@ module Google
470
540
  def update!(**args)
471
541
  @google_owned = args[:google_owned] if args.key?(:google_owned)
472
542
  @is_cws_hosted = args[:is_cws_hosted] if args.key?(:is_cws_hosted)
543
+ @is_kiosk_only = args[:is_kiosk_only] if args.key?(:is_kiosk_only)
473
544
  @is_theme = args[:is_theme] if args.key?(:is_theme)
545
+ @kiosk_enabled = args[:kiosk_enabled] if args.key?(:kiosk_enabled)
474
546
  @min_user_count = args[:min_user_count] if args.key?(:min_user_count)
475
547
  @permissions = args[:permissions] if args.key?(:permissions)
476
548
  @site_access = args[:site_access] if args.key?(:site_access)
@@ -1406,6 +1478,12 @@ module Google
1406
1478
  class GoogleChromeManagementV1TelemetryDevice
1407
1479
  include Google::Apis::Core::Hashable
1408
1480
 
1481
+ # Output only. Audio reports collected periodically sorted in a decreasing order
1482
+ # of report_time.
1483
+ # Corresponds to the JSON property `audioStatusReport`
1484
+ # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport>]
1485
+ attr_accessor :audio_status_report
1486
+
1409
1487
  # Output only. Information on battery specs for the device.
1410
1488
  # Corresponds to the JSON property `batteryInfo`
1411
1489
  # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryInfo>]
@@ -1421,7 +1499,8 @@ module Google
1421
1499
  # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuInfo>]
1422
1500
  attr_accessor :cpu_info
1423
1501
 
1424
- # Output only. CPU status reports collected periodically.
1502
+ # Output only. CPU status reports collected periodically sorted in a decreasing
1503
+ # order of report_time.
1425
1504
  # Corresponds to the JSON property `cpuStatusReport`
1426
1505
  # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuStatusReport>]
1427
1506
  attr_accessor :cpu_status_report
@@ -1452,7 +1531,8 @@ module Google
1452
1531
  # @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryInfo]
1453
1532
  attr_accessor :memory_info
1454
1533
 
1455
- # Output only. Memory status reports collected periodically.
1534
+ # Output only. Memory status reports collected periodically sorted decreasing by
1535
+ # report_time.
1456
1536
  # Corresponds to the JSON property `memoryStatusReport`
1457
1537
  # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryStatusReport>]
1458
1538
  attr_accessor :memory_status_report
@@ -1499,6 +1579,7 @@ module Google
1499
1579
 
1500
1580
  # Update properties of this object
1501
1581
  def update!(**args)
1582
+ @audio_status_report = args[:audio_status_report] if args.key?(:audio_status_report)
1502
1583
  @battery_info = args[:battery_info] if args.key?(:battery_info)
1503
1584
  @battery_status_report = args[:battery_status_report] if args.key?(:battery_status_report)
1504
1585
  @cpu_info = args[:cpu_info] if args.key?(:cpu_info)
@@ -1561,11 +1642,11 @@ module Google
1561
1642
  # Represents a whole or partial calendar date, such as a birthday. The time of
1562
1643
  # day and time zone are either specified elsewhere or are insignificant. The
1563
1644
  # date is relative to the Gregorian Calendar. This can represent one of the
1564
- # following: * A full date, with non-zero year, month, and day values * A month
1565
- # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
1566
- # zero month and a zero day * A year and month, with a zero day (e.g., a credit
1567
- # card expiration date) Related types: * google.type.TimeOfDay * google.type.
1568
- # DateTime * google.protobuf.Timestamp
1645
+ # following: * A full date, with non-zero year, month, and day values. * A month
1646
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
1647
+ # with a zero month and a zero day. * A year and month, with a zero day (for
1648
+ # example, a credit card expiration date). Related types: * google.type.
1649
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1569
1650
  class GoogleTypeDate
1570
1651
  include Google::Apis::Core::Hashable
1571
1652
 
@@ -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.16.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220212"
25
+ REVISION = "20220405"
26
26
  end
27
27
  end
28
28
  end
@@ -40,6 +40,12 @@ module Google
40
40
  include Google::Apis::Core::JsonObjectSupport
41
41
  end
42
42
 
43
+ class GoogleChromeManagementV1AudioStatusReport
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
43
49
  class GoogleChromeManagementV1BatteryInfo
44
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
51
 
@@ -281,6 +287,19 @@ module Google
281
287
  end
282
288
  end
283
289
 
290
+ class GoogleChromeManagementV1AudioStatusReport
291
+ # @private
292
+ class Representation < Google::Apis::Core::JsonRepresentation
293
+ property :input_device, as: 'inputDevice'
294
+ property :input_gain, as: 'inputGain'
295
+ property :input_mute, as: 'inputMute'
296
+ property :output_device, as: 'outputDevice'
297
+ property :output_mute, as: 'outputMute'
298
+ property :output_volume, as: 'outputVolume'
299
+ property :report_time, as: 'reportTime'
300
+ end
301
+ end
302
+
284
303
  class GoogleChromeManagementV1BatteryInfo
285
304
  # @private
286
305
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -337,7 +356,9 @@ module Google
337
356
  class Representation < Google::Apis::Core::JsonRepresentation
338
357
  property :google_owned, as: 'googleOwned'
339
358
  property :is_cws_hosted, as: 'isCwsHosted'
359
+ property :is_kiosk_only, as: 'isKioskOnly'
340
360
  property :is_theme, as: 'isTheme'
361
+ property :kiosk_enabled, as: 'kioskEnabled'
341
362
  property :min_user_count, as: 'minUserCount'
342
363
  collection :permissions, as: 'permissions', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppPermission, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppPermission::Representation
343
364
 
@@ -606,6 +627,8 @@ module Google
606
627
  class GoogleChromeManagementV1TelemetryDevice
607
628
  # @private
608
629
  class Representation < Google::Apis::Core::JsonRepresentation
630
+ collection :audio_status_report, as: 'audioStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport::Representation
631
+
609
632
  collection :battery_info, as: 'batteryInfo', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryInfo::Representation
610
633
 
611
634
  collection :battery_status_report, as: 'batteryStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport::Representation
@@ -355,7 +355,7 @@ module Google
355
355
  # account making the request.
356
356
  # @param [String] filter
357
357
  # Optional. Only include resources that match the filter. Supported filter
358
- # fields: - org_unit_id - serial_number
358
+ # fields: - org_unit_id - serial_number - device_id
359
359
  # @param [Fixnum] page_size
360
360
  # Maximum number of results to return. Default value is 100. Maximum value is
361
361
  # 200.
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.16.0
4
+ version: 0.19.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-02-21 00:00:00.000000000 Z
11
+ date: 2022-04-11 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.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.19.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: []