google-apis-cloudidentity_v1 0.41.0 → 0.43.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: 9b2e2044510adb4e3130913fdb4db7db52ada5ed607917cd9d95d74741fb9597
4
- data.tar.gz: 9fa5fe82d81324e6887a0e50c19ccb29094dfcbaf0f2ee8dd796323b5c023e22
3
+ metadata.gz: 2adb1bfb9c8a0f2c336100e160ae723c987d78265ee2567c745b04c7435fed48
4
+ data.tar.gz: 64daef94324fc8f89def32905c92f212cf474f2e533ab6e2ba1bf82dbfde8535
5
5
  SHA512:
6
- metadata.gz: da3633bc0801f07fcefd3b80df6a3c26d269503ad156ea9b0ec5c1f4905297bfdbecce18438c4c926e66c52827937bafca46d1fb8135218c278e0398ac871361
7
- data.tar.gz: e7473e156e5807fbeee24def5e567becb394157d58f6c0c9cb8a98732d27119a223c43afcefcb5331ae6da4ce05f11db65369f752fdc09c0d4f6ec20533747f7
6
+ metadata.gz: ae0e30044dd135c316e54614037eadbed2b7531d83b29cd62a4bcbea1015114ff69befa23779b6d8cffb5a0f5a775e19f28426dc07911e5a7a310c34a04872c0
7
+ data.tar.gz: 31b1fccbcc2660b5ed406cfcb23389b17e2e09951d19ecfbee3e1eb28f8bb76e2def144c6ed36b359a4ed6fbffdf05656e3bf446527a74c0e945277f774d2512
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-cloudidentity_v1
2
2
 
3
+ ### v0.43.0 (2024-05-19)
4
+
5
+ * Regenerated from discovery document revision 20240507
6
+ * Regenerated using generator version 0.15.0
7
+
8
+ ### v0.42.0 (2024-03-17)
9
+
10
+ * Regenerated from discovery document revision 20240312
11
+
3
12
  ### v0.41.0 (2024-02-24)
4
13
 
5
14
  * Regenerated using generator version 0.14.0
@@ -599,6 +599,168 @@ module Google
599
599
  end
600
600
  end
601
601
 
