google-apis-chromemanagement_v1 0.22.0 → 0.25.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: 4cf73872d7802592717b06133e876ceff960cca9d3f6ac2b7a2c1222387ba4c8
4
- data.tar.gz: 8c0ad1be6744f2054bd9fb9468e80d7f8baa6f98605913e4ab05f2cb57b50d45
3
+ metadata.gz: f610f2500dadb6689776c03db6e9f7afa5b4f9538c023e72474b70f566889016
4
+ data.tar.gz: 6a4258b15f8c09d0f3ab2b9cfa985465ded517c46bb0884fa92de30cde21a5df
5
5
  SHA512:
6
- metadata.gz: d79c7897f00d25e2a6e2b43c3a2df261717f65764e632807550761cd7c8889c47607bf2d402863455f2f106a4d4a1f1511ec916f5b2defb5e8e4011d3a3bf6c5
7
- data.tar.gz: 5e531ee256b4fd5a0cf9c3263b7917548bec72dc8e76f8d6073568ad16b76de97d430466fbd08e87d6a1467bcdaa5be26ae3bed64c31a46fc9213dc53ce57028
6
+ metadata.gz: 11cd42c35dbb12b9f43bf601b32f37b10350ddcc001f738155f6b9adfe8e6b407c9537cfa79c03725d485cac2e2d55ffd78342360d48b1305e425a18cf52d694
7
+ data.tar.gz: 26d7d9e6fd6afebf965f301e58b928e8cc2508fc8aa9c360d22383379453d6de680db32eb9543bded76ccc837a35ac13e5684ce8c8c06ba442c58b5bb9276b58
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-chromemanagement_v1
2
2
 
3
+ ### v0.25.0 (2022-07-03)
4
+
5
+ * Regenerated from discovery document revision 20220630
6
+ * Regenerated using generator version 0.8.0
7
+
8
+ ### v0.24.0 (2022-06-19)
9
+
10
+ * Regenerated using generator version 0.7.0
11
+
12
+ ### v0.23.0 (2022-06-08)
13
+
14
+ * Regenerated from discovery document revision 20220606
15
+ * Regenerated using generator version 0.5.0
16
+
3
17
  ### v0.22.0 (2022-05-14)
4
18
 
5
19
  * Regenerated from discovery document revision 20220512
@@ -763,6 +763,19 @@ module Google
763
763
  # @return [String]
764
764
  attr_accessor :architecture
765
765
 
766
+ # Output only. Whether keylocker is configured.`TRUE` = Enabled; `FALSE` =
767
+ # disabled. Only reported if keylockerSupported = `TRUE`.
768
+ # Corresponds to the JSON property `keylockerConfigured`
769
+ # @return [Boolean]
770
+ attr_accessor :keylocker_configured
771
+ alias_method :keylocker_configured?, :keylocker_configured
772
+
773
+ # Output only. Whether keylocker is supported.
774
+ # Corresponds to the JSON property `keylockerSupported`
775
+ # @return [Boolean]
776
+ attr_accessor :keylocker_supported
777
+ alias_method :keylocker_supported?, :keylocker_supported
778
+
766
779
  # Output only. The max CPU clock speed in kHz.
767
780
  # Corresponds to the JSON property `maxClockSpeed`
768
781
  # @return [Fixnum]
@@ -781,6 +794,8 @@ module Google
781
794
  # Update properties of this object
782
795
  def update!(**args)
783
796
  @architecture = args[:architecture] if args.key?(:architecture)
797
+ @keylocker_configured = args[:keylocker_configured] if args.key?(:keylocker_configured)
798
+ @keylocker_supported = args[:keylocker_supported] if args.key?(:keylocker_supported)
784
799
  @max_clock_speed = args[:max_clock_speed] if args.key?(:max_clock_speed)
785
800
  @model = args[:model] if args.key?(:model)
786
801
  end
@@ -1120,6 +1135,33 @@ module Google
1120
1135
  end
1121
1136
  end
1122
1137
 
