google-apis-chromemanagement_v1 0.23.0 → 0.26.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/lib/google/apis/chromemanagement_v1/classes.rb +387 -0
- data/lib/google/apis/chromemanagement_v1/gem_version.rb +3 -3
- data/lib/google/apis/chromemanagement_v1/representations.rb +157 -0
- data/lib/google/apis/chromemanagement_v1/service.rb +87 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 156c39783ba13ae37d379ab14d196af06b7a6f5e39034dbe8f20b5b9746249bb
|
4
|
+
data.tar.gz: 3d9979e87513a6b5b1c6cdf140517c824a5d60052fb3b3472ef885a66fba4044
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2326487a493d0cee3f0bcc1a7e4fec991c9c4a7361e2fc5b82b659b99d1c2d83ccc874bb23632428b6dd1f0fdc86597023897dbe6920ea5bfdf63a9d456170b
|
7
|
+
data.tar.gz: a421c4ae5ea6475075f22187c5cc56d35e220229c2d1df9f4624211ae0430d112e2c7db5148251626bcda4e90763d81de1b97120a129a7d2c4b193113bb6a7fa
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Release history for google-apis-chromemanagement_v1
|
2
2
|
|
3
|
+
### v0.26.0 (2022-07-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220711
|
6
|
+
* Regenerated using generator version 0.9.0
|
7
|
+
|
8
|
+
### v0.25.0 (2022-07-03)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20220630
|
11
|
+
* Regenerated using generator version 0.8.0
|
12
|
+
|
13
|
+
### v0.24.0 (2022-06-19)
|
14
|
+
|
15
|
+
* Regenerated using generator version 0.7.0
|
16
|
+
|
3
17
|
### v0.23.0 (2022-06-08)
|
4
18
|
|
5
19
|
* Regenerated from discovery document revision 20220606
|
@@ -692,6 +692,71 @@ module Google
|
|
692
692
|
end
|
693
693
|
end
|
694
694
|
|
695
|
+
# Response containing a list of devices expiring in each month of a selected
|
696
|
+
# time frame. Counts are grouped by model and Auto Update Expiration date.
|
697
|
+
class GoogleChromeManagementV1CountChromeDevicesReachingAutoExpirationDateResponse
|
698
|
+
include Google::Apis::Core::Hashable
|
699
|
+
|
700
|
+
# The list of reports sorted by auto update expiration date in ascending order.
|
701
|
+
# Corresponds to the JSON property `deviceAueCountReports`
|
702
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DeviceAueCountReport>]
|
703
|
+
attr_accessor :device_aue_count_reports
|
704
|
+
|
705
|
+
def initialize(**args)
|
706
|
+
update!(**args)
|
707
|
+
end
|
708
|
+
|
709
|
+
# Update properties of this object
|
710
|
+
def update!(**args)
|
711
|
+
@device_aue_count_reports = args[:device_aue_count_reports] if args.key?(:device_aue_count_reports)
|
712
|
+
end
|
713
|
+
end
|
714
|
+
|
715
|
+
# Response containing counts for devices that need attention.
|
716
|
+
class GoogleChromeManagementV1CountChromeDevicesThatNeedAttentionResponse
|
717
|
+
include Google::Apis::Core::Hashable
|
718
|
+
|
719
|
+
# Number of ChromeOS devices have not synced policies in the past 28 days.
|
720
|
+
# Corresponds to the JSON property `noRecentPolicySyncCount`
|
721
|
+
# @return [Fixnum]
|
722
|
+
attr_accessor :no_recent_policy_sync_count
|
723
|
+
|
724
|
+
# Number of ChromeOS devices that have not seen any user activity in the past 28
|
725
|
+
# days.
|
726
|
+
# Corresponds to the JSON property `noRecentUserActivityCount`
|
727
|
+
# @return [Fixnum]
|
728
|
+
attr_accessor :no_recent_user_activity_count
|
729
|
+
|
730
|
+
# Number of devices whose OS version is not compliant.
|
731
|
+
# Corresponds to the JSON property `osVersionNotCompliantCount`
|
732
|
+
# @return [Fixnum]
|
733
|
+
attr_accessor :os_version_not_compliant_count
|
734
|
+
|
735
|
+
# Number of devices that are pending an OS update.
|
736
|
+
# Corresponds to the JSON property `pendingUpdate`
|
737
|
+
# @return [Fixnum]
|
738
|
+
attr_accessor :pending_update
|
739
|
+
|
740
|
+
# Number of devices that are unable to apply a policy due to an OS version
|
741
|
+
# mismatch.
|
742
|
+
# Corresponds to the JSON property `unsupportedPolicyCount`
|
743
|
+
# @return [Fixnum]
|
744
|
+
attr_accessor :unsupported_policy_count
|
745
|
+
|
746
|
+
def initialize(**args)
|
747
|
+
update!(**args)
|
748
|
+
end
|
749
|
+
|
750
|
+
# Update properties of this object
|
751
|
+
def update!(**args)
|
752
|
+
@no_recent_policy_sync_count = args[:no_recent_policy_sync_count] if args.key?(:no_recent_policy_sync_count)
|
753
|
+
@no_recent_user_activity_count = args[:no_recent_user_activity_count] if args.key?(:no_recent_user_activity_count)
|
754
|
+
@os_version_not_compliant_count = args[:os_version_not_compliant_count] if args.key?(:os_version_not_compliant_count)
|
755
|
+
@pending_update = args[:pending_update] if args.key?(:pending_update)
|
756
|
+
@unsupported_policy_count = args[:unsupported_policy_count] if args.key?(:unsupported_policy_count)
|
757
|
+
end
|
758
|
+
end
|
759
|
+
|
695
760
|
# Response containing requested browser versions details and counts.
|
696
761
|
class GoogleChromeManagementV1CountChromeVersionsResponse
|
697
762
|
include Google::Apis::Core::Hashable
|
@@ -763,6 +828,19 @@ module Google
|
|
763
828
|
# @return [String]
|
764
829
|
attr_accessor :architecture
|
765
830
|
|
831
|
+
# Output only. Whether keylocker is configured.`TRUE` = Enabled; `FALSE` =
|
832
|
+
# disabled. Only reported if keylockerSupported = `TRUE`.
|
833
|
+
# Corresponds to the JSON property `keylockerConfigured`
|
834
|
+
# @return [Boolean]
|
835
|
+
attr_accessor :keylocker_configured
|
836
|
+
alias_method :keylocker_configured?, :keylocker_configured
|
837
|
+
|
838
|
+
# Output only. Whether keylocker is supported.
|
839
|
+
# Corresponds to the JSON property `keylockerSupported`
|
840
|
+
# @return [Boolean]
|
841
|
+
attr_accessor :keylocker_supported
|
842
|
+
alias_method :keylocker_supported?, :keylocker_supported
|
843
|
+
|
766
844
|
# Output only. The max CPU clock speed in kHz.
|
767
845
|
# Corresponds to the JSON property `maxClockSpeed`
|
768
846
|
# @return [Fixnum]
|
@@ -781,6 +859,8 @@ module Google
|
|
781
859
|
# Update properties of this object
|
782
860
|
def update!(**args)
|
783
861
|
@architecture = args[:architecture] if args.key?(:architecture)
|
862
|
+
@keylocker_configured = args[:keylocker_configured] if args.key?(:keylocker_configured)
|
863
|
+
@keylocker_supported = args[:keylocker_supported] if args.key?(:keylocker_supported)
|
784
864
|
@max_clock_speed = args[:max_clock_speed] if args.key?(:max_clock_speed)
|
785
865
|
@model = args[:model] if args.key?(:model)
|
786
866
|
end
|
@@ -875,6 +955,53 @@ module Google
|
|
875
955
|
end
|
876
956
|
end
|
877
957
|
|
958
|
+
# Report for CountChromeDevicesPerAueDateResponse, contains the count of devices
|
959
|
+
# of a specific model and auto update expiration range.
|
960
|
+
class GoogleChromeManagementV1DeviceAueCountReport
|
961
|
+
include Google::Apis::Core::Hashable
|
962
|
+
|
963
|
+
# Enum value of month corresponding to the auto update expiration date in UTC
|
964
|
+
# time zone. If the device is already expired, this field is empty.
|
965
|
+
# Corresponds to the JSON property `aueMonth`
|
966
|
+
# @return [String]
|
967
|
+
attr_accessor :aue_month
|
968
|
+
|
969
|
+
# Int value of year corresponding to the Auto Update Expiration date in UTC time
|
970
|
+
# zone. If the device is already expired, this field is empty.
|
971
|
+
# Corresponds to the JSON property `aueYear`
|
972
|
+
# @return [Fixnum]
|
973
|
+
attr_accessor :aue_year
|
974
|
+
|
975
|
+
# Count of devices of this model.
|
976
|
+
# Corresponds to the JSON property `count`
|
977
|
+
# @return [Fixnum]
|
978
|
+
attr_accessor :count
|
979
|
+
|
980
|
+
# Boolean value for whether or not the device has already expired.
|
981
|
+
# Corresponds to the JSON property `expired`
|
982
|
+
# @return [Boolean]
|
983
|
+
attr_accessor :expired
|
984
|
+
alias_method :expired?, :expired
|
985
|
+
|
986
|
+
# Public model name of the devices.
|
987
|
+
# Corresponds to the JSON property `model`
|
988
|
+
# @return [String]
|
989
|
+
attr_accessor :model
|
990
|
+
|
991
|
+
def initialize(**args)
|
992
|
+
update!(**args)
|
993
|
+
end
|
994
|
+
|
995
|
+
# Update properties of this object
|
996
|
+
def update!(**args)
|
997
|
+
@aue_month = args[:aue_month] if args.key?(:aue_month)
|
998
|
+
@aue_year = args[:aue_year] if args.key?(:aue_year)
|
999
|
+
@count = args[:count] if args.key?(:count)
|
1000
|
+
@expired = args[:expired] if args.key?(:expired)
|
1001
|
+
@model = args[:model] if args.key?(:model)
|
1002
|
+
end
|
1003
|
+
end
|
1004
|
+
|
878
1005
|
# Status of the single storage device.
|
879
1006
|
class GoogleChromeManagementV1DiskInfo
|
880
1007
|
include Google::Apis::Core::Hashable
|
@@ -1120,6 +1247,33 @@ module Google
|
|
1120
1247
|
end
|
1121
1248
|
end
|
1122
1249
|
|
1250
|
+
# Data that describes the result of the HTTPS latency diagnostics routine, with
|
1251
|
+
# the HTTPS requests issued to Google websites.
|
1252
|
+
class GoogleChromeManagementV1HttpsLatencyRoutineData
|
1253
|
+
include Google::Apis::Core::Hashable
|
1254
|
+
|
1255
|
+
# Output only. HTTPS latency if routine succeeded or failed because of
|
1256
|
+
# HIGH_LATENCY or VERY_HIGH_LATENCY.
|
1257
|
+
# Corresponds to the JSON property `latency`
|
1258
|
+
# @return [String]
|
1259
|
+
attr_accessor :latency
|
1260
|
+
|
1261
|
+
# Output only. HTTPS latency routine problem if a problem occurred.
|
1262
|
+
# Corresponds to the JSON property `problem`
|
1263
|
+
# @return [String]
|
1264
|
+
attr_accessor :problem
|
1265
|
+
|
1266
|
+
def initialize(**args)
|
1267
|
+
update!(**args)
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
# Update properties of this object
|
1271
|
+
def update!(**args)
|
1272
|
+
@latency = args[:latency] if args.key?(:latency)
|
1273
|
+
@problem = args[:problem] if args.key?(:problem)
|
1274
|
+
end
|
1275
|
+
end
|
1276
|
+
|
1123
1277
|
# Describes an installed app.
|
1124
1278
|
class GoogleChromeManagementV1InstalledApp
|
1125
1279
|
include Google::Apis::Core::Hashable
|
@@ -1236,6 +1390,11 @@ module Google
|
|
1236
1390
|
# @return [Fixnum]
|
1237
1391
|
attr_accessor :available_ram_bytes
|
1238
1392
|
|
1393
|
+
# Memory encryption information of a device.
|
1394
|
+
# Corresponds to the JSON property `totalMemoryEncryption`
|
1395
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TotalMemoryEncryptionInfo]
|
1396
|
+
attr_accessor :total_memory_encryption
|
1397
|
+
|
1239
1398
|
# Output only. Total RAM in bytes.
|
1240
1399
|
# Corresponds to the JSON property `totalRamBytes`
|
1241
1400
|
# @return [Fixnum]
|
@@ -1248,6 +1407,7 @@ module Google
|
|
1248
1407
|
# Update properties of this object
|
1249
1408
|
def update!(**args)
|
1250
1409
|
@available_ram_bytes = args[:available_ram_bytes] if args.key?(:available_ram_bytes)
|
1410
|
+
@total_memory_encryption = args[:total_memory_encryption] if args.key?(:total_memory_encryption)
|
1251
1411
|
@total_ram_bytes = args[:total_ram_bytes] if args.key?(:total_ram_bytes)
|
1252
1412
|
end
|
1253
1413
|
end
|
@@ -1291,20 +1451,142 @@ module Google
|
|
1291
1451
|
end
|
1292
1452
|
end
|
1293
1453
|
|
1454
|
+
# Network device.
|
1455
|
+
class GoogleChromeManagementV1NetworkDevice
|
1456
|
+
include Google::Apis::Core::Hashable
|
1457
|
+
|
1458
|
+
# Output only. The integrated circuit card ID associated with the device's sim
|
1459
|
+
# card.
|
1460
|
+
# Corresponds to the JSON property `iccid`
|
1461
|
+
# @return [String]
|
1462
|
+
attr_accessor :iccid
|
1463
|
+
|
1464
|
+
# Output only. IMEI (if applicable) of the corresponding network device.
|
1465
|
+
# Corresponds to the JSON property `imei`
|
1466
|
+
# @return [String]
|
1467
|
+
attr_accessor :imei
|
1468
|
+
|
1469
|
+
# Output only. MAC address (if applicable) of the corresponding network device.
|
1470
|
+
# Corresponds to the JSON property `macAddress`
|
1471
|
+
# @return [String]
|
1472
|
+
attr_accessor :mac_address
|
1473
|
+
|
1474
|
+
# Output only. The mobile directory number associated with the device's sim card.
|
1475
|
+
# Corresponds to the JSON property `mdn`
|
1476
|
+
# @return [String]
|
1477
|
+
attr_accessor :mdn
|
1478
|
+
|
1479
|
+
# Output only. MEID (if applicable) of the corresponding network device.
|
1480
|
+
# Corresponds to the JSON property `meid`
|
1481
|
+
# @return [String]
|
1482
|
+
attr_accessor :meid
|
1483
|
+
|
1484
|
+
# Output only. Network device type.
|
1485
|
+
# Corresponds to the JSON property `type`
|
1486
|
+
# @return [String]
|
1487
|
+
attr_accessor :type
|
1488
|
+
|
1489
|
+
def initialize(**args)
|
1490
|
+
update!(**args)
|
1491
|
+
end
|
1492
|
+
|
1493
|
+
# Update properties of this object
|
1494
|
+
def update!(**args)
|
1495
|
+
@iccid = args[:iccid] if args.key?(:iccid)
|
1496
|
+
@imei = args[:imei] if args.key?(:imei)
|
1497
|
+
@mac_address = args[:mac_address] if args.key?(:mac_address)
|
1498
|
+
@mdn = args[:mdn] if args.key?(:mdn)
|
1499
|
+
@meid = args[:meid] if args.key?(:meid)
|
1500
|
+
@type = args[:type] if args.key?(:type)
|
1501
|
+
end
|
1502
|
+
end
|
1503
|
+
|
1504
|
+
# Network testing results to determine the health of the device's network
|
1505
|
+
# connection, for example whether the HTTPS latency is high or normal.
|
1506
|
+
class GoogleChromeManagementV1NetworkDiagnosticsReport
|
1507
|
+
include Google::Apis::Core::Hashable
|
1508
|
+
|
1509
|
+
# Data that describes the result of the HTTPS latency diagnostics routine, with
|
1510
|
+
# the HTTPS requests issued to Google websites.
|
1511
|
+
# Corresponds to the JSON property `httpsLatencyData`
|
1512
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData]
|
1513
|
+
attr_accessor :https_latency_data
|
1514
|
+
|
1515
|
+
# Output only. Timestamp of when the diagnostics were collected.
|
1516
|
+
# Corresponds to the JSON property `reportTime`
|
1517
|
+
# @return [String]
|
1518
|
+
attr_accessor :report_time
|
1519
|
+
|
1520
|
+
def initialize(**args)
|
1521
|
+
update!(**args)
|
1522
|
+
end
|
1523
|
+
|
1524
|
+
# Update properties of this object
|
1525
|
+
def update!(**args)
|
1526
|
+
@https_latency_data = args[:https_latency_data] if args.key?(:https_latency_data)
|
1527
|
+
@report_time = args[:report_time] if args.key?(:report_time)
|
1528
|
+
end
|
1529
|
+
end
|
1530
|
+
|
1531
|
+
# Network devices info.
|
1532
|
+
class GoogleChromeManagementV1NetworkInfo
|
1533
|
+
include Google::Apis::Core::Hashable
|
1534
|
+
|
1535
|
+
# Output only. List of network devices.
|
1536
|
+
# Corresponds to the JSON property `networkDevices`
|
1537
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDevice>]
|
1538
|
+
attr_accessor :network_devices
|
1539
|
+
|
1540
|
+
def initialize(**args)
|
1541
|
+
update!(**args)
|
1542
|
+
end
|
1543
|
+
|
1544
|
+
# Update properties of this object
|
1545
|
+
def update!(**args)
|
1546
|
+
@network_devices = args[:network_devices] if args.key?(:network_devices)
|
1547
|
+
end
|
1548
|
+
end
|
1549
|
+
|
1294
1550
|
# State of visible/configured networks.
|
1295
1551
|
class GoogleChromeManagementV1NetworkStatusReport
|
1296
1552
|
include Google::Apis::Core::Hashable
|
1297
1553
|
|
1554
|
+
# Output only. Current connection state of the network.
|
1555
|
+
# Corresponds to the JSON property `connectionState`
|
1556
|
+
# @return [String]
|
1557
|
+
attr_accessor :connection_state
|
1558
|
+
|
1559
|
+
# Output only. Network connection type.
|
1560
|
+
# Corresponds to the JSON property `connectionType`
|
1561
|
+
# @return [String]
|
1562
|
+
attr_accessor :connection_type
|
1563
|
+
|
1564
|
+
# Output only. Whether the wifi encryption key is turned off.
|
1565
|
+
# Corresponds to the JSON property `encryptionOn`
|
1566
|
+
# @return [Boolean]
|
1567
|
+
attr_accessor :encryption_on
|
1568
|
+
alias_method :encryption_on?, :encryption_on
|
1569
|
+
|
1298
1570
|
# Output only. Gateway IP address.
|
1299
1571
|
# Corresponds to the JSON property `gatewayIpAddress`
|
1300
1572
|
# @return [String]
|
1301
1573
|
attr_accessor :gateway_ip_address
|
1302
1574
|
|
1575
|
+
# Output only. Network connection guid.
|
1576
|
+
# Corresponds to the JSON property `guid`
|
1577
|
+
# @return [String]
|
1578
|
+
attr_accessor :guid
|
1579
|
+
|
1303
1580
|
# Output only. LAN IP address.
|
1304
1581
|
# Corresponds to the JSON property `lanIpAddress`
|
1305
1582
|
# @return [String]
|
1306
1583
|
attr_accessor :lan_ip_address
|
1307
1584
|
|
1585
|
+
# Output only. Receiving bit rate measured in Megabits per second.
|
1586
|
+
# Corresponds to the JSON property `receivingBitRateMbps`
|
1587
|
+
# @return [Fixnum]
|
1588
|
+
attr_accessor :receiving_bit_rate_mbps
|
1589
|
+
|
1308
1590
|
# Output only. Time at which the network state was reported.
|
1309
1591
|
# Corresponds to the JSON property `reportTime`
|
1310
1592
|
# @return [String]
|
@@ -1320,17 +1602,48 @@ module Google
|
|
1320
1602
|
# @return [Fixnum]
|
1321
1603
|
attr_accessor :signal_strength_dbm
|
1322
1604
|
|
1605
|
+
# Output only. Transmission bit rate measured in Megabits per second.
|
1606
|
+
# Corresponds to the JSON property `transmissionBitRateMbps`
|
1607
|
+
# @return [Fixnum]
|
1608
|
+
attr_accessor :transmission_bit_rate_mbps
|
1609
|
+
|
1610
|
+
# Output only. Transmission power measured in decibels.
|
1611
|
+
# Corresponds to the JSON property `transmissionPowerDbm`
|
1612
|
+
# @return [Fixnum]
|
1613
|
+
attr_accessor :transmission_power_dbm
|
1614
|
+
|
1615
|
+
# Output only. Wifi link quality. Value ranges from [0, 70]. 0 indicates no
|
1616
|
+
# signal and 70 indicates a strong signal.
|
1617
|
+
# Corresponds to the JSON property `wifiLinkQuality`
|
1618
|
+
# @return [Fixnum]
|
1619
|
+
attr_accessor :wifi_link_quality
|
1620
|
+
|
1621
|
+
# Output only. Wifi power management enabled
|
1622
|
+
# Corresponds to the JSON property `wifiPowerManagementEnabled`
|
1623
|
+
# @return [Boolean]
|
1624
|
+
attr_accessor :wifi_power_management_enabled
|
1625
|
+
alias_method :wifi_power_management_enabled?, :wifi_power_management_enabled
|
1626
|
+
|
1323
1627
|
def initialize(**args)
|
1324
1628
|
update!(**args)
|
1325
1629
|
end
|
1326
1630
|
|
1327
1631
|
# Update properties of this object
|
1328
1632
|
def update!(**args)
|
1633
|
+
@connection_state = args[:connection_state] if args.key?(:connection_state)
|
1634
|
+
@connection_type = args[:connection_type] if args.key?(:connection_type)
|
1635
|
+
@encryption_on = args[:encryption_on] if args.key?(:encryption_on)
|
1329
1636
|
@gateway_ip_address = args[:gateway_ip_address] if args.key?(:gateway_ip_address)
|
1637
|
+
@guid = args[:guid] if args.key?(:guid)
|
1330
1638
|
@lan_ip_address = args[:lan_ip_address] if args.key?(:lan_ip_address)
|
1639
|
+
@receiving_bit_rate_mbps = args[:receiving_bit_rate_mbps] if args.key?(:receiving_bit_rate_mbps)
|
1331
1640
|
@report_time = args[:report_time] if args.key?(:report_time)
|
1332
1641
|
@sample_frequency = args[:sample_frequency] if args.key?(:sample_frequency)
|
1333
1642
|
@signal_strength_dbm = args[:signal_strength_dbm] if args.key?(:signal_strength_dbm)
|
1643
|
+
@transmission_bit_rate_mbps = args[:transmission_bit_rate_mbps] if args.key?(:transmission_bit_rate_mbps)
|
1644
|
+
@transmission_power_dbm = args[:transmission_power_dbm] if args.key?(:transmission_power_dbm)
|
1645
|
+
@wifi_link_quality = args[:wifi_link_quality] if args.key?(:wifi_link_quality)
|
1646
|
+
@wifi_power_management_enabled = args[:wifi_power_management_enabled] if args.key?(:wifi_power_management_enabled)
|
1334
1647
|
end
|
1335
1648
|
end
|
1336
1649
|
|
@@ -1542,6 +1855,16 @@ module Google
|
|
1542
1855
|
# @return [String]
|
1543
1856
|
attr_accessor :name
|
1544
1857
|
|
1858
|
+
# Output only. Network diagnostics collected periodically.
|
1859
|
+
# Corresponds to the JSON property `networkDiagnosticsReport`
|
1860
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDiagnosticsReport>]
|
1861
|
+
attr_accessor :network_diagnostics_report
|
1862
|
+
|
1863
|
+
# Network devices info.
|
1864
|
+
# Corresponds to the JSON property `networkInfo`
|
1865
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkInfo]
|
1866
|
+
attr_accessor :network_info
|
1867
|
+
|
1545
1868
|
# Output only. Network specs collected periodically.
|
1546
1869
|
# Corresponds to the JSON property `networkStatusReport`
|
1547
1870
|
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkStatusReport>]
|
@@ -1573,6 +1896,11 @@ module Google
|
|
1573
1896
|
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1StorageStatusReport>]
|
1574
1897
|
attr_accessor :storage_status_report
|
1575
1898
|
|
1899
|
+
# Output only. Information on Thunderbolt bus.
|
1900
|
+
# Corresponds to the JSON property `thunderboltInfo`
|
1901
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ThunderboltInfo>]
|
1902
|
+
attr_accessor :thunderbolt_info
|
1903
|
+
|
1576
1904
|
def initialize(**args)
|
1577
1905
|
update!(**args)
|
1578
1906
|
end
|
@@ -1591,12 +1919,71 @@ module Google
|
|
1591
1919
|
@memory_info = args[:memory_info] if args.key?(:memory_info)
|
1592
1920
|
@memory_status_report = args[:memory_status_report] if args.key?(:memory_status_report)
|
1593
1921
|
@name = args[:name] if args.key?(:name)
|
1922
|
+
@network_diagnostics_report = args[:network_diagnostics_report] if args.key?(:network_diagnostics_report)
|
1923
|
+
@network_info = args[:network_info] if args.key?(:network_info)
|
1594
1924
|
@network_status_report = args[:network_status_report] if args.key?(:network_status_report)
|
1595
1925
|
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
|
1596
1926
|
@os_update_status = args[:os_update_status] if args.key?(:os_update_status)
|
1597
1927
|
@serial_number = args[:serial_number] if args.key?(:serial_number)
|
1598
1928
|
@storage_info = args[:storage_info] if args.key?(:storage_info)
|
1599
1929
|
@storage_status_report = args[:storage_status_report] if args.key?(:storage_status_report)
|
1930
|
+
@thunderbolt_info = args[:thunderbolt_info] if args.key?(:thunderbolt_info)
|
1931
|
+
end
|
1932
|
+
end
|
1933
|
+
|
1934
|
+
# Thunderbolt bus info.
|
1935
|
+
class GoogleChromeManagementV1ThunderboltInfo
|
1936
|
+
include Google::Apis::Core::Hashable
|
1937
|
+
|
1938
|
+
# Security level of the Thunderbolt bus.
|
1939
|
+
# Corresponds to the JSON property `securityLevel`
|
1940
|
+
# @return [String]
|
1941
|
+
attr_accessor :security_level
|
1942
|
+
|
1943
|
+
def initialize(**args)
|
1944
|
+
update!(**args)
|
1945
|
+
end
|
1946
|
+
|
1947
|
+
# Update properties of this object
|
1948
|
+
def update!(**args)
|
1949
|
+
@security_level = args[:security_level] if args.key?(:security_level)
|
1950
|
+
end
|
1951
|
+
end
|
1952
|
+
|
1953
|
+
# Memory encryption information of a device.
|
1954
|
+
class GoogleChromeManagementV1TotalMemoryEncryptionInfo
|
1955
|
+
include Google::Apis::Core::Hashable
|
1956
|
+
|
1957
|
+
# Memory encryption algorithm.
|
1958
|
+
# Corresponds to the JSON property `encryptionAlgorithm`
|
1959
|
+
# @return [String]
|
1960
|
+
attr_accessor :encryption_algorithm
|
1961
|
+
|
1962
|
+
# The state of memory encryption on the device.
|
1963
|
+
# Corresponds to the JSON property `encryptionState`
|
1964
|
+
# @return [String]
|
1965
|
+
attr_accessor :encryption_state
|
1966
|
+
|
1967
|
+
# The length of the encryption keys.
|
1968
|
+
# Corresponds to the JSON property `keyLength`
|
1969
|
+
# @return [Fixnum]
|
1970
|
+
attr_accessor :key_length
|
1971
|
+
|
1972
|
+
# The maximum number of keys that can be used for encryption.
|
1973
|
+
# Corresponds to the JSON property `maxKeys`
|
1974
|
+
# @return [Fixnum]
|
1975
|
+
attr_accessor :max_keys
|
1976
|
+
|
1977
|
+
def initialize(**args)
|
1978
|
+
update!(**args)
|
1979
|
+
end
|
1980
|
+
|
1981
|
+
# Update properties of this object
|
1982
|
+
def update!(**args)
|
1983
|
+
@encryption_algorithm = args[:encryption_algorithm] if args.key?(:encryption_algorithm)
|
1984
|
+
@encryption_state = args[:encryption_state] if args.key?(:encryption_state)
|
1985
|
+
@key_length = args[:key_length] if args.key?(:key_length)
|
1986
|
+
@max_keys = args[:max_keys] if args.key?(:max_keys)
|
1600
1987
|
end
|
1601
1988
|
end
|
1602
1989
|
|
@@ -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.26.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220711"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -100,6 +100,18 @@ module Google
|
|
100
100
|
include Google::Apis::Core::JsonObjectSupport
|
101
101
|
end
|
102
102
|
|
103
|
+
class GoogleChromeManagementV1CountChromeDevicesReachingAutoExpirationDateResponse
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
109
|
+
class GoogleChromeManagementV1CountChromeDevicesThatNeedAttentionResponse
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
103
115
|
class GoogleChromeManagementV1CountChromeVersionsResponse
|
104
116
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
117
|
|
@@ -136,6 +148,12 @@ module Google
|
|
136
148
|
include Google::Apis::Core::JsonObjectSupport
|
137
149
|
end
|
138
150
|
|
151
|
+
class GoogleChromeManagementV1DeviceAueCountReport
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
+
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
155
|
+
end
|
156
|
+
|
139
157
|
class GoogleChromeManagementV1DiskInfo
|
140
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
159
|
|
@@ -172,6 +190,12 @@ module Google
|
|
172
190
|
include Google::Apis::Core::JsonObjectSupport
|
173
191
|
end
|
174
192
|
|
193
|
+
class GoogleChromeManagementV1HttpsLatencyRoutineData
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
175
199
|
class GoogleChromeManagementV1InstalledApp
|
176
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
201
|
|
@@ -196,6 +220,24 @@ module Google
|
|
196
220
|
include Google::Apis::Core::JsonObjectSupport
|
197
221
|
end
|
198
222
|
|
223
|
+
class GoogleChromeManagementV1NetworkDevice
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
|
+
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
227
|
+
end
|
228
|
+
|
229
|
+
class GoogleChromeManagementV1NetworkDiagnosticsReport
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
235
|
+
class GoogleChromeManagementV1NetworkInfo
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
199
241
|
class GoogleChromeManagementV1NetworkStatusReport
|
200
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
243
|
|
@@ -232,6 +274,18 @@ module Google
|
|
232
274
|
include Google::Apis::Core::JsonObjectSupport
|
233
275
|
end
|
234
276
|
|
277
|
+
class GoogleChromeManagementV1ThunderboltInfo
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
283
|
+
class GoogleChromeManagementV1TotalMemoryEncryptionInfo
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
235
289
|
class GoogleRpcStatus
|
236
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
291
|
|
@@ -407,6 +461,25 @@ module Google
|
|
407
461
|
end
|
408
462
|
end
|
409
463
|
|
464
|
+
class GoogleChromeManagementV1CountChromeDevicesReachingAutoExpirationDateResponse
|
465
|
+
# @private
|
466
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
467
|
+
collection :device_aue_count_reports, as: 'deviceAueCountReports', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DeviceAueCountReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DeviceAueCountReport::Representation
|
468
|
+
|
469
|
+
end
|
470
|
+
end
|
471
|
+
|
472
|
+
class GoogleChromeManagementV1CountChromeDevicesThatNeedAttentionResponse
|
473
|
+
# @private
|
474
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
475
|
+
property :no_recent_policy_sync_count, :numeric_string => true, as: 'noRecentPolicySyncCount'
|
476
|
+
property :no_recent_user_activity_count, :numeric_string => true, as: 'noRecentUserActivityCount'
|
477
|
+
property :os_version_not_compliant_count, :numeric_string => true, as: 'osVersionNotCompliantCount'
|
478
|
+
property :pending_update, :numeric_string => true, as: 'pendingUpdate'
|
479
|
+
property :unsupported_policy_count, :numeric_string => true, as: 'unsupportedPolicyCount'
|
480
|
+
end
|
481
|
+
end
|
482
|
+
|
410
483
|
class GoogleChromeManagementV1CountChromeVersionsResponse
|
411
484
|
# @private
|
412
485
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -431,6 +504,8 @@ module Google
|
|
431
504
|
# @private
|
432
505
|
class Representation < Google::Apis::Core::JsonRepresentation
|
433
506
|
property :architecture, as: 'architecture'
|
507
|
+
property :keylocker_configured, as: 'keylockerConfigured'
|
508
|
+
property :keylocker_supported, as: 'keylockerSupported'
|
434
509
|
property :max_clock_speed, as: 'maxClockSpeed'
|
435
510
|
property :model, as: 'model'
|
436
511
|
end
|
@@ -463,6 +538,17 @@ module Google
|
|
463
538
|
end
|
464
539
|
end
|
465
540
|
|
541
|
+
class GoogleChromeManagementV1DeviceAueCountReport
|
542
|
+
# @private
|
543
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
544
|
+
property :aue_month, as: 'aueMonth'
|
545
|
+
property :aue_year, :numeric_string => true, as: 'aueYear'
|
546
|
+
property :count, :numeric_string => true, as: 'count'
|
547
|
+
property :expired, as: 'expired'
|
548
|
+
property :model, as: 'model'
|
549
|
+
end
|
550
|
+
end
|
551
|
+
|
466
552
|
class GoogleChromeManagementV1DiskInfo
|
467
553
|
# @private
|
468
554
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -529,6 +615,14 @@ module Google
|
|
529
615
|
end
|
530
616
|
end
|
531
617
|
|
618
|
+
class GoogleChromeManagementV1HttpsLatencyRoutineData
|
619
|
+
# @private
|
620
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
621
|
+
property :latency, as: 'latency'
|
622
|
+
property :problem, as: 'problem'
|
623
|
+
end
|
624
|
+
end
|
625
|
+
|
532
626
|
class GoogleChromeManagementV1InstalledApp
|
533
627
|
# @private
|
534
628
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -559,6 +653,8 @@ module Google
|
|
559
653
|
# @private
|
560
654
|
class Representation < Google::Apis::Core::JsonRepresentation
|
561
655
|
property :available_ram_bytes, :numeric_string => true, as: 'availableRamBytes'
|
656
|
+
property :total_memory_encryption, as: 'totalMemoryEncryption', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TotalMemoryEncryptionInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TotalMemoryEncryptionInfo::Representation
|
657
|
+
|
562
658
|
property :total_ram_bytes, :numeric_string => true, as: 'totalRamBytes'
|
563
659
|
end
|
564
660
|
end
|
@@ -573,14 +669,52 @@ module Google
|
|
573
669
|
end
|
574
670
|
end
|
575
671
|
|
672
|
+
class GoogleChromeManagementV1NetworkDevice
|
673
|
+
# @private
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
675
|
+
property :iccid, as: 'iccid'
|
676
|
+
property :imei, as: 'imei'
|
677
|
+
property :mac_address, as: 'macAddress'
|
678
|
+
property :mdn, as: 'mdn'
|
679
|
+
property :meid, as: 'meid'
|
680
|
+
property :type, as: 'type'
|
681
|
+
end
|
682
|
+
end
|
683
|
+
|
684
|
+
class GoogleChromeManagementV1NetworkDiagnosticsReport
|
685
|
+
# @private
|
686
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
687
|
+
property :https_latency_data, as: 'httpsLatencyData', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData::Representation
|
688
|
+
|
689
|
+
property :report_time, as: 'reportTime'
|
690
|
+
end
|
691
|
+
end
|
692
|
+
|
693
|
+
class GoogleChromeManagementV1NetworkInfo
|
694
|
+
# @private
|
695
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
696
|
+
collection :network_devices, as: 'networkDevices', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDevice, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDevice::Representation
|
697
|
+
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
576
701
|
class GoogleChromeManagementV1NetworkStatusReport
|
577
702
|
# @private
|
578
703
|
class Representation < Google::Apis::Core::JsonRepresentation
|
704
|
+
property :connection_state, as: 'connectionState'
|
705
|
+
property :connection_type, as: 'connectionType'
|
706
|
+
property :encryption_on, as: 'encryptionOn'
|
579
707
|
property :gateway_ip_address, as: 'gatewayIpAddress'
|
708
|
+
property :guid, as: 'guid'
|
580
709
|
property :lan_ip_address, as: 'lanIpAddress'
|
710
|
+
property :receiving_bit_rate_mbps, :numeric_string => true, as: 'receivingBitRateMbps'
|
581
711
|
property :report_time, as: 'reportTime'
|
582
712
|
property :sample_frequency, as: 'sampleFrequency'
|
583
713
|
property :signal_strength_dbm, as: 'signalStrengthDbm'
|
714
|
+
property :transmission_bit_rate_mbps, :numeric_string => true, as: 'transmissionBitRateMbps'
|
715
|
+
property :transmission_power_dbm, as: 'transmissionPowerDbm'
|
716
|
+
property :wifi_link_quality, :numeric_string => true, as: 'wifiLinkQuality'
|
717
|
+
property :wifi_power_management_enabled, as: 'wifiPowerManagementEnabled'
|
584
718
|
end
|
585
719
|
end
|
586
720
|
|
@@ -648,6 +782,10 @@ module Google
|
|
648
782
|
collection :memory_status_report, as: 'memoryStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryStatusReport::Representation
|
649
783
|
|
650
784
|
property :name, as: 'name'
|
785
|
+
collection :network_diagnostics_report, as: 'networkDiagnosticsReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDiagnosticsReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDiagnosticsReport::Representation
|
786
|
+
|
787
|
+
property :network_info, as: 'networkInfo', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkInfo::Representation
|
788
|
+
|
651
789
|
collection :network_status_report, as: 'networkStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkStatusReport::Representation
|
652
790
|
|
653
791
|
property :org_unit_id, as: 'orgUnitId'
|
@@ -658,6 +796,25 @@ module Google
|
|
658
796
|
|
659
797
|
collection :storage_status_report, as: 'storageStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1StorageStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1StorageStatusReport::Representation
|
660
798
|
|
799
|
+
collection :thunderbolt_info, as: 'thunderboltInfo', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ThunderboltInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ThunderboltInfo::Representation
|
800
|
+
|
801
|
+
end
|
802
|
+
end
|
803
|
+
|
804
|
+
class GoogleChromeManagementV1ThunderboltInfo
|
805
|
+
# @private
|
806
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
807
|
+
property :security_level, as: 'securityLevel'
|
808
|
+
end
|
809
|
+
end
|
810
|
+
|
811
|
+
class GoogleChromeManagementV1TotalMemoryEncryptionInfo
|
812
|
+
# @private
|
813
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
814
|
+
property :encryption_algorithm, as: 'encryptionAlgorithm'
|
815
|
+
property :encryption_state, as: 'encryptionState'
|
816
|
+
property :key_length, :numeric_string => true, as: 'keyLength'
|
817
|
+
property :max_keys, :numeric_string => true, as: 'maxKeys'
|
661
818
|
end
|
662
819
|
end
|
663
820
|
|
@@ -198,6 +198,93 @@ module Google
|
|
198
198
|
execute_or_queue_command(command, &block)
|
199
199
|
end
|
200
200
|
|
201
|
+
# Generate report of the number of devices expiring in each month of the
|
202
|
+
# selected time frame. Devices are grouped by auto update expiration date and
|
203
|
+
# model. Further information can be found [here](https://support.google.com/
|
204
|
+
# chrome/a/answer/10564947).
|
205
|
+
# @param [String] customer
|
206
|
+
# Required. The customer ID or "my_customer" prefixed with "customers/".
|
207
|
+
# @param [String] max_aue_date
|
208
|
+
# Optional. Maximum expiration date in format yyyy-mm-dd in UTC timezone. If
|
209
|
+
# included returns all devices that have already expired and devices with auto
|
210
|
+
# expiration date equal to or earlier than the maximum date.
|
211
|
+
# @param [String] min_aue_date
|
212
|
+
# Optional. Maximum expiration date in format yyyy-mm-dd in UTC timezone. If
|
213
|
+
# included returns all devices that have already expired and devices with auto
|
214
|
+
# expiration date equal to or later than the minimum date.
|
215
|
+
# @param [String] org_unit_id
|
216
|
+
# Optional. The organizational unit ID, if omitted, will return data for all
|
217
|
+
# organizational units.
|
218
|
+
# @param [String] fields
|
219
|
+
# Selector specifying which fields to include in a partial response.
|
220
|
+
# @param [String] quota_user
|
221
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
222
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
223
|
+
# @param [Google::Apis::RequestOptions] options
|
224
|
+
# Request-specific options
|
225
|
+
#
|
226
|
+
# @yield [result, err] Result & error if block supplied
|
227
|
+
# @yieldparam result [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeDevicesReachingAutoExpirationDateResponse] parsed result object
|
228
|
+
# @yieldparam err [StandardError] error object if request failed
|
229
|
+
#
|
230
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeDevicesReachingAutoExpirationDateResponse]
|
231
|
+
#
|
232
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
233
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
234
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
235
|
+
def count_customer_report_chrome_devices_reaching_auto_expiration_date(customer, max_aue_date: nil, min_aue_date: nil, org_unit_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
236
|
+
command = make_simple_command(:get, 'v1/{+customer}/reports:countChromeDevicesReachingAutoExpirationDate', options)
|
237
|
+
command.response_representation = Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeDevicesReachingAutoExpirationDateResponse::Representation
|
238
|
+
command.response_class = Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeDevicesReachingAutoExpirationDateResponse
|
239
|
+
command.params['customer'] = customer unless customer.nil?
|
240
|
+
command.query['maxAueDate'] = max_aue_date unless max_aue_date.nil?
|
241
|
+
command.query['minAueDate'] = min_aue_date unless min_aue_date.nil?
|
242
|
+
command.query['orgUnitId'] = org_unit_id unless org_unit_id.nil?
|
243
|
+
command.query['fields'] = fields unless fields.nil?
|
244
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
245
|
+
execute_or_queue_command(command, &block)
|
246
|
+
end
|
247
|
+
|
248
|
+
# Counts of ChromeOS devices that have not synced policies or have lacked user
|
249
|
+
# activity in the past 28 days, are out of date, or are not complaint. Further
|
250
|
+
# information can be found here https://support.google.com/chrome/a/answer/
|
251
|
+
# 10564947
|
252
|
+
# @param [String] customer
|
253
|
+
# Required. The customer ID or "my_customer" prefixed with "customers/".
|
254
|
+
# @param [String] org_unit_id
|
255
|
+
# Optional. The ID of the organizational unit. If omitted, all data will be
|
256
|
+
# returned.
|
257
|
+
# @param [String] read_mask
|
258
|
+
# Required. Mask of the fields that should be populated in the returned report.
|
259
|
+
# @param [String] fields
|
260
|
+
# Selector specifying which fields to include in a partial response.
|
261
|
+
# @param [String] quota_user
|
262
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
263
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
264
|
+
# @param [Google::Apis::RequestOptions] options
|
265
|
+
# Request-specific options
|
266
|
+
#
|
267
|
+
# @yield [result, err] Result & error if block supplied
|
268
|
+
# @yieldparam result [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeDevicesThatNeedAttentionResponse] parsed result object
|
269
|
+
# @yieldparam err [StandardError] error object if request failed
|
270
|
+
#
|
271
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeDevicesThatNeedAttentionResponse]
|
272
|
+
#
|
273
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
274
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
275
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
276
|
+
def count_customer_report_chrome_devices_that_need_attention(customer, org_unit_id: nil, read_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
277
|
+
command = make_simple_command(:get, 'v1/{+customer}/reports:countChromeDevicesThatNeedAttention', options)
|
278
|
+
command.response_representation = Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeDevicesThatNeedAttentionResponse::Representation
|
279
|
+
command.response_class = Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeDevicesThatNeedAttentionResponse
|
280
|
+
command.params['customer'] = customer unless customer.nil?
|
281
|
+
command.query['orgUnitId'] = org_unit_id unless org_unit_id.nil?
|
282
|
+
command.query['readMask'] = read_mask unless read_mask.nil?
|
283
|
+
command.query['fields'] = fields unless fields.nil?
|
284
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
285
|
+
execute_or_queue_command(command, &block)
|
286
|
+
end
|
287
|
+
|
201
288
|
# Generate report of installed Chrome versions.
|
202
289
|
# @param [String] customer
|
203
290
|
# Required. Customer id or "my_customer" to use the customer associated to the
|
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.26.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-
|
11
|
+
date: 2022-07-18 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.
|
19
|
+
version: '0.7'
|
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.
|
29
|
+
version: '0.7'
|
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.26.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: []
|