602
+ # Contains information about browser profiles reported by the [Endpoint
603
+ # Verification extension](https://chromewebstore.google.com/detail/endpoint-
604
+ # verification/callobklhcbilhphinckomhgkigmfocg?pli=1).
605
+ class GoogleAppsCloudidentityDevicesV1BrowserAttributes
606
+ include Google::Apis::Core::Hashable
607
+
608
+ # Browser-specific fields reported by the [Endpoint Verification extension](
609
+ # https://chromewebstore.google.com/detail/endpoint-verification/
610
+ # callobklhcbilhphinckomhgkigmfocg?pli=1). LINT.IfChange
611
+ # Corresponds to the JSON property `chromeBrowserInfo`
612
+ # @return [Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1BrowserInfo]
613
+ attr_accessor :chrome_browser_info
614
+
615
+ # Chrome profile ID that is exposed by the Chrome API. It is unique for each
616
+ # device.
617
+ # Corresponds to the JSON property `chromeProfileId`
618
+ # @return [String]
619
+ attr_accessor :chrome_profile_id
620
+
621
+ # Timestamp in milliseconds since Epoch when the profile/gcm id was last synced.
622
+ # Corresponds to the JSON property `lastProfileSyncTime`
623
+ # @return [String]
624
+ attr_accessor :last_profile_sync_time
625
+
626
+ def initialize(**args)
627
+ update!(**args)
628
+ end
629
+
630
+ # Update properties of this object
631
+ def update!(**args)
632
+ @chrome_browser_info = args[:chrome_browser_info] if args.key?(:chrome_browser_info)
633
+ @chrome_profile_id = args[:chrome_profile_id] if args.key?(:chrome_profile_id)
634
+ @last_profile_sync_time = args[:last_profile_sync_time] if args.key?(:last_profile_sync_time)
635
+ end
636
+ end
637
+
638
+ # Browser-specific fields reported by the [Endpoint Verification extension](
639
+ # https://chromewebstore.google.com/detail/endpoint-verification/
640
+ # callobklhcbilhphinckomhgkigmfocg?pli=1). LINT.IfChange
641
+ class GoogleAppsCloudidentityDevicesV1BrowserInfo
642
+ include Google::Apis::Core::Hashable
643
+
644
+ # Output only. Browser's management state.
645
+ # Corresponds to the JSON property `browserManagementState`
646
+ # @return [String]
647
+ attr_accessor :browser_management_state
648
+
649
+ # Version of the request initiating browser.
650
+ # Corresponds to the JSON property `browserVersion`
651
+ # @return [String]
652
+ attr_accessor :browser_version
653
+
654
+ # Current state of [built-in DNS client](https://chromeenterprise.google/
655
+ # policies/#BuiltInDnsClientEnabled).
656
+ # Corresponds to the JSON property `isBuiltInDnsClientEnabled`
657
+ # @return [Boolean]
658
+ attr_accessor :is_built_in_dns_client_enabled
659
+ alias_method :is_built_in_dns_client_enabled?, :is_built_in_dns_client_enabled
660
+
661
+ # Current state of [bulk data analysis](https://chromeenterprise.google/policies/
662
+ # #OnBulkDataEntryEnterpriseConnector). Set to true if provider list from Chrome
663
+ # is non-empty.
664
+ # Corresponds to the JSON property `isBulkDataEntryAnalysisEnabled`
665
+ # @return [Boolean]
666
+ attr_accessor :is_bulk_data_entry_analysis_enabled
667
+ alias_method :is_bulk_data_entry_analysis_enabled?, :is_bulk_data_entry_analysis_enabled
668
+
669
+ # Current state of [Chrome Cleanup](https://chromeenterprise.google/policies/#
670
+ # ChromeCleanupEnabled).
671
+ # Corresponds to the JSON property `isChromeCleanupEnabled`
672
+ # @return [Boolean]
673
+ attr_accessor :is_chrome_cleanup_enabled
674
+ alias_method :is_chrome_cleanup_enabled?, :is_chrome_cleanup_enabled
675
+
676
+ # Current state of [Chrome Remote Desktop app](https://chromeenterprise.google/
677
+ # policies/#URLBlocklist).
678
+ # Corresponds to the JSON property `isChromeRemoteDesktopAppBlocked`
679
+ # @return [Boolean]
680
+ attr_accessor :is_chrome_remote_desktop_app_blocked
681
+ alias_method :is_chrome_remote_desktop_app_blocked?, :is_chrome_remote_desktop_app_blocked
682
+
683
+ # Current state of [file download analysis](https://chromeenterprise.google/
684
+ # policies/#OnFileDownloadedEnterpriseConnector). Set to true if provider list
685
+ # from Chrome is non-empty.
686
+ # Corresponds to the JSON property `isFileDownloadAnalysisEnabled`
687
+ # @return [Boolean]
688
+ attr_accessor :is_file_download_analysis_enabled
689
+ alias_method :is_file_download_analysis_enabled?, :is_file_download_analysis_enabled
690
+
691
+ # Current state of [file upload analysis](https://chromeenterprise.google/
692
+ # policies/#OnFileAttachedEnterpriseConnector). Set to true if provider list
693
+ # from Chrome is non-empty.
694
+ # Corresponds to the JSON property `isFileUploadAnalysisEnabled`
695
+ # @return [Boolean]
696
+ attr_accessor :is_file_upload_analysis_enabled
697
+ alias_method :is_file_upload_analysis_enabled?, :is_file_upload_analysis_enabled
698
+
699
+ # Current state of [real-time URL check](https://chromeenterprise.google/
700
+ # policies/#EnterpriseRealTimeUrlCheckMode). Set to true if provider list from
701
+ # Chrome is non-empty.
702
+ # Corresponds to the JSON property `isRealtimeUrlCheckEnabled`
703
+ # @return [Boolean]
704
+ attr_accessor :is_realtime_url_check_enabled
705
+ alias_method :is_realtime_url_check_enabled?, :is_realtime_url_check_enabled
706
+
707
+ # Current state of [security event analysis](https://chromeenterprise.google/
708
+ # policies/#OnSecurityEventEnterpriseConnector). Set to true if provider list
709
+ # from Chrome is non-empty.
710
+ # Corresponds to the JSON property `isSecurityEventAnalysisEnabled`
711
+ # @return [Boolean]
712
+ attr_accessor :is_security_event_analysis_enabled
713
+ alias_method :is_security_event_analysis_enabled?, :is_security_event_analysis_enabled
714
+
715
+ # Current state of [site isolation](https://chromeenterprise.google/policies/?
716
+ # policy=IsolateOrigins).
717
+ # Corresponds to the JSON property `isSiteIsolationEnabled`
718
+ # @return [Boolean]
719
+ attr_accessor :is_site_isolation_enabled
720
+ alias_method :is_site_isolation_enabled?, :is_site_isolation_enabled
721
+
722
+ # Current state of [third-party blocking](https://chromeenterprise.google/
723
+ # policies/#ThirdPartyBlockingEnabled).
724
+ # Corresponds to the JSON property `isThirdPartyBlockingEnabled`
725
+ # @return [Boolean]
726
+ attr_accessor :is_third_party_blocking_enabled
727
+ alias_method :is_third_party_blocking_enabled?, :is_third_party_blocking_enabled
728
+
729
+ # Current state of [password protection trigger](https://chromeenterprise.google/
730
+ # policies/#PasswordProtectionWarningTrigger).
731
+ # Corresponds to the JSON property `passwordProtectionWarningTrigger`
732
+ # @return [String]
733
+ attr_accessor :password_protection_warning_trigger
734
+
735
+ # Current state of [Safe Browsing protection level](https://chromeenterprise.
736
+ # google/policies/#SafeBrowsingProtectionLevel).
737
+ # Corresponds to the JSON property `safeBrowsingProtectionLevel`
738
+ # @return [String]
739
+ attr_accessor :safe_browsing_protection_level
740
+
741
+ def initialize(**args)
742
+ update!(**args)
743
+ end
744
+
745
+ # Update properties of this object
746
+ def update!(**args)
747
+ @browser_management_state = args[:browser_management_state] if args.key?(:browser_management_state)
748
+ @browser_version = args[:browser_version] if args.key?(:browser_version)
749
+ @is_built_in_dns_client_enabled = args[:is_built_in_dns_client_enabled] if args.key?(:is_built_in_dns_client_enabled)
750
+ @is_bulk_data_entry_analysis_enabled = args[:is_bulk_data_entry_analysis_enabled] if args.key?(:is_bulk_data_entry_analysis_enabled)
751
+ @is_chrome_cleanup_enabled = args[:is_chrome_cleanup_enabled] if args.key?(:is_chrome_cleanup_enabled)
752
+ @is_chrome_remote_desktop_app_blocked = args[:is_chrome_remote_desktop_app_blocked] if args.key?(:is_chrome_remote_desktop_app_blocked)
753
+ @is_file_download_analysis_enabled = args[:is_file_download_analysis_enabled] if args.key?(:is_file_download_analysis_enabled)
754
+ @is_file_upload_analysis_enabled = args[:is_file_upload_analysis_enabled] if args.key?(:is_file_upload_analysis_enabled)
755
+ @is_realtime_url_check_enabled = args[:is_realtime_url_check_enabled] if args.key?(:is_realtime_url_check_enabled)
756
+ @is_security_event_analysis_enabled = args[:is_security_event_analysis_enabled] if args.key?(:is_security_event_analysis_enabled)
757
+ @is_site_isolation_enabled = args[:is_site_isolation_enabled] if args.key?(:is_site_isolation_enabled)
758
+ @is_third_party_blocking_enabled = args[:is_third_party_blocking_enabled] if args.key?(:is_third_party_blocking_enabled)
759
+ @password_protection_warning_trigger = args[:password_protection_warning_trigger] if args.key?(:password_protection_warning_trigger)
760
+ @safe_browsing_protection_level = args[:safe_browsing_protection_level] if args.key?(:safe_browsing_protection_level)
761
+ end
762
+ end
763
+
602
764
  # Metadata for CancelWipeDevice LRO.