1138
+ # Data that describes the result of the HTTPS latency diagnostics routine, with
1139
+ # the HTTPS requests issued to Google websites.
1140
+ class GoogleChromeManagementV1HttpsLatencyRoutineData
1141
+ include Google::Apis::Core::Hashable
1142
+
1143
+ # Output only. HTTPS latency if routine succeeded or failed because of
1144
+ # HIGH_LATENCY or VERY_HIGH_LATENCY.
1145
+ # Corresponds to the JSON property `latency`
1146
+ # @return [String]
1147
+ attr_accessor :latency
1148
+
1149
+ # Output only. HTTPS latency routine problem if a problem occurred.
1150
+ # Corresponds to the JSON property `problem`
1151
+ # @return [String]
1152
+ attr_accessor :problem
1153
+
1154
+ def initialize(**args)
1155
+ update!(**args)
1156
+ end
1157
+
1158
+ # Update properties of this object
1159
+ def update!(**args)
1160
+ @latency = args[:latency] if args.key?(:latency)
1161
+ @problem = args[:problem] if args.key?(:problem)
1162
+ end
1163
+ end
1164
+
1123
1165
  # Describes an installed app.
1124
1166
  class GoogleChromeManagementV1InstalledApp
1125
1167
  include Google::Apis::Core::Hashable
@@ -1236,6 +1278,11 @@ module Google
1236
1278
  # @return [Fixnum]
1237
1279
  attr_accessor :available_ram_bytes
1238
1280
 
1281
+ # Memory encryption information of a device.
1282
+ # Corresponds to the JSON property `totalMemoryEncryption`
1283
+ # @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TotalMemoryEncryptionInfo]
1284
+ attr_accessor :total_memory_encryption
1285
+
1239
1286
  # Output only. Total RAM in bytes.
1240
1287
  # Corresponds to the JSON property `totalRamBytes`
1241
1288
  # @return [Fixnum]
@@ -1248,6 +1295,7 @@ module Google
1248
1295
  # Update properties of this object
1249
1296
  def update!(**args)
1250
1297
  @available_ram_bytes = args[:available_ram_bytes] if args.key?(:available_ram_bytes)
1298
+ @total_memory_encryption = args[:total_memory_encryption] if args.key?(:total_memory_encryption)
1251
1299
  @total_ram_bytes = args[:total_ram_bytes] if args.key?(:total_ram_bytes)
1252
1300
  end
1253
1301
  end
@@ -1291,20 +1339,142 @@ module Google
1291
1339
  end
1292
1340
  end
1293
1341
 
