google-apis-cloudidentity_v1beta1 0.46.0 → 0.48.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: 378e24e58200a30b9bff02d1ca79715f599c340b3fbf7d172a89be34138056a9
4
- data.tar.gz: 4f978c949207ceda3cd69710649af23d90519ed36828b4dec5edd5e535a4a71d
3
+ metadata.gz: 944c5e1936d77ade46cef069a6fbfb172d60c1ed085455381ff24c28582565d0
4
+ data.tar.gz: b81ae3abfa1d4544b18c5316694613b0333b21150f05ba6b33d3a99ce77adfaf
5
5
  SHA512:
6
- metadata.gz: 18304d3d546b35588a68006dbbaa91ffe8d7565ed54e50bda79052608c0fb5980cc849ac765f1b8a6957e4b15475d1ca47b7a7d669202a839c719e947fa9d65d
7
- data.tar.gz: 7b41a857d741b19d3b089d343ae09c1ef3efcc70160ae2d64bc5e739d6da479ab3fdb4055861f7152752b7788a834e862108aebf8cdeceb9b2afe694fba43b36
6
+ metadata.gz: 5cfc1f6c1a98ad1f9bb5379300db2e885050ce72a2a8020c22218acbdb7e73e929427da80589445f3224ca8826aaf8608ff181510d1b15b4113e57f0d1b9b5c1
7
+ data.tar.gz: f8e551010a2f33bd60994eda97e2a125155d31c8c3b8961b7916275b0caf18875013f613a4ad4e882d0be9c9a2f90361ee4e17732c5bff268cbb1d17880c4fd8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.48.0 (2024-05-19)
4
+
5
+ * Regenerated from discovery document revision 20240507
6
+ * Regenerated using generator version 0.15.0
7
+
8
+ ### v0.47.0 (2024-03-17)
9
+
10
+ * Regenerated from discovery document revision 20240312
11
+ * Regenerated using generator version 0.14.0
12
+
3
13
  ### v0.46.0 (2024-02-23)
4
14
 
5
15
  * Regenerated from discovery document revision 20240206
@@ -991,6 +991,11 @@ module Google
991
991
  # @return [String]
992
992
  attr_accessor :serial_number
993
993
 
994
+ # Output only. Unified device id of the device.
995
+ # Corresponds to the JSON property `unifiedDeviceId`
996
+ # @return [String]
997
+ attr_accessor :unified_device_id
998
+
994
999
  # WiFi MAC addresses of device.
995
1000
  # Corresponds to the JSON property `wifiMacAddresses`
996
1001
  # @return [Array<String>]
@@ -1033,6 +1038,7 @@ module Google
1033
1038
  @release_version = args[:release_version] if args.key?(:release_version)
1034
1039
  @security_patch_time = args[:security_patch_time] if args.key?(:security_patch_time)
1035
1040
  @serial_number = args[:serial_number] if args.key?(:serial_number)
1041
+ @unified_device_id = args[:unified_device_id] if args.key?(:unified_device_id)
1036
1042
  @wifi_mac_addresses = args[:wifi_mac_addresses] if args.key?(:wifi_mac_addresses)
1037
1043
  end
1038
1044
  end
@@ -1474,6 +1480,168 @@ module Google
1474
1480
  end
1475
1481
  end
1476
1482
 