603
765
  class GoogleAppsCloudidentityDevicesV1CancelWipeDeviceMetadata
604
766
  include Google::Apis::Core::Hashable
@@ -712,6 +874,105 @@ module Google
712
874
  end
713
875
  end
714
876
 
877
+ # Stores information about a certificate.
878
+ class GoogleAppsCloudidentityDevicesV1CertificateAttributes
879
+ include Google::Apis::Core::Hashable
880
+
881
+ # CertificateTemplate (v3 Extension in X.509).
882
+ # Corresponds to the JSON property `certificateTemplate`
883
+ # @return [Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1CertificateTemplate]
884
+ attr_accessor :certificate_template
885
+
886
+ # The encoded certificate fingerprint.
887
+ # Corresponds to the JSON property `fingerprint`
888
+ # @return [String]
889
+ attr_accessor :fingerprint
890
+
891
+ # The name of the issuer of this certificate.
892
+ # Corresponds to the JSON property `issuer`
893
+ # @return [String]
894
+ attr_accessor :issuer
895
+
896
+ # Serial number of the certificate, Example: "123456789".
897
+ # Corresponds to the JSON property `serialNumber`
898
+ # @return [String]
899
+ attr_accessor :serial_number
900
+
901
+ # The subject name of this certificate.
902
+ # Corresponds to the JSON property `subject`
903
+ # @return [String]
904
+ attr_accessor :subject
905
+
906
+ # The certificate thumbprint.
907
+ # Corresponds to the JSON property `thumbprint`
908
+ # @return [String]
909
+ attr_accessor :thumbprint
910
+
911
+ # Output only. Validation state of this certificate.
912
+ # Corresponds to the JSON property `validationState`
913
+ # @return [String]
914
+ attr_accessor :validation_state
915
+
916
+ # Certificate not valid at or after this timestamp.
917
+ # Corresponds to the JSON property `validityExpirationTime`
918
+ # @return [String]
919
+ attr_accessor :validity_expiration_time
920
+
921
+ # Certificate not valid before this timestamp.
922
+ # Corresponds to the JSON property `validityStartTime`
923
+ # @return [String]
924
+ attr_accessor :validity_start_time
925
+
926
+ def initialize(**args)
927
+ update!(**args)
928
+ end
929
+
930
+ # Update properties of this object
931
+ def update!(**args)
932
+ @certificate_template = args[:certificate_template] if args.key?(:certificate_template)
933
+ @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
934
+ @issuer = args[:issuer] if args.key?(:issuer)
935
+ @serial_number = args[:serial_number] if args.key?(:serial_number)
936
+ @subject = args[:subject] if args.key?(:subject)
937
+ @thumbprint = args[:thumbprint] if args.key?(:thumbprint)
938
+ @validation_state = args[:validation_state] if args.key?(:validation_state)
939
+ @validity_expiration_time = args[:validity_expiration_time] if args.key?(:validity_expiration_time)
940
+ @validity_start_time = args[:validity_start_time] if args.key?(:validity_start_time)
941
+ end
942
+ end
943
+
944
+ # CertificateTemplate (v3 Extension in X.509).
945
+ class GoogleAppsCloudidentityDevicesV1CertificateTemplate
946
+ include Google::Apis::Core::Hashable
947
+
948
+ # The template id of the template. Example: "1.3.6.1.4.1.311.21.8.15608621.
949
+ # 11768144.5720724.16068415.6889630.81.2472537.7784047".
950
+ # Corresponds to the JSON property `id`
951
+ # @return [String]
952
+ attr_accessor :id
953
+
954
+ # The Major version of the template. Example: 100.
955
+ # Corresponds to the JSON property `majorVersion`
956
+ # @return [Fixnum]
957
+ attr_accessor :major_version
958
+
959
+ # The minor version of the template. Example: 12.
960
+ # Corresponds to the JSON property `minorVersion`
961
+ # @return [Fixnum]
962
+ attr_accessor :minor_version
963
+
964
+ def initialize(**args)
965
+ update!(**args)
966
+ end
967
+
968
+ # Update properties of this object
969
+ def update!(**args)
970
+ @id = args[:id] if args.key?(:id)
971
+ @major_version = args[:major_version] if args.key?(:major_version)
972
+ @minor_version = args[:minor_version] if args.key?(:minor_version)
973
+ end
974
+ end
975
+
715
976
  # Represents the state associated with an API client calling the Devices API.