1342
+ # Network device.
1343
+ class GoogleChromeManagementV1NetworkDevice
1344
+ include Google::Apis::Core::Hashable
1345
+
1346
+ # Output only. The integrated circuit card ID associated with the device's sim
1347
+ # card.
1348
+ # Corresponds to the JSON property `iccid`
1349
+ # @return [String]
1350
+ attr_accessor :iccid
1351
+
1352
+ # Output only. IMEI (if applicable) of the corresponding network device.
1353
+ # Corresponds to the JSON property `imei`
1354
+ # @return [String]
1355
+ attr_accessor :imei
1356
+
1357
+ # Output only. MAC address (if applicable) of the corresponding network device.
1358
+ # Corresponds to the JSON property `macAddress`
1359
+ # @return [String]
1360
+ attr_accessor :mac_address
1361
+
1362
+ # Output only. The mobile directory number associated with the device's sim card.
1363
+ # Corresponds to the JSON property `mdn`
1364
+ # @return [String]
1365
+ attr_accessor :mdn
1366
+
1367
+ # Output only. MEID (if applicable) of the corresponding network device.
1368
+ # Corresponds to the JSON property `meid`
1369
+ # @return [String]
1370
+ attr_accessor :meid
1371
+
1372
+ # Output only. Network device type.
1373
+ # Corresponds to the JSON property `type`
1374
+ # @return [String]
1375
+ attr_accessor :type
1376
+
1377
+ def initialize(**args)
1378
+ update!(**args)
1379
+ end
1380
+
1381
+ # Update properties of this object
1382
+ def update!(**args)
1383
+ @iccid = args[:iccid] if args.key?(:iccid)
1384
+ @imei = args[:imei] if args.key?(:imei)
1385
+ @mac_address = args[:mac_address] if args.key?(:mac_address)
1386
+ @mdn = args[:mdn] if args.key?(:mdn)
1387
+ @meid = args[:meid] if args.key?(:meid)
1388
+ @type = args[:type] if args.key?(:type)
1389
+ end
1390
+ end
1391
+
1392
+ # Network testing results to determine the health of the device's network
1393
+ # connection, for example whether the HTTPS latency is high or normal.
1394
+ class GoogleChromeManagementV1NetworkDiagnosticsReport
1395
+ include Google::Apis::Core::Hashable
1396
+
1397
+ # Data that describes the result of the HTTPS latency diagnostics routine, with
1398
+ # the HTTPS requests issued to Google websites.
1399
+ # Corresponds to the JSON property `httpsLatencyData`
1400
+ # @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData]
1401
+ attr_accessor :https_latency_data
1402
+
1403
+ # Output only. Timestamp of when the diagnostics were collected.
1404
+ # Corresponds to the JSON property `reportTime`
1405
+ # @return [String]
1406
+ attr_accessor :report_time
1407
+
1408
+ def initialize(**args)
1409
+ update!(**args)
1410
+ end
1411
+
1412
+ # Update properties of this object
1413
+ def update!(**args)
1414
+ @https_latency_data = args[:https_latency_data] if args.key?(:https_latency_data)
1415
+ @report_time = args[:report_time] if args.key?(:report_time)
1416
+ end
1417
+ end
1418
+
1419
+ # Network devices info.
1420
+ class GoogleChromeManagementV1NetworkInfo
1421
+ include Google::Apis::Core::Hashable
1422
+
1423
+ # Output only. List of network devices.
1424
+ # Corresponds to the JSON property `networkDevices`
1425
+ # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDevice>]
1426
+ attr_accessor :network_devices
1427
+
1428
+ def initialize(**args)
1429
+ update!(**args)
1430
+ end
1431
+
1432
+ # Update properties of this object
1433
+ def update!(**args)
1434
+ @network_devices = args[:network_devices] if args.key?(:network_devices)
1435
+ end
1436
+ end
1437
+
1294
1438
  # State of visible/configured networks.
1295
1439
  class GoogleChromeManagementV1NetworkStatusReport
1296
1440
  include Google::Apis::Core::Hashable
1297
1441
 
1442
+ # Output only. Current connection state of the network.
1443
+ # Corresponds to the JSON property `connectionState`
1444
+ # @return [String]
1445
+ attr_accessor :connection_state
1446
+
1447
+ # Output only. Network connection type.
1448
+ # Corresponds to the JSON property `connectionType`
1449
+ # @return [String]
1450
+ attr_accessor :connection_type
1451
+
1452
+ # Output only. Whether the wifi encryption key is turned off.
1453
+ # Corresponds to the JSON property `encryptionOn`
1454
+ # @return [Boolean]
1455
+ attr_accessor :encryption_on
1456
+ alias_method :encryption_on?, :encryption_on
1457
+
1298
1458
  # Output only. Gateway IP address.
1299
1459
  # Corresponds to the JSON property `gatewayIpAddress`
1300
1460
  # @return [String]
1301
1461
  attr_accessor :gateway_ip_address
1302
1462
 
1463
+ # Output only. Network connection guid.
1464
+ # Corresponds to the JSON property `guid`
1465
+ # @return [String]
1466
+ attr_accessor :guid
1467
+
1303
1468
  # Output only. LAN IP address.
1304
1469
  # Corresponds to the JSON property `lanIpAddress`
1305
1470
  # @return [String]
1306
1471
  attr_accessor :lan_ip_address
1307
1472
 
1473
+ # Output only. Receiving bit rate measured in megabytes per second.
1474
+ # Corresponds to the JSON property `receivingBitRateMbps`
1475
+ # @return [Fixnum]
1476
+ attr_accessor :receiving_bit_rate_mbps
1477
+
1308
1478
  # Output only. Time at which the network state was reported.
1309
1479
  # Corresponds to the JSON property `reportTime`