1483
+ # Contains information about browser profiles reported by the [Endpoint
1484
+ # Verification extension](https://chromewebstore.google.com/detail/endpoint-
1485
+ # verification/callobklhcbilhphinckomhgkigmfocg?pli=1).
1486
+ class GoogleAppsCloudidentityDevicesV1BrowserAttributes
1487
+ include Google::Apis::Core::Hashable
1488
+
1489
+ # Browser-specific fields reported by the [Endpoint Verification extension](
1490
+ # https://chromewebstore.google.com/detail/endpoint-verification/
1491
+ # callobklhcbilhphinckomhgkigmfocg?pli=1). LINT.IfChange
1492
+ # Corresponds to the JSON property `chromeBrowserInfo`
1493
+ # @return [Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1BrowserInfo]
1494
+ attr_accessor :chrome_browser_info
1495
+
1496
+ # Chrome profile ID that is exposed by the Chrome API. It is unique for each
1497
+ # device.
1498
+ # Corresponds to the JSON property `chromeProfileId`
1499
+ # @return [String]
1500
+ attr_accessor :chrome_profile_id
1501
+
1502
+ # Timestamp in milliseconds since Epoch when the profile/gcm id was last synced.
1503
+ # Corresponds to the JSON property `lastProfileSyncTime`
1504
+ # @return [String]
1505
+ attr_accessor :last_profile_sync_time
1506
+
1507
+ def initialize(**args)
1508
+ update!(**args)
1509
+ end
1510
+
1511
+ # Update properties of this object
1512
+ def update!(**args)
1513
+ @chrome_browser_info = args[:chrome_browser_info] if args.key?(:chrome_browser_info)
1514
+ @chrome_profile_id = args[:chrome_profile_id] if args.key?(:chrome_profile_id)
1515
+ @last_profile_sync_time = args[:last_profile_sync_time] if args.key?(:last_profile_sync_time)
1516
+ end
1517
+ end
1518
+
1519
+ # Browser-specific fields reported by the [Endpoint Verification extension](
1520
+ # https://chromewebstore.google.com/detail/endpoint-verification/
1521
+ # callobklhcbilhphinckomhgkigmfocg?pli=1). LINT.IfChange
1522
+ class GoogleAppsCloudidentityDevicesV1BrowserInfo
1523
+ include Google::Apis::Core::Hashable
1524
+
1525
+ # Output only. Browser's management state.
1526
+ # Corresponds to the JSON property `browserManagementState`
1527
+ # @return [String]
1528
+ attr_accessor :browser_management_state
1529
+
1530
+ # Version of the request initiating browser.
1531
+ # Corresponds to the JSON property `browserVersion`
1532
+ # @return [String]
1533
+ attr_accessor :browser_version
1534
+
1535
+ # Current state of [built-in DNS client](https://chromeenterprise.google/
1536
+ # policies/#BuiltInDnsClientEnabled).
1537
+ # Corresponds to the JSON property `isBuiltInDnsClientEnabled`
1538
+ # @return [Boolean]
1539
+ attr_accessor :is_built_in_dns_client_enabled
1540
+ alias_method :is_built_in_dns_client_enabled?, :is_built_in_dns_client_enabled
1541
+
1542
+ # Current state of [bulk data analysis](https://chromeenterprise.google/policies/
1543
+ # #OnBulkDataEntryEnterpriseConnector). Set to true if provider list from Chrome
1544
+ # is non-empty.
1545
+ # Corresponds to the JSON property `isBulkDataEntryAnalysisEnabled`
1546
+ # @return [Boolean]
1547
+ attr_accessor :is_bulk_data_entry_analysis_enabled
1548
+ alias_method :is_bulk_data_entry_analysis_enabled?, :is_bulk_data_entry_analysis_enabled
1549
+
1550
+ # Current state of [Chrome Cleanup](https://chromeenterprise.google/policies/#
1551
+ # ChromeCleanupEnabled).
1552
+ # Corresponds to the JSON property `isChromeCleanupEnabled`
1553
+ # @return [Boolean]
1554
+ attr_accessor :is_chrome_cleanup_enabled
1555
+ alias_method :is_chrome_cleanup_enabled?, :is_chrome_cleanup_enabled
1556
+
1557
+ # Current state of [Chrome Remote Desktop app](https://chromeenterprise.google/
1558
+ # policies/#URLBlocklist).
1559
+ # Corresponds to the JSON property `isChromeRemoteDesktopAppBlocked`
1560
+ # @return [Boolean]
1561
+ attr_accessor :is_chrome_remote_desktop_app_blocked
1562
+ alias_method :is_chrome_remote_desktop_app_blocked?, :is_chrome_remote_desktop_app_blocked
1563
+
1564
+ # Current state of [file download analysis](https://chromeenterprise.google/
1565
+ # policies/#OnFileDownloadedEnterpriseConnector). Set to true if provider list
1566
+ # from Chrome is non-empty.
1567
+ # Corresponds to the JSON property `isFileDownloadAnalysisEnabled`
1568
+ # @return [Boolean]
1569
+ attr_accessor :is_file_download_analysis_enabled
1570
+ alias_method :is_file_download_analysis_enabled?, :is_file_download_analysis_enabled
1571
+
1572
+ # Current state of [file upload analysis](https://chromeenterprise.google/
1573
+ # policies/#OnFileAttachedEnterpriseConnector). Set to true if provider list
1574
+ # from Chrome is non-empty.
1575
+ # Corresponds to the JSON property `isFileUploadAnalysisEnabled`
1576
+ # @return [Boolean]
1577
+ attr_accessor :is_file_upload_analysis_enabled
1578
+ alias_method :is_file_upload_analysis_enabled?, :is_file_upload_analysis_enabled
1579
+
1580
+ # Current state of [real-time URL check](https://chromeenterprise.google/
1581
+ # policies/#EnterpriseRealTimeUrlCheckMode). Set to true if provider list from
1582
+ # Chrome is non-empty.
1583
+ # Corresponds to the JSON property `isRealtimeUrlCheckEnabled`
1584
+ # @return [Boolean]
1585
+ attr_accessor :is_realtime_url_check_enabled
1586
+ alias_method :is_realtime_url_check_enabled?, :is_realtime_url_check_enabled
1587
+
1588
+ # Current state of [security event analysis](https://chromeenterprise.google/
1589
+ # policies/#OnSecurityEventEnterpriseConnector). Set to true if provider list
1590
+ # from Chrome is non-empty.
1591
+ # Corresponds to the JSON property `isSecurityEventAnalysisEnabled`
1592
+ # @return [Boolean]
1593
+ attr_accessor :is_security_event_analysis_enabled
1594
+ alias_method :is_security_event_analysis_enabled?, :is_security_event_analysis_enabled
1595
+
1596
+ # Current state of [site isolation](https://chromeenterprise.google/policies/?
1597
+ # policy=IsolateOrigins).
1598
+ # Corresponds to the JSON property `isSiteIsolationEnabled`
1599
+ # @return [Boolean]
1600
+ attr_accessor :is_site_isolation_enabled
1601
+ alias_method :is_site_isolation_enabled?, :is_site_isolation_enabled
1602
+
1603
+ # Current state of [third-party blocking](https://chromeenterprise.google/
1604
+ # policies/#ThirdPartyBlockingEnabled).
1605
+ # Corresponds to the JSON property `isThirdPartyBlockingEnabled`
1606
+ # @return [Boolean]
1607
+ attr_accessor :is_third_party_blocking_enabled
1608
+ alias_method :is_third_party_blocking_enabled?, :is_third_party_blocking_enabled
1609
+
1610
+ # Current state of [password protection trigger](https://chromeenterprise.google/
1611
+ # policies/#PasswordProtectionWarningTrigger).
1612
+ # Corresponds to the JSON property `passwordProtectionWarningTrigger`
1613
+ # @return [String]
1614
+ attr_accessor :password_protection_warning_trigger
1615
+
1616
+ # Current state of [Safe Browsing protection level](https://chromeenterprise.
1617
+ # google/policies/#SafeBrowsingProtectionLevel).
1618
+ # Corresponds to the JSON property `safeBrowsingProtectionLevel`
1619
+ # @return [String]
1620
+ attr_accessor :safe_browsing_protection_level
1621
+
1622
+ def initialize(**args)
1623
+ update!(**args)
1624
+ end
1625
+
1626
+ # Update properties of this object
1627
+ def update!(**args)
1628
+ @browser_management_state = args[:browser_management_state] if args.key?(:browser_management_state)
1629
+ @browser_version = args[:browser_version] if args.key?(:browser_version)
1630
+ @is_built_in_dns_client_enabled = args[:is_built_in_dns_client_enabled] if args.key?(:is_built_in_dns_client_enabled)
1631
+ @is_bulk_data_entry_analysis_enabled = args[:is_bulk_data_entry_analysis_enabled] if args.key?(:is_bulk_data_entry_analysis_enabled)
1632
+ @is_chrome_cleanup_enabled = args[:is_chrome_cleanup_enabled] if args.key?(:is_chrome_cleanup_enabled)
1633
+ @is_chrome_remote_desktop_app_blocked = args[:is_chrome_remote_desktop_app_blocked] if args.key?(:is_chrome_remote_desktop_app_blocked)
1634
+ @is_file_download_analysis_enabled = args[:is_file_download_analysis_enabled] if args.key?(:is_file_download_analysis_enabled)
1635
+ @is_file_upload_analysis_enabled = args[:is_file_upload_analysis_enabled] if args.key?(:is_file_upload_analysis_enabled)
1636
+ @is_realtime_url_check_enabled = args[:is_realtime_url_check_enabled] if args.key?(:is_realtime_url_check_enabled)
1637
+ @is_security_event_analysis_enabled = args[:is_security_event_analysis_enabled] if args.key?(:is_security_event_analysis_enabled)
1638
+ @is_site_isolation_enabled = args[:is_site_isolation_enabled] if args.key?(:is_site_isolation_enabled)
1639
+ @is_third_party_blocking_enabled = args[:is_third_party_blocking_enabled] if args.key?(:is_third_party_blocking_enabled)
1640
+ @password_protection_warning_trigger = args[:password_protection_warning_trigger] if args.key?(:password_protection_warning_trigger)
1641
+ @safe_browsing_protection_level = args[:safe_browsing_protection_level] if args.key?(:safe_browsing_protection_level)
1642
+ end
1643
+ end
1644
+
1477
1645
  # Metadata for CancelWipeDevice LRO.
