google-apis-chromemanagement_v1 0.28.0 → 0.30.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: 9ef4a135b8f422398abdbd29543f03a4d34dc95388e0fb00cb6dea3f3f11e576
4
- data.tar.gz: d6036261717d6c955f8308071152648c2a14aafc1cb35c632b45d4eabf7037f7
3
+ metadata.gz: cb7aba74a4a0b0025e603136d6070183b3e617178f851fd08110ee585d68b58f
4
+ data.tar.gz: 1fd6c677f0039edc6613580be000afbdba9136c4b3f408ac2ddae7215eee3692
5
5
  SHA512:
6
- metadata.gz: 433dcd410b1b5e6ae3ff0148a51a5f32d3a5faad61ca97a839a5626cce1bce4ece37bcc10d8a32e58a5acb819cf5cace3c583764ab0ec97fcc0ed76c8586e565
7
- data.tar.gz: 9f242fb475410faf9b2fd5d6390e26da1aac8d85d7b0eabdbcd7e88bce8ba219c4b576374ce15ad8c2eb737560a3c38b65983c9abf04b3626af20343cde2722e
6
+ metadata.gz: 6be28289d49f35ec0ced2ae580e04cd84ea00f56cbd82ff703fb62473d8f245680a1e4e49060a56a68e4b100282e18fcf72d4ea9e00ea2dad2b314695ef73568
7
+ data.tar.gz: be1a58011e3ccbf38085df93a070fb4931eac26f1de3125c83ecbd05154eb7b5cf927ee8008d5ae447e9bf1310989f19348826fce4779c9d1109897717d415c7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
8
+ ### v0.29.0 (2022-09-29)
9
+
10
+ * Regenerated from discovery document revision 20220926
11
+
3
12
  ### v0.28.0 (2022-09-23)
4
13
 
5
14
  * Regenerated from discovery document revision 20220914
@@ -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
@@ -516,6 +572,12 @@ module Google
516
572
  attr_accessor :is_cws_hosted
517
573
  alias_method :is_cws_hosted?, :is_cws_hosted
518
574
 
575
+ # Output only. Whether an app supports policy for extensions.
576
+ # Corresponds to the JSON property `isExtensionPolicySupported`
577
+ # @return [Boolean]
578
+ attr_accessor :is_extension_policy_supported
579
+ alias_method :is_extension_policy_supported?, :is_extension_policy_supported
580
+
519
581
  # Output only. Whether the app is only for Kiosk mode on ChromeOS devices
520
582
  # Corresponds to the JSON property `isKioskOnly`
521
583
  # @return [Boolean]
@@ -568,6 +630,7 @@ module Google
568
630
  def update!(**args)
569
631
  @google_owned = args[:google_owned] if args.key?(:google_owned)
570
632
  @is_cws_hosted = args[:is_cws_hosted] if args.key?(:is_cws_hosted)
633
+ @is_extension_policy_supported = args[:is_extension_policy_supported] if args.key?(:is_extension_policy_supported)
571
634
  @is_kiosk_only = args[:is_kiosk_only] if args.key?(:is_kiosk_only)
572
635
  @is_theme = args[:is_theme] if args.key?(:is_theme)
573
636
  @kiosk_enabled = args[:kiosk_enabled] if args.key?(:kiosk_enabled)
@@ -2013,6 +2076,11 @@ module Google
2013
2076
  # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport>]
2014
2077
  attr_accessor :battery_status_report
2015
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
+
2016
2084
  # Output only. Information regarding CPU specs for the device.
2017
2085
  # Corresponds to the JSON property `cpuInfo`
2018
2086
  # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuInfo>]
@@ -2148,6 +2216,7 @@ module Google
2148
2216
  @audio_status_report = args[:audio_status_report] if args.key?(:audio_status_report)
2149
2217
  @battery_info = args[:battery_info] if args.key?(:battery_info)
2150
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)
2151
2220
  @cpu_info = args[:cpu_info] if args.key?(:cpu_info)
2152
2221
  @cpu_status_report = args[:cpu_status_report] if args.key?(:cpu_status_report)
2153
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.28.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.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220914"
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
@@ -422,6 +440,7 @@ module Google
422
440
  class Representation < Google::Apis::Core::JsonRepresentation
423
441
  property :google_owned, as: 'googleOwned'
424
442
  property :is_cws_hosted, as: 'isCwsHosted'
443
+ property :is_extension_policy_supported, as: 'isExtensionPolicySupported'
425
444
  property :is_kiosk_only, as: 'isKioskOnly'
426
445
  property :is_theme, as: 'isTheme'
427
446
  property :kiosk_enabled, as: 'kioskEnabled'
@@ -801,6 +820,8 @@ module Google
801
820
 
802
821
  collection :battery_status_report, as: 'batteryStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport::Representation
803
822
 
823
+ collection :boot_performance_report, as: 'bootPerformanceReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BootPerformanceReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BootPerformanceReport::Representation
824
+
804
825
  collection :cpu_info, as: 'cpuInfo', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuInfo::Representation
805
826
 
806
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.28.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-09-26 00:00:00.000000000 Z
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.0
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.0
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.28.0
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: []