716
977
  # Resource representing ClientState and supports updates from API users
717
978
  class GoogleAppsCloudidentityDevicesV1ClientState
@@ -962,6 +1223,12 @@ module Google
962
1223
  # @return [String]
963
1224
  attr_accessor :encryption_state
964
1225
 
1226
+ # Resource representing the [Endpoint Verification-specific attributes](https://
1227
+ # cloud.google.com/endpoint-verification/docs/device-information) of a device.
1228
+ # Corresponds to the JSON property `endpointVerificationSpecificAttributes`
1229
+ # @return [Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1EndpointVerificationSpecificAttributes]
1230
+ attr_accessor :endpoint_verification_specific_attributes
1231
+
965
1232
  # Host name of the device.
966
1233
  # Corresponds to the JSON property `hostname`
967
1234
  # @return [String]
@@ -1048,6 +1315,11 @@ module Google
1048
1315
  # @return [String]
1049
1316
  attr_accessor :serial_number
1050
1317
 
1318
+ # Output only. Unified device id of the device.
1319
+ # Corresponds to the JSON property `unifiedDeviceId`
1320
+ # @return [String]
1321
+ attr_accessor :unified_device_id
1322
+
1051
1323
  # WiFi MAC addresses of device.
1052
1324
  # Corresponds to the JSON property `wifiMacAddresses`