1478
1646
  class GoogleAppsCloudidentityDevicesV1CancelWipeDeviceMetadata
1479
1647
  include Google::Apis::Core::Hashable
@@ -1541,6 +1709,105 @@ module Google
1541
1709
  end
1542
1710
  end
1543
1711
 
1712
+ # Stores information about a certificate.
1713
+ class GoogleAppsCloudidentityDevicesV1CertificateAttributes
1714
+ include Google::Apis::Core::Hashable
1715
+
1716
+ # CertificateTemplate (v3 Extension in X.509).
1717
+ # Corresponds to the JSON property `certificateTemplate`
1718
+ # @return [Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1CertificateTemplate]
1719
+ attr_accessor :certificate_template
1720
+
1721
+ # The encoded certificate fingerprint.
1722
+ # Corresponds to the JSON property `fingerprint`
1723
+ # @return [String]
1724
+ attr_accessor :fingerprint
1725
+
1726
+ # The name of the issuer of this certificate.
1727
+ # Corresponds to the JSON property `issuer`
1728
+ # @return [String]
1729
+ attr_accessor :issuer
1730
+
1731
+ # Serial number of the certificate, Example: "123456789".
1732
+ # Corresponds to the JSON property `serialNumber`
1733
+ # @return [String]
1734
+ attr_accessor :serial_number
1735
+
1736
+ # The subject name of this certificate.
1737
+ # Corresponds to the JSON property `subject`
1738
+ # @return [String]
1739
+ attr_accessor :subject
1740
+
1741
+ # The certificate thumbprint.
1742
+ # Corresponds to the JSON property `thumbprint`
1743
+ # @return [String]
1744
+ attr_accessor :thumbprint
1745
+
1746
+ # Output only. Validation state of this certificate.
1747
+ # Corresponds to the JSON property `validationState`
1748
+ # @return [String]
1749
+ attr_accessor :validation_state
1750
+
1751
+ # Certificate not valid at or after this timestamp.
1752
+ # Corresponds to the JSON property `validityExpirationTime`
1753
+ # @return [String]
1754
+ attr_accessor :validity_expiration_time
1755
+
1756
+ # Certificate not valid before this timestamp.
1757
+ # Corresponds to the JSON property `validityStartTime`
1758
+ # @return [String]
1759
+ attr_accessor :validity_start_time
1760
+
1761
+ def initialize(**args)
1762
+ update!(**args)
1763
+ end
1764
+
1765
+ # Update properties of this object
1766
+ def update!(**args)
1767
+ @certificate_template = args[:certificate_template] if args.key?(:certificate_template)
1768
+ @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
1769
+ @issuer = args[:issuer] if args.key?(:issuer)
1770
+ @serial_number = args[:serial_number] if args.key?(:serial_number)
1771
+ @subject = args[:subject] if args.key?(:subject)
1772
+ @thumbprint = args[:thumbprint] if args.key?(:thumbprint)
1773
+ @validation_state = args[:validation_state] if args.key?(:validation_state)
1774
+ @validity_expiration_time = args[:validity_expiration_time] if args.key?(:validity_expiration_time)
1775
+ @validity_start_time = args[:validity_start_time] if args.key?(:validity_start_time)
1776
+ end
1777
+ end
1778
+
1779
+ # CertificateTemplate (v3 Extension in X.509).
1780
+ class GoogleAppsCloudidentityDevicesV1CertificateTemplate
1781
+ include Google::Apis::Core::Hashable
1782
+
1783
+ # The template id of the template. Example: "1.3.6.1.4.1.311.21.8.15608621.
1784
+ # 11768144.5720724.16068415.6889630.81.2472537.7784047".
1785
+ # Corresponds to the JSON property `id`
1786
+ # @return [String]
1787
+ attr_accessor :id
1788
+
1789
+ # The Major version of the template. Example: 100.
1790
+ # Corresponds to the JSON property `majorVersion`
1791
+ # @return [Fixnum]
1792
+ attr_accessor :major_version
1793
+
1794
+ # The minor version of the template. Example: 12.
1795
+ # Corresponds to the JSON property `minorVersion`
1796
+ # @return [Fixnum]
1797
+ attr_accessor :minor_version
1798
+
1799
+ def initialize(**args)
1800
+ update!(**args)
1801
+ end
1802
+
1803
+ # Update properties of this object
1804
+ def update!(**args)
1805
+ @id = args[:id] if args.key?(:id)
1806
+ @major_version = args[:major_version] if args.key?(:major_version)
1807
+ @minor_version = args[:minor_version] if args.key?(:minor_version)
1808
+ end
1809
+ end
1810
+
1544
1811
  # Represents the state associated with an API client calling the Devices API.