1310
1480
  # @return [String]
@@ -1320,17 +1490,48 @@ module Google
1320
1490
  # @return [Fixnum]
1321
1491
  attr_accessor :signal_strength_dbm
1322
1492
 
1493
+ # Output only. Transmission bit rate measured in megabytes per second.
1494
+ # Corresponds to the JSON property `transmissionBitRateMbps`
1495
+ # @return [Fixnum]
1496
+ attr_accessor :transmission_bit_rate_mbps
1497
+
1498
+ # Output only. Transmission power measured in decibels.
1499
+ # Corresponds to the JSON property `transmissionPowerDbm`
1500
+ # @return [Fixnum]
1501
+ attr_accessor :transmission_power_dbm
1502
+
1503
+ # Output only. Wifi link quality. Value ranges from [0, 70]. 0 indicates no
1504
+ # signal and 70 indicates a strong signal.
1505
+ # Corresponds to the JSON property `wifiLinkQuality`
1506
+ # @return [Fixnum]
1507
+ attr_accessor :wifi_link_quality
1508
+
1509
+ # Output only. Wifi power management enabled
1510
+ # Corresponds to the JSON property `wifiPowerManagementEnabled`
1511
+ # @return [Boolean]
1512
+ attr_accessor :wifi_power_management_enabled
1513
+ alias_method :wifi_power_management_enabled?, :wifi_power_management_enabled
1514
+
1323
1515
  def initialize(**args)
1324
1516
  update!(**args)
1325
1517
  end
1326
1518
 
1327
1519
  # Update properties of this object
1328
1520
  def update!(**args)
1521
+ @connection_state = args[:connection_state] if args.key?(:connection_state)
1522
+ @connection_type = args[:connection_type] if args.key?(:connection_type)
1523
+ @encryption_on = args[:encryption_on] if args.key?(:encryption_on)
1329
1524
  @gateway_ip_address = args[:gateway_ip_address] if args.key?(:gateway_ip_address)
1525
+ @guid = args[:guid] if args.key?(:guid)
1330
1526
  @lan_ip_address = args[:lan_ip_address] if args.key?(:lan_ip_address)
1527
+ @receiving_bit_rate_mbps = args[:receiving_bit_rate_mbps] if args.key?(:receiving_bit_rate_mbps)
1331
1528
  @report_time = args[:report_time] if args.key?(:report_time)
1332
1529
  @sample_frequency = args[:sample_frequency] if args.key?(:sample_frequency)
1333
1530
  @signal_strength_dbm = args[:signal_strength_dbm] if args.key?(:signal_strength_dbm)
1531
+ @transmission_bit_rate_mbps = args[:transmission_bit_rate_mbps] if args.key?(:transmission_bit_rate_mbps)
1532
+ @transmission_power_dbm = args[:transmission_power_dbm] if args.key?(:transmission_power_dbm)
1533
+ @wifi_link_quality = args[:wifi_link_quality] if args.key?(:wifi_link_quality)
1534
+ @wifi_power_management_enabled = args[:wifi_power_management_enabled] if args.key?(:wifi_power_management_enabled)
1334
1535
  end
1335
1536
  end
1336
1537
 
@@ -1542,6 +1743,16 @@ module Google
1542
1743
  # @return [String]
1543
1744
  attr_accessor :name
1544
1745
 
1746
+ # Output only. Network diagnostics collected periodically.
1747
+ # Corresponds to the JSON property `networkDiagnosticsReport`
1748
+ # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDiagnosticsReport>]
1749
+ attr_accessor :network_diagnostics_report
1750
+
1751
+ # Network devices info.
1752
+ # Corresponds to the JSON property `networkInfo`
1753
+ # @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkInfo]
1754
+ attr_accessor :network_info
1755
+
1545
1756
  # Output only. Network specs collected periodically.
1546
1757
  # Corresponds to the JSON property `networkStatusReport`
1547
1758
  # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkStatusReport>]
@@ -1573,6 +1784,11 @@ module Google
1573
1784
  # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1StorageStatusReport>]
1574
1785
  attr_accessor :storage_status_report