1053
1325
  # @return [Array<String>]
@@ -1072,6 +1344,7 @@ module Google
1072
1344
  @enabled_developer_options = args[:enabled_developer_options] if args.key?(:enabled_developer_options)
1073
1345
  @enabled_usb_debugging = args[:enabled_usb_debugging] if args.key?(:enabled_usb_debugging)
1074
1346
  @encryption_state = args[:encryption_state] if args.key?(:encryption_state)
1347
+ @endpoint_verification_specific_attributes = args[:endpoint_verification_specific_attributes] if args.key?(:endpoint_verification_specific_attributes)
1075
1348
  @hostname = args[:hostname] if args.key?(:hostname)
1076
1349
  @imei = args[:imei] if args.key?(:imei)
1077
1350
  @kernel_version = args[:kernel_version] if args.key?(:kernel_version)
@@ -1088,6 +1361,7 @@ module Google
1088
1361
  @release_version = args[:release_version] if args.key?(:release_version)
1089
1362
  @security_patch_time = args[:security_patch_time] if args.key?(:security_patch_time)
1090
1363
  @serial_number = args[:serial_number] if args.key?(:serial_number)
1364
+ @unified_device_id = args[:unified_device_id] if args.key?(:unified_device_id)
1091
1365
  @wifi_mac_addresses = args[:wifi_mac_addresses] if args.key?(:wifi_mac_addresses)
1092
1366
  end
1093
1367
  end
@@ -1169,6 +1443,43 @@ module Google
1169
1443
  end
1170
1444
  end
1171
1445
 
1446
+ # Resource representing the [Endpoint Verification-specific attributes](https://
1447
+ # cloud.google.com/endpoint-verification/docs/device-information) of a device.
1448
+ class GoogleAppsCloudidentityDevicesV1EndpointVerificationSpecificAttributes
1449
+ include Google::Apis::Core::Hashable
1450
+
1451
+ # Additional signals reported by Endpoint Verification. It includes the
1452
+ # following attributes: 1. Non-configurable attributes: hotfixes, av_installed,
1453
+ # av_enabled, windows_domain_name, is_os_native_firewall_enabled, and
1454
+ # is_secure_boot_enabled. 2. [Configurable attributes](https://cloud.google.com/
1455
+ # endpoint-verification/docs/collect-config-attributes): file, folder, and
1456
+ # binary attributes; registry entries; and properties in a plist.
1457
+ # Corresponds to the JSON property `additionalSignals`
1458
+ # @return [Hash<String,Object>]
1459
+ attr_accessor :additional_signals
1460
+
1461
+ # Details of browser profiles reported by Endpoint Verification.
1462
+ # Corresponds to the JSON property `browserAttributes`
1463
+ # @return [Array<Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1BrowserAttributes>]
1464
+ attr_accessor :browser_attributes
1465
+
1466
+ # Details of certificates.
1467
+ # Corresponds to the JSON property `certificateAttributes`
1468
+ # @return [Array<Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1CertificateAttributes>]
1469
+ attr_accessor :certificate_attributes
1470
+
1471
+ def initialize(**args)
1472
+ update!(**args)
1473
+ end
1474
+
1475
+ # Update properties of this object
1476
+ def update!(**args)
1477
+ @additional_signals = args[:additional_signals] if args.key?(:additional_signals)
1478
+ @browser_attributes = args[:browser_attributes] if args.key?(:browser_attributes)
1479
+ @certificate_attributes = args[:certificate_attributes] if args.key?(:certificate_attributes)
1480
+ end
1481
+ end
1482
+
1172
1483
  # Response message that is returned in ListClientStates.