1545
1812
  # Resource representing ClientState and supports updates from API users
1546
1813
  class GoogleAppsCloudidentityDevicesV1ClientState
@@ -1791,6 +2058,12 @@ module Google
1791
2058
  # @return [String]
1792
2059
  attr_accessor :encryption_state
1793
2060
 
2061
+ # Resource representing the [Endpoint Verification-specific attributes](https://
2062
+ # cloud.google.com/endpoint-verification/docs/device-information) of a device.
2063
+ # Corresponds to the JSON property `endpointVerificationSpecificAttributes`
2064
+ # @return [Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1EndpointVerificationSpecificAttributes]
2065
+ attr_accessor :endpoint_verification_specific_attributes
2066
+
1794
2067
  # Host name of the device.
1795
2068
  # Corresponds to the JSON property `hostname`
1796
2069
  # @return [String]
@@ -1877,6 +2150,11 @@ module Google
1877
2150
  # @return [String]
1878
2151
  attr_accessor :serial_number
1879
2152
 
2153
+ # Output only. Unified device id of the device.
2154
+ # Corresponds to the JSON property `unifiedDeviceId`
2155
+ # @return [String]
2156
+ attr_accessor :unified_device_id
2157
+
1880
2158
  # WiFi MAC addresses of device.
1881
2159
  # Corresponds to the JSON property `wifiMacAddresses`