1575
1786
 
1787
+ # Output only. Information on Thunderbolt bus.
1788
+ # Corresponds to the JSON property `thunderboltInfo`
1789
+ # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ThunderboltInfo>]
1790
+ attr_accessor :thunderbolt_info
1791
+
1576
1792
  def initialize(**args)
1577
1793
  update!(**args)
1578
1794
  end
@@ -1591,12 +1807,71 @@ module Google
1591
1807
  @memory_info = args[:memory_info] if args.key?(:memory_info)
1592
1808
  @memory_status_report = args[:memory_status_report] if args.key?(:memory_status_report)
1593
1809
  @name = args[:name] if args.key?(:name)
1810
+ @network_diagnostics_report = args[:network_diagnostics_report] if args.key?(:network_diagnostics_report)
1811
+ @network_info = args[:network_info] if args.key?(:network_info)
1594
1812
  @network_status_report = args[:network_status_report] if args.key?(:network_status_report)
1595
1813
  @org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
1596
1814
  @os_update_status = args[:os_update_status] if args.key?(:os_update_status)
1597
1815
  @serial_number = args[:serial_number] if args.key?(:serial_number)
1598
1816
  @storage_info = args[:storage_info] if args.key?(:storage_info)
1599
1817
  @storage_status_report = args[:storage_status_report] if args.key?(:storage_status_report)
1818
+ @thunderbolt_info = args[:thunderbolt_info] if args.key?(:thunderbolt_info)
1819
+ end
1820
+ end
1821
+
1822
+ # Thunderbolt bus info.
1823
+ class GoogleChromeManagementV1ThunderboltInfo
1824
+ include Google::Apis::Core::Hashable
1825
+
1826
+ # Security level of the Thunderbolt bus.
1827
+ # Corresponds to the JSON property `securityLevel`
1828
+ # @return [String]
1829
+ attr_accessor :security_level
1830
+
1831
+ def initialize(**args)
1832
+ update!(**args)
1833
+ end
1834
+
1835
+ # Update properties of this object
1836
+ def update!(**args)
1837
+ @security_level = args[:security_level] if args.key?(:security_level)
1838
+ end
1839
+ end
1840
+
1841
+ # Memory encryption information of a device.
1842
+ class GoogleChromeManagementV1TotalMemoryEncryptionInfo
1843
+ include Google::Apis::Core::Hashable
1844
+
1845
+ # Memory encryption algorithm.
1846
+ # Corresponds to the JSON property `encryptionAlgorithm`
1847
+ # @return [String]
1848
+ attr_accessor :encryption_algorithm
1849
+
1850
+ # The state of memory encryption on the device.
1851
+ # Corresponds to the JSON property `encryptionState`
1852
+ # @return [String]
1853
+ attr_accessor :encryption_state
1854
+
1855
+ # The length of the encryption keys.
1856
+ # Corresponds to the JSON property `keyLength`
1857
+ # @return [Fixnum]
1858
+ attr_accessor :key_length
1859
+
1860
+ # The maximum number of keys that can be used for encryption.
1861
+ # Corresponds to the JSON property `maxKeys`
1862
+ # @return [Fixnum]
1863
+ attr_accessor :max_keys
1864
+
1865
+ def initialize(**args)
1866
+ update!(**args)
1867
+ end
1868
+
1869
+ # Update properties of this object
1870
+ def update!(**args)
1871
+ @encryption_algorithm = args[:encryption_algorithm] if args.key?(:encryption_algorithm)
1872
+ @encryption_state = args[:encryption_state] if args.key?(:encryption_state)
1873
+ @key_length = args[:key_length] if args.key?(:key_length)
1874
+ @max_keys = args[:max_keys] if args.key?(:max_keys)
1600
1875
  end
1601
1876
  end
1602
1877
 
@@ -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.22.0"
19
+ GEM_VERSION = "0.25.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.8.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220512"
25
+ REVISION = "20220630"
26
26
  end
27
27
  end
28
28
  end
@@ -172,6 +172,12 @@ module Google
172
172
  include Google::Apis::Core::JsonObjectSupport