1173
1484
  class GoogleAppsCloudidentityDevicesV1ListClientStatesResponse
1174
1485
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudidentityV1
18
18
  # Version of the google-apis-cloudidentity_v1 gem
19
- GEM_VERSION = "0.41.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
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
@@ -190,6 +190,18 @@ module Google
190
190
  include Google::Apis::Core::JsonObjectSupport
191
191
  end
192
192
 
193
+ class GoogleAppsCloudidentityDevicesV1BrowserAttributes
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
199
+ class GoogleAppsCloudidentityDevicesV1BrowserInfo
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
193
205
  class GoogleAppsCloudidentityDevicesV1CancelWipeDeviceMetadata
194
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
207
 
@@ -226,6 +238,18 @@ module Google
226
238
  include Google::Apis::Core::JsonObjectSupport
227
239
  end
228
240
 
241
+ class GoogleAppsCloudidentityDevicesV1CertificateAttributes
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
247
+ class GoogleAppsCloudidentityDevicesV1CertificateTemplate
248
+ class Representation < Google::Apis::Core::JsonRepresentation; end
249
+
250
+ include Google::Apis::Core::JsonObjectSupport
251
+ end
252
+
229
253
  class GoogleAppsCloudidentityDevicesV1ClientState
230
254
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
255
 
@@ -268,6 +292,12 @@ module Google
268
292
  include Google::Apis::Core::JsonObjectSupport
269
293
  end
270
294
 
295
+ class GoogleAppsCloudidentityDevicesV1EndpointVerificationSpecificAttributes
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
271
301
  class GoogleAppsCloudidentityDevicesV1ListClientStatesResponse
272
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
273
303
 
@@ -822,6 +852,36 @@ module Google
822
852
  end
823
853
  end
824
854
 
855
+ class GoogleAppsCloudidentityDevicesV1BrowserAttributes
856
+ # @private
857
+ class Representation < Google::Apis::Core::JsonRepresentation
858
+ property :chrome_browser_info, as: 'chromeBrowserInfo', class: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1BrowserInfo, decorator: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1BrowserInfo::Representation
859
+
860
+ property :chrome_profile_id, as: 'chromeProfileId'
861
+ property :last_profile_sync_time, as: 'lastProfileSyncTime'
862
+ end
863
+ end
864
+
865
+ class GoogleAppsCloudidentityDevicesV1BrowserInfo
866
+ # @private
867
+ class Representation < Google::Apis::Core::JsonRepresentation
868
+ property :browser_management_state, as: 'browserManagementState'
869
+ property :browser_version, as: 'browserVersion'
870
+ property :is_built_in_dns_client_enabled, as: 'isBuiltInDnsClientEnabled'
871
+ property :is_bulk_data_entry_analysis_enabled, as: 'isBulkDataEntryAnalysisEnabled'
872
+ property :is_chrome_cleanup_enabled, as: 'isChromeCleanupEnabled'
873
+ property :is_chrome_remote_desktop_app_blocked, as: 'isChromeRemoteDesktopAppBlocked'
874
+ property :is_file_download_analysis_enabled, as: 'isFileDownloadAnalysisEnabled'
875
+ property :is_file_upload_analysis_enabled, as: 'isFileUploadAnalysisEnabled'
876
+ property :is_realtime_url_check_enabled, as: 'isRealtimeUrlCheckEnabled'
877
+ property :is_security_event_analysis_enabled, as: 'isSecurityEventAnalysisEnabled'
878
+ property :is_site_isolation_enabled, as: 'isSiteIsolationEnabled'
879
+ property :is_third_party_blocking_enabled, as: 'isThirdPartyBlockingEnabled'
880
+ property :password_protection_warning_trigger, as: 'passwordProtectionWarningTrigger'
881
+ property :safe_browsing_protection_level, as: 'safeBrowsingProtectionLevel'
882
+ end
883
+ end
884
+
825
885
  class GoogleAppsCloudidentityDevicesV1CancelWipeDeviceMetadata