1882
2160
  # @return [Array<String>]
@@ -1901,6 +2179,7 @@ module Google
1901
2179
  @enabled_developer_options = args[:enabled_developer_options] if args.key?(:enabled_developer_options)
1902
2180
  @enabled_usb_debugging = args[:enabled_usb_debugging] if args.key?(:enabled_usb_debugging)
1903
2181
  @encryption_state = args[:encryption_state] if args.key?(:encryption_state)
2182
+ @endpoint_verification_specific_attributes = args[:endpoint_verification_specific_attributes] if args.key?(:endpoint_verification_specific_attributes)
1904
2183
  @hostname = args[:hostname] if args.key?(:hostname)
1905
2184
  @imei = args[:imei] if args.key?(:imei)
1906
2185
  @kernel_version = args[:kernel_version] if args.key?(:kernel_version)
@@ -1917,6 +2196,7 @@ module Google
1917
2196
  @release_version = args[:release_version] if args.key?(:release_version)
1918
2197
  @security_patch_time = args[:security_patch_time] if args.key?(:security_patch_time)
1919
2198
  @serial_number = args[:serial_number] if args.key?(:serial_number)
2199
+ @unified_device_id = args[:unified_device_id] if args.key?(:unified_device_id)
1920
2200
  @wifi_mac_addresses = args[:wifi_mac_addresses] if args.key?(:wifi_mac_addresses)