173
173
  end
174
174
 
175
+ class GoogleChromeManagementV1HttpsLatencyRoutineData
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
175
181
  class GoogleChromeManagementV1InstalledApp
176
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
183
 
@@ -196,6 +202,24 @@ module Google
196
202
  include Google::Apis::Core::JsonObjectSupport
197
203
  end
198
204
 
205
+ class GoogleChromeManagementV1NetworkDevice
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
211
+ class GoogleChromeManagementV1NetworkDiagnosticsReport
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
217
+ class GoogleChromeManagementV1NetworkInfo
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
199
223
  class GoogleChromeManagementV1NetworkStatusReport
200
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
225
 
@@ -232,6 +256,18 @@ module Google
232
256
  include Google::Apis::Core::JsonObjectSupport
233
257
  end
234
258
 
259
+ class GoogleChromeManagementV1ThunderboltInfo
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
265
+ class GoogleChromeManagementV1TotalMemoryEncryptionInfo
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
235
271
  class GoogleRpcStatus
236
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
273
 
@@ -431,6 +467,8 @@ module Google
431
467
  # @private
432
468
  class Representation < Google::Apis::Core::JsonRepresentation
433
469
  property :architecture, as: 'architecture'
470
+ property :keylocker_configured, as: 'keylockerConfigured'
471
+ property :keylocker_supported, as: 'keylockerSupported'
434
472
  property :max_clock_speed, as: 'maxClockSpeed'
435
473
  property :model, as: 'model'
436
474
  end
@@ -529,6 +567,14 @@ module Google
529
567
  end
530
568
  end
531
569
 
570
+ class GoogleChromeManagementV1HttpsLatencyRoutineData
571
+ # @private
572
+ class Representation < Google::Apis::Core::JsonRepresentation
573
+ property :latency, as: 'latency'
574
+ property :problem, as: 'problem'
575
+ end
576
+ end
577
+
532
578
  class GoogleChromeManagementV1InstalledApp
533
579
  # @private
534
580
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -559,6 +605,8 @@ module Google
559
605
  # @private
560
606
  class Representation < Google::Apis::Core::JsonRepresentation
561
607
  property :available_ram_bytes, :numeric_string => true, as: 'availableRamBytes'
608
+ property :total_memory_encryption, as: 'totalMemoryEncryption', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TotalMemoryEncryptionInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TotalMemoryEncryptionInfo::Representation
609
+
562
610
  property :total_ram_bytes, :numeric_string => true, as: 'totalRamBytes'
563
611
  end
564
612
  end
@@ -573,14 +621,52 @@ module Google
573
621
  end
574
622
  end
575
623
 
624
+ class GoogleChromeManagementV1NetworkDevice
625
+ # @private
626
+ class Representation < Google::Apis::Core::JsonRepresentation
627
+ property :iccid, as: 'iccid'
628
+ property :imei, as: 'imei'
629
+ property :mac_address, as: 'macAddress'
630
+ property :mdn, as: 'mdn'
631
+ property :meid, as: 'meid'
632
+ property :type, as: 'type'
633
+ end
634
+ end
635
+
636
+ class GoogleChromeManagementV1NetworkDiagnosticsReport
637
+ # @private
638
+ class Representation < Google::Apis::Core::JsonRepresentation
639
+ property :https_latency_data, as: 'httpsLatencyData', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData::Representation
640
+
641
+ property :report_time, as: 'reportTime'
642
+ end
643
+ end
644
+
645
+ class GoogleChromeManagementV1NetworkInfo
646
+ # @private
647
+ class Representation < Google::Apis::Core::JsonRepresentation
648
+ collection :network_devices, as: 'networkDevices', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDevice, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDevice::Representation
649
+
650
+ end
651
+ end
652
+
576
653
  class GoogleChromeManagementV1NetworkStatusReport
577
654
  # @private
578
655
  class Representation < Google::Apis::Core::JsonRepresentation
656
+ property :connection_state, as: 'connectionState'
657
+ property :connection_type, as: 'connectionType'
658
+ property :encryption_on, as: 'encryptionOn'
579
659
  property :gateway_ip_address, as: 'gatewayIpAddress'