826
886
  # @private
827
887
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -864,6 +924,31 @@ module Google
864
924
  end
865
925
  end
866
926
 
927
+ class GoogleAppsCloudidentityDevicesV1CertificateAttributes
928
+ # @private
929
+ class Representation < Google::Apis::Core::JsonRepresentation
930
+ property :certificate_template, as: 'certificateTemplate', class: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1CertificateTemplate, decorator: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1CertificateTemplate::Representation
931
+
932
+ property :fingerprint, as: 'fingerprint'
933
+ property :issuer, as: 'issuer'
934
+ property :serial_number, as: 'serialNumber'
935
+ property :subject, as: 'subject'
936
+ property :thumbprint, as: 'thumbprint'
937
+ property :validation_state, as: 'validationState'
938
+ property :validity_expiration_time, as: 'validityExpirationTime'
939
+ property :validity_start_time, as: 'validityStartTime'
940
+ end
941
+ end
942
+
943
+ class GoogleAppsCloudidentityDevicesV1CertificateTemplate
944
+ # @private
945
+ class Representation < Google::Apis::Core::JsonRepresentation
946
+ property :id, as: 'id'
947
+ property :major_version, as: 'majorVersion'
948
+ property :minor_version, as: 'minorVersion'
949
+ end
950
+ end
951
+
867
952
  class GoogleAppsCloudidentityDevicesV1ClientState
868
953
  # @private
869
954
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -927,6 +1012,8 @@ module Google
927
1012
  property :enabled_developer_options, as: 'enabledDeveloperOptions'
928
1013
  property :enabled_usb_debugging, as: 'enabledUsbDebugging'
929
1014
  property :encryption_state, as: 'encryptionState'
1015
+ property :endpoint_verification_specific_attributes, as: 'endpointVerificationSpecificAttributes', class: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1EndpointVerificationSpecificAttributes, decorator: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1EndpointVerificationSpecificAttributes::Representation
1016
+
930
1017
  property :hostname, as: 'hostname'
931
1018
  property :imei, as: 'imei'
932
1019
  property :kernel_version, as: 'kernelVersion'
@@ -943,6 +1030,7 @@ module Google
943
1030
  property :release_version, as: 'releaseVersion'
944
1031
  property :security_patch_time, as: 'securityPatchTime'
945
1032
  property :serial_number, as: 'serialNumber'
1033
+ property :unified_device_id, as: 'unifiedDeviceId'
946
1034
  collection :wifi_mac_addresses, as: 'wifiMacAddresses'
947
1035
  end
948
1036
  end
@@ -963,6 +1051,17 @@ module Google
963
1051
  end
964
1052
  end
965
1053
 
1054
+ class GoogleAppsCloudidentityDevicesV1EndpointVerificationSpecificAttributes
1055
+ # @private
1056
+ class Representation < Google::Apis::Core::JsonRepresentation
1057
+ hash :additional_signals, as: 'additionalSignals'
1058
+ collection :browser_attributes, as: 'browserAttributes', class: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1BrowserAttributes, decorator: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1BrowserAttributes::Representation
1059
+
1060
+ collection :certificate_attributes, as: 'certificateAttributes', class: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1CertificateAttributes, decorator: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1CertificateAttributes::Representation
1061
+
1062
+ end
1063
+ end
1064
+
966
1065
  class GoogleAppsCloudidentityDevicesV1ListClientStatesResponse
967
1066
  # @private
968
1067
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudidentity_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.43.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-19 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.41.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.43.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1
63
63
  post_install_message:
64
64
  rdoc_options: []