1921
2201
  end
1922
2202
  end
@@ -1998,6 +2278,43 @@ module Google
1998
2278
  end
1999
2279
  end
2000
2280
 
2281
+ # Resource representing the [Endpoint Verification-specific attributes](https://
2282
+ # cloud.google.com/endpoint-verification/docs/device-information) of a device.
2283
+ class GoogleAppsCloudidentityDevicesV1EndpointVerificationSpecificAttributes
2284
+ include Google::Apis::Core::Hashable
2285
+
2286
+ # Additional signals reported by Endpoint Verification. It includes the
2287
+ # following attributes: 1. Non-configurable attributes: hotfixes, av_installed,
2288
+ # av_enabled, windows_domain_name, is_os_native_firewall_enabled, and
2289
+ # is_secure_boot_enabled. 2. [Configurable attributes](https://cloud.google.com/
2290
+ # endpoint-verification/docs/collect-config-attributes): file, folder, and
2291
+ # binary attributes; registry entries; and properties in a plist.
2292
+ # Corresponds to the JSON property `additionalSignals`
2293
+ # @return [Hash<String,Object>]
2294
+ attr_accessor :additional_signals
2295
+
2296
+ # Details of browser profiles reported by Endpoint Verification.
2297
+ # Corresponds to the JSON property `browserAttributes`
2298
+ # @return [Array<Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1BrowserAttributes>]
2299
+ attr_accessor :browser_attributes
2300
+
2301
+ # Details of certificates.
2302
+ # Corresponds to the JSON property `certificateAttributes`
2303
+ # @return [Array<Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1CertificateAttributes>]
2304
+ attr_accessor :certificate_attributes
2305
+
2306
+ def initialize(**args)
2307
+ update!(**args)
2308
+ end
2309
+
2310
+ # Update properties of this object
2311
+ def update!(**args)
2312
+ @additional_signals = args[:additional_signals] if args.key?(:additional_signals)
2313
+ @browser_attributes = args[:browser_attributes] if args.key?(:browser_attributes)
2314
+ @certificate_attributes = args[:certificate_attributes] if args.key?(:certificate_attributes)
2315
+ end
2316
+ end
2317
+
2001
2318
  # Metadata for ListEndpointApps LRO.
2002
2319
  class GoogleAppsCloudidentityDevicesV1ListEndpointAppsMetadata
2003
2320
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudidentityV1beta1
18
18
  # Version of the google-apis-cloudidentity_v1beta1 gem
19
- GEM_VERSION = "0.46.0"
19
+ GEM_VERSION = "0.48.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240206"
25
+ REVISION = "20240507"
26
26
  end
27
27
  end
28
28
  end
@@ -262,6 +262,18 @@ module Google
262
262
  include Google::Apis::Core::JsonObjectSupport