660
+ property :guid, as: 'guid'
580
661
  property :lan_ip_address, as: 'lanIpAddress'
662
+ property :receiving_bit_rate_mbps, :numeric_string => true, as: 'receivingBitRateMbps'
581
663
  property :report_time, as: 'reportTime'
582
664
  property :sample_frequency, as: 'sampleFrequency'
583
665
  property :signal_strength_dbm, as: 'signalStrengthDbm'
666
+ property :transmission_bit_rate_mbps, :numeric_string => true, as: 'transmissionBitRateMbps'
667
+ property :transmission_power_dbm, as: 'transmissionPowerDbm'
668
+ property :wifi_link_quality, :numeric_string => true, as: 'wifiLinkQuality'
669
+ property :wifi_power_management_enabled, as: 'wifiPowerManagementEnabled'
584
670
  end
585
671
  end
586
672
 
@@ -648,6 +734,10 @@ module Google
648
734
  collection :memory_status_report, as: 'memoryStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryStatusReport::Representation
649
735
 
650
736
  property :name, as: 'name'
737
+ collection :network_diagnostics_report, as: 'networkDiagnosticsReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDiagnosticsReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkDiagnosticsReport::Representation
738
+
739
+ property :network_info, as: 'networkInfo', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkInfo::Representation
740
+
651
741
  collection :network_status_report, as: 'networkStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1NetworkStatusReport::Representation
652
742
 
653
743
  property :org_unit_id, as: 'orgUnitId'
@@ -658,6 +748,25 @@ module Google
658
748
 
659
749
  collection :storage_status_report, as: 'storageStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1StorageStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1StorageStatusReport::Representation
660
750
 
751
+ collection :thunderbolt_info, as: 'thunderboltInfo', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ThunderboltInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ThunderboltInfo::Representation
752
+
753
+ end
754
+ end
755
+
756
+ class GoogleChromeManagementV1ThunderboltInfo
757
+ # @private
758
+ class Representation < Google::Apis::Core::JsonRepresentation
759
+ property :security_level, as: 'securityLevel'
760
+ end
761
+ end
762
+
763
+ class GoogleChromeManagementV1TotalMemoryEncryptionInfo
764
+ # @private
765
+ class Representation < Google::Apis::Core::JsonRepresentation
766
+ property :encryption_algorithm, as: 'encryptionAlgorithm'
767
+ property :encryption_state, as: 'encryptionState'
768
+ property :key_length, :numeric_string => true, as: 'keyLength'
769
+ property :max_keys, :numeric_string => true, as: 'maxKeys'
661
770
  end
662
771
  end
663
772
 
@@ -352,6 +352,8 @@ module Google
352
352
  # Get telemetry device.
353
353
  # @param [String] name
354
354
  # Required. Name of the `TelemetryDevice` to return.
355
+ # @param [String] read_mask
356
+ # Required. Read mask to specify which fields to return.
355
357
  # @param [String] fields
356
358
  # Selector specifying which fields to include in a partial response.
357
359
  # @param [String] quota_user
@@ -369,11 +371,12 @@ module Google
369
371
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
370
372
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
371
373
  # @raise [Google::Apis::AuthorizationError] Authorization is required
372
- def get_customer_telemetry_device(name, fields: nil, quota_user: nil, options: nil, &block)
374
+ def get_customer_telemetry_device(name, read_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
373
375
  command = make_simple_command(:get, 'v1/{+name}', options)
374
376
  command.response_representation = Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDevice::Representation
375
377
  command.response_class = Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDevice
376
378
  command.params['name'] = name unless name.nil?
379
+ command.query['readMask'] = read_mask unless read_mask.nil?
377
380
  command.query['fields'] = fields unless fields.nil?
378
381
  command.query['quotaUser'] = quota_user unless quota_user.nil?
379
382
  execute_or_queue_command(command, &block)
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.22.0
4
+ version: 0.25.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-05-16 00:00:00.000000000 Z
11
+ date: 2022-07-04 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.4'
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.4'
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.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.25.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Chrome Management API V1