263
263
  end
264
264
 
265
+ class GoogleAppsCloudidentityDevicesV1BrowserAttributes
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
271
+ class GoogleAppsCloudidentityDevicesV1BrowserInfo
272
+ class Representation < Google::Apis::Core::JsonRepresentation; end
273
+
274
+ include Google::Apis::Core::JsonObjectSupport
275
+ end
276
+
265
277
  class GoogleAppsCloudidentityDevicesV1CancelWipeDeviceMetadata
266
278
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
279
 
@@ -286,6 +298,18 @@ module Google
286
298
  include Google::Apis::Core::JsonObjectSupport
287
299
  end
288
300
 
301
+ class GoogleAppsCloudidentityDevicesV1CertificateAttributes
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
307
+ class GoogleAppsCloudidentityDevicesV1CertificateTemplate
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
289
313
  class GoogleAppsCloudidentityDevicesV1ClientState
290
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
315
 
@@ -328,6 +352,12 @@ module Google
328
352
  include Google::Apis::Core::JsonObjectSupport
329
353
  end
330
354
 
355
+ class GoogleAppsCloudidentityDevicesV1EndpointVerificationSpecificAttributes
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
331
361
  class GoogleAppsCloudidentityDevicesV1ListEndpointAppsMetadata
332
362
  class Representation < Google::Apis::Core::JsonRepresentation; end
333
363
 
@@ -964,6 +994,7 @@ module Google
964
994
  property :release_version, as: 'releaseVersion'
965
995
  property :security_patch_time, as: 'securityPatchTime'
966
996
  property :serial_number, as: 'serialNumber'
997
+ property :unified_device_id, as: 'unifiedDeviceId'
967
998
  collection :wifi_mac_addresses, as: 'wifiMacAddresses'
968
999
  end
969
1000
  end
@@ -1095,6 +1126,36 @@ module Google
1095
1126
  end
1096
1127
  end
1097
1128
 
1129
+ class GoogleAppsCloudidentityDevicesV1BrowserAttributes
1130
+ # @private
1131
+ class Representation < Google::Apis::Core::JsonRepresentation
1132
+ property :chrome_browser_info, as: 'chromeBrowserInfo', class: Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1BrowserInfo, decorator: Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1BrowserInfo::Representation
1133
+
1134
+ property :chrome_profile_id, as: 'chromeProfileId'
1135
+ property :last_profile_sync_time, as: 'lastProfileSyncTime'
1136
+ end
1137
+ end
1138
+
1139
+ class GoogleAppsCloudidentityDevicesV1BrowserInfo
1140
+ # @private
1141
+ class Representation < Google::Apis::Core::JsonRepresentation
1142
+ property :browser_management_state, as: 'browserManagementState'
1143
+ property :browser_version, as: 'browserVersion'
1144
+ property :is_built_in_dns_client_enabled, as: 'isBuiltInDnsClientEnabled'
1145
+ property :is_bulk_data_entry_analysis_enabled, as: 'isBulkDataEntryAnalysisEnabled'
1146
+ property :is_chrome_cleanup_enabled, as: 'isChromeCleanupEnabled'
1147
+ property :is_chrome_remote_desktop_app_blocked, as: 'isChromeRemoteDesktopAppBlocked'
1148
+ property :is_file_download_analysis_enabled, as: 'isFileDownloadAnalysisEnabled'
1149
+ property :is_file_upload_analysis_enabled, as: 'isFileUploadAnalysisEnabled'
1150
+ property :is_realtime_url_check_enabled, as: 'isRealtimeUrlCheckEnabled'
1151
+ property :is_security_event_analysis_enabled, as: 'isSecurityEventAnalysisEnabled'
1152
+ property :is_site_isolation_enabled, as: 'isSiteIsolationEnabled'
1153
+ property :is_third_party_blocking_enabled, as: 'isThirdPartyBlockingEnabled'
1154
+ property :password_protection_warning_trigger, as: 'passwordProtectionWarningTrigger'
1155
+ property :safe_browsing_protection_level, as: 'safeBrowsingProtectionLevel'
1156
+ end
1157
+ end
1158
+
1098
1159
  class GoogleAppsCloudidentityDevicesV1CancelWipeDeviceMetadata
1099
1160
  # @private
1100
1161
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1123,6 +1184,31 @@ module Google
1123
1184
  end
1124
1185
  end
1125
1186
 
1187
+ class GoogleAppsCloudidentityDevicesV1CertificateAttributes
1188
+ # @private
1189
+ class Representation < Google::Apis::Core::JsonRepresentation
1190
+ property :certificate_template, as: 'certificateTemplate', class: Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1CertificateTemplate, decorator: Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1CertificateTemplate::Representation
1191
+
1192
+ property :fingerprint, as: 'fingerprint'
1193
+ property :issuer, as: 'issuer'
1194
+ property :serial_number, as: 'serialNumber'
1195
+ property :subject, as: 'subject'
1196
+ property :thumbprint, as: 'thumbprint'
1197
+ property :validation_state, as: 'validationState'
1198
+ property :validity_expiration_time, as: 'validityExpirationTime'
1199
+ property :validity_start_time, as: 'validityStartTime'
1200
+ end
1201
+ end
1202
+
1203
+ class GoogleAppsCloudidentityDevicesV1CertificateTemplate
1204
+ # @private
1205
+ class Representation < Google::Apis::Core::JsonRepresentation
1206
+ property :id, as: 'id'
1207
+ property :major_version, as: 'majorVersion'
1208
+ property :minor_version, as: 'minorVersion'
1209
+ end
1210
+ end
1211
+
1126
1212
  class GoogleAppsCloudidentityDevicesV1ClientState
1127
1213
  # @private
1128
1214
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1186,6 +1272,8 @@ module Google
1186
1272
  property :enabled_developer_options, as: 'enabledDeveloperOptions'
1187
1273
  property :enabled_usb_debugging, as: 'enabledUsbDebugging'
1188
1274
  property :encryption_state, as: 'encryptionState'
1275
+ property :endpoint_verification_specific_attributes, as: 'endpointVerificationSpecificAttributes', class: Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1EndpointVerificationSpecificAttributes, decorator: Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1EndpointVerificationSpecificAttributes::Representation
1276
+
1189
1277
  property :hostname, as: 'hostname'
1190
1278
  property :imei, as: 'imei'
1191
1279
  property :kernel_version, as: 'kernelVersion'
@@ -1202,6 +1290,7 @@ module Google
1202
1290
  property :release_version, as: 'releaseVersion'
1203
1291
  property :security_patch_time, as: 'securityPatchTime'
1204
1292
  property :serial_number, as: 'serialNumber'
1293
+ property :unified_device_id, as: 'unifiedDeviceId'
1205
1294
  collection :wifi_mac_addresses, as: 'wifiMacAddresses'
1206
1295
  end
1207
1296
  end
@@ -1222,6 +1311,17 @@ module Google
1222
1311
  end
1223
1312
  end
1224
1313
 
1314
+ class GoogleAppsCloudidentityDevicesV1EndpointVerificationSpecificAttributes
1315
+ # @private
1316
+ class Representation < Google::Apis::Core::JsonRepresentation
1317
+ hash :additional_signals, as: 'additionalSignals'
1318
+ collection :browser_attributes, as: 'browserAttributes', class: Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1BrowserAttributes, decorator: Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1BrowserAttributes::Representation
1319
+
1320
+ collection :certificate_attributes, as: 'certificateAttributes', class: Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1CertificateAttributes, decorator: Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1CertificateAttributes::Representation
1321
+
1322
+ end
1323
+ end
1324
+
1225
1325
  class GoogleAppsCloudidentityDevicesV1ListEndpointAppsMetadata
1226
1326
  # @private
1227
1327
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudidentity_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.0
4
+ version: 0.48.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: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-05-26 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.14.0
19
+ version: 0.15.0
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.14.0
29
+ version: 0.15.0
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-cloudidentity_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.46.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.48.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []