google-apis-cloudidentity_v1beta1 0.44.0 → 0.46.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d61d2104cdb0338daba9406d50c84d87e4cd176e574cc1e06aee7ee3ac785ea1
4
- data.tar.gz: bc72da98faa050a7570f2d662a3eca4255d6358d99733fe3aa45967a8b3f5f0c
3
+ metadata.gz: 378e24e58200a30b9bff02d1ca79715f599c340b3fbf7d172a89be34138056a9
4
+ data.tar.gz: 4f978c949207ceda3cd69710649af23d90519ed36828b4dec5edd5e535a4a71d
5
5
  SHA512:
6
- metadata.gz: bbd7c9fd69dacd344bdcfd10799ffe286216c20a574699a31ce76ad7c3717c748853bcc690d521a07c31cb4659326e3cd7fe9358a2d3776ce7876dabd2666bf9
7
- data.tar.gz: 9ad0c832f60300759c6cd595510e7d36dacd5ea7dbd14faa00ad5a915739c26f4e3ea52c221ec8fb522adfff902b84acb33d76a22e464800475f8d21b3a0d8a8
6
+ metadata.gz: 18304d3d546b35588a68006dbbaa91ffe8d7565ed54e50bda79052608c0fb5980cc849ac765f1b8a6957e4b15475d1ca47b7a7d669202a839c719e947fa9d65d
7
+ data.tar.gz: 7b41a857d741b19d3b089d343ae09c1ef3efcc70160ae2d64bc5e739d6da479ab3fdb4055861f7152752b7788a834e862108aebf8cdeceb9b2afe694fba43b36
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.46.0 (2024-02-23)
4
+
5
+ * Regenerated from discovery document revision 20240206
6
+ * Regenerated using generator version 0.13.1
7
+
8
+ ### v0.45.0 (2024-01-22)
9
+
10
+ * Regenerated using generator version 0.13.0
11
+
3
12
  ### v0.44.0 (2024-01-07)
4
13
 
5
14
  * Regenerated from discovery document revision 20240101
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/identity/) may provide guid
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -214,6 +214,165 @@ module Google
214
214
  end
215
215
  end
216
216
 
217
+ # Contains information about browser profiles reported by the Endpoint
218
+ # Verification extension.
219
+ class BrowserAttributes
220
+ include Google::Apis::Core::Hashable
221
+
222
+ # Browser-specific fields reported by the Endpoint Verification extension. LINT.
223
+ # IfChange
224
+ # Corresponds to the JSON property `chromeBrowserInfo`
225
+ # @return [Google::Apis::CloudidentityV1beta1::BrowserInfo]
226
+ attr_accessor :chrome_browser_info
227
+
228
+ # Chrome profile ID that is exposed by the Chrome API. It is unique for each
229
+ # device.
230
+ # Corresponds to the JSON property `chromeProfileId`
231
+ # @return [String]
232
+ attr_accessor :chrome_profile_id
233
+
234
+ # Timestamp in milliseconds since Epoch when the profile/gcm id was last synced.
235
+ # Corresponds to the JSON property `lastProfileSyncTime`
236
+ # @return [String]
237
+ attr_accessor :last_profile_sync_time
238
+
239
+ def initialize(**args)
240
+ update!(**args)
241
+ end
242
+
243
+ # Update properties of this object
244
+ def update!(**args)
245
+ @chrome_browser_info = args[:chrome_browser_info] if args.key?(:chrome_browser_info)
246
+ @chrome_profile_id = args[:chrome_profile_id] if args.key?(:chrome_profile_id)
247
+ @last_profile_sync_time = args[:last_profile_sync_time] if args.key?(:last_profile_sync_time)
248
+ end
249
+ end
250
+
251
+ # Browser-specific fields reported by the Endpoint Verification extension. LINT.
252
+ # IfChange
253
+ class BrowserInfo
254
+ include Google::Apis::Core::Hashable
255
+
256
+ # Output only. Browser's management state.
257
+ # Corresponds to the JSON property `browserManagementState`
258
+ # @return [String]
259
+ attr_accessor :browser_management_state
260
+
261
+ # Version of the request initiating browser.
262
+ # Corresponds to the JSON property `browserVersion`
263
+ # @return [String]
264
+ attr_accessor :browser_version
265
+
266
+ # Current state of [built-in DNS client](https://chromeenterprise.google/
267
+ # policies/#BuiltInDnsClientEnabled).
268
+ # Corresponds to the JSON property `isBuiltInDnsClientEnabled`
269
+ # @return [Boolean]
270
+ attr_accessor :is_built_in_dns_client_enabled
271
+ alias_method :is_built_in_dns_client_enabled?, :is_built_in_dns_client_enabled
272
+
273
+ # Current state of [bulk data analysis](https://chromeenterprise.google/policies/
274
+ # #OnBulkDataEntryEnterpriseConnector). Set to true if provider list from Chrome
275
+ # is non-empty.
276
+ # Corresponds to the JSON property `isBulkDataEntryAnalysisEnabled`
277
+ # @return [Boolean]
278
+ attr_accessor :is_bulk_data_entry_analysis_enabled
279
+ alias_method :is_bulk_data_entry_analysis_enabled?, :is_bulk_data_entry_analysis_enabled
280
+
281
+ # Current state of [Chrome Cleanup](https://chromeenterprise.google/policies/#
282
+ # ChromeCleanupEnabled).
283
+ # Corresponds to the JSON property `isChromeCleanupEnabled`
284
+ # @return [Boolean]
285
+ attr_accessor :is_chrome_cleanup_enabled
286
+ alias_method :is_chrome_cleanup_enabled?, :is_chrome_cleanup_enabled
287
+
288
+ # Current state of [Chrome Remote Desktop app](https://chromeenterprise.google/
289
+ # policies/#URLBlocklist).
290
+ # Corresponds to the JSON property `isChromeRemoteDesktopAppBlocked`
291
+ # @return [Boolean]
292
+ attr_accessor :is_chrome_remote_desktop_app_blocked
293
+ alias_method :is_chrome_remote_desktop_app_blocked?, :is_chrome_remote_desktop_app_blocked
294
+
295
+ # Current state of [file download analysis](https://chromeenterprise.google/
296
+ # policies/#OnFileDownloadedEnterpriseConnector). Set to true if provider list
297
+ # from Chrome is non-empty.
298
+ # Corresponds to the JSON property `isFileDownloadAnalysisEnabled`
299
+ # @return [Boolean]
300
+ attr_accessor :is_file_download_analysis_enabled
301
+ alias_method :is_file_download_analysis_enabled?, :is_file_download_analysis_enabled
302
+
303
+ # Current state of [file upload analysis](https://chromeenterprise.google/
304
+ # policies/#OnFileAttachedEnterpriseConnector). Set to true if provider list
305
+ # from Chrome is non-empty.
306
+ # Corresponds to the JSON property `isFileUploadAnalysisEnabled`
307
+ # @return [Boolean]
308
+ attr_accessor :is_file_upload_analysis_enabled
309
+ alias_method :is_file_upload_analysis_enabled?, :is_file_upload_analysis_enabled
310
+
311
+ # Current state of [real-time URL check](https://chromeenterprise.google/
312
+ # policies/#EnterpriseRealTimeUrlCheckMode). Set to true if provider list from
313
+ # Chrome is non-empty.
314
+ # Corresponds to the JSON property `isRealtimeUrlCheckEnabled`
315
+ # @return [Boolean]
316
+ attr_accessor :is_realtime_url_check_enabled
317
+ alias_method :is_realtime_url_check_enabled?, :is_realtime_url_check_enabled
318
+
319
+ # Current state of [security event analysis](https://chromeenterprise.google/
320
+ # policies/#OnSecurityEventEnterpriseConnector). Set to true if provider list
321
+ # from Chrome is non-empty.
322
+ # Corresponds to the JSON property `isSecurityEventAnalysisEnabled`
323
+ # @return [Boolean]
324
+ attr_accessor :is_security_event_analysis_enabled
325
+ alias_method :is_security_event_analysis_enabled?, :is_security_event_analysis_enabled
326
+
327
+ # Current state of [site isolation](https://chromeenterprise.google/policies/?
328
+ # policy=IsolateOrigins).
329
+ # Corresponds to the JSON property `isSiteIsolationEnabled`
330
+ # @return [Boolean]
331
+ attr_accessor :is_site_isolation_enabled
332
+ alias_method :is_site_isolation_enabled?, :is_site_isolation_enabled
333
+
334
+ # Current state of [third-party blocking](https://chromeenterprise.google/
335
+ # policies/#ThirdPartyBlockingEnabled).
336
+ # Corresponds to the JSON property `isThirdPartyBlockingEnabled`
337
+ # @return [Boolean]
338
+ attr_accessor :is_third_party_blocking_enabled
339
+ alias_method :is_third_party_blocking_enabled?, :is_third_party_blocking_enabled
340
+
341
+ # Current state of [password protection trigger](https://chromeenterprise.google/
342
+ # policies/#PasswordProtectionWarningTrigger).
343
+ # Corresponds to the JSON property `passwordProtectionWarningTrigger`
344
+ # @return [String]
345
+ attr_accessor :password_protection_warning_trigger
346
+
347
+ # Current state of [Safe Browsing protection level](https://chromeenterprise.
348
+ # google/policies/#SafeBrowsingProtectionLevel).
349
+ # Corresponds to the JSON property `safeBrowsingProtectionLevel`
350
+ # @return [String]
351
+ attr_accessor :safe_browsing_protection_level
352
+
353
+ def initialize(**args)
354
+ update!(**args)
355
+ end
356
+
357
+ # Update properties of this object
358
+ def update!(**args)
359
+ @browser_management_state = args[:browser_management_state] if args.key?(:browser_management_state)
360
+ @browser_version = args[:browser_version] if args.key?(:browser_version)
361
+ @is_built_in_dns_client_enabled = args[:is_built_in_dns_client_enabled] if args.key?(:is_built_in_dns_client_enabled)
362
+ @is_bulk_data_entry_analysis_enabled = args[:is_bulk_data_entry_analysis_enabled] if args.key?(:is_bulk_data_entry_analysis_enabled)
363
+ @is_chrome_cleanup_enabled = args[:is_chrome_cleanup_enabled] if args.key?(:is_chrome_cleanup_enabled)
364
+ @is_chrome_remote_desktop_app_blocked = args[:is_chrome_remote_desktop_app_blocked] if args.key?(:is_chrome_remote_desktop_app_blocked)
365
+ @is_file_download_analysis_enabled = args[:is_file_download_analysis_enabled] if args.key?(:is_file_download_analysis_enabled)
366
+ @is_file_upload_analysis_enabled = args[:is_file_upload_analysis_enabled] if args.key?(:is_file_upload_analysis_enabled)
367
+ @is_realtime_url_check_enabled = args[:is_realtime_url_check_enabled] if args.key?(:is_realtime_url_check_enabled)
368
+ @is_security_event_analysis_enabled = args[:is_security_event_analysis_enabled] if args.key?(:is_security_event_analysis_enabled)
369
+ @is_site_isolation_enabled = args[:is_site_isolation_enabled] if args.key?(:is_site_isolation_enabled)
370
+ @is_third_party_blocking_enabled = args[:is_third_party_blocking_enabled] if args.key?(:is_third_party_blocking_enabled)
371
+ @password_protection_warning_trigger = args[:password_protection_warning_trigger] if args.key?(:password_protection_warning_trigger)
372
+ @safe_browsing_protection_level = args[:safe_browsing_protection_level] if args.key?(:safe_browsing_protection_level)
373
+ end
374
+ end
375
+
217
376
  # Request to cancel sent invitation for target email in UserInvitation.
218
377
  class CancelUserInvitationRequest
219
378
  include Google::Apis::Core::Hashable
@@ -740,8 +899,8 @@ module Google
740
899
  # @return [String]
741
900
  attr_accessor :encryption_state
742
901
 
743
- # Resource representing the Endpoint Verification-specific attributes of a
744
- # Device. https://cloud.google.com/endpoint-verification/docs/overview
902
+ # Resource representing the [Endpoint Verification-specific attributes](https://
903
+ # cloud.google.com/endpoint-verification/docs/device-information) of a device.
745
904
  # Corresponds to the JSON property `endpointVerificationSpecificAttributes`
746
905
  # @return [Google::Apis::CloudidentityV1beta1::EndpointVerificationSpecificAttributes]
747
906
  attr_accessor :endpoint_verification_specific_attributes
@@ -1060,11 +1219,25 @@ module Google
1060
1219
  end
1061
1220
  end
1062
1221
 
1063
- # Resource representing the Endpoint Verification-specific attributes of a
1064
- # Device. https://cloud.google.com/endpoint-verification/docs/overview
1222
+ # Resource representing the [Endpoint Verification-specific attributes](https://
1223
+ # cloud.google.com/endpoint-verification/docs/device-information) of a device.
1065
1224
  class EndpointVerificationSpecificAttributes
1066
1225
  include Google::Apis::Core::Hashable
1067
1226
 
1227
+ # Additional signals reported by Endpoint Verification. It includes the
1228
+ # following attributes: 1. Non-configurable attributes: hotfixes, av_installed,
1229
+ # av_enabled, windows_domain_name, is_os_native_firewall_enabled, and
1230
+ # is_secure_boot_enabled. 2. Configurable attributes: file_config,
1231
+ # registry_config, and plist_config.
1232
+ # Corresponds to the JSON property `additionalSignals`
1233
+ # @return [Hash<String,Object>]
1234
+ attr_accessor :additional_signals
1235
+
1236
+ # Details of browser profiles reported by Endpoint Verification.
1237
+ # Corresponds to the JSON property `browserAttributes`
1238
+ # @return [Array<Google::Apis::CloudidentityV1beta1::BrowserAttributes>]
1239
+ attr_accessor :browser_attributes
1240
+
1068
1241
  # Details of certificates.
1069
1242
  # Corresponds to the JSON property `certificateAttributes`
1070
1243
  # @return [Array<Google::Apis::CloudidentityV1beta1::CertificateAttributes>]
@@ -1076,6 +1249,8 @@ module Google
1076
1249
 
1077
1250
  # Update properties of this object
1078
1251
  def update!(**args)
1252
+ @additional_signals = args[:additional_signals] if args.key?(:additional_signals)
1253
+ @browser_attributes = args[:browser_attributes] if args.key?(:browser_attributes)
1079
1254
  @certificate_attributes = args[:certificate_attributes] if args.key?(:certificate_attributes)
1080
1255
  end
1081
1256
  end
@@ -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.44.0"
19
+ GEM_VERSION = "0.46.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.12.0"
22
+ GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240101"
25
+ REVISION = "20240206"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,18 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class BrowserAttributes
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
73
+ class BrowserInfo
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
67
79
  class CancelUserInvitationRequest
68
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
81
 
@@ -751,6 +763,36 @@ module Google
751
763
  end
752
764
  end
753
765
 
766
+ class BrowserAttributes
767
+ # @private
768
+ class Representation < Google::Apis::Core::JsonRepresentation
769
+ property :chrome_browser_info, as: 'chromeBrowserInfo', class: Google::Apis::CloudidentityV1beta1::BrowserInfo, decorator: Google::Apis::CloudidentityV1beta1::BrowserInfo::Representation
770
+
771
+ property :chrome_profile_id, as: 'chromeProfileId'
772
+ property :last_profile_sync_time, as: 'lastProfileSyncTime'
773
+ end
774
+ end
775
+
776
+ class BrowserInfo
777
+ # @private
778
+ class Representation < Google::Apis::Core::JsonRepresentation
779
+ property :browser_management_state, as: 'browserManagementState'
780
+ property :browser_version, as: 'browserVersion'
781
+ property :is_built_in_dns_client_enabled, as: 'isBuiltInDnsClientEnabled'
782
+ property :is_bulk_data_entry_analysis_enabled, as: 'isBulkDataEntryAnalysisEnabled'
783
+ property :is_chrome_cleanup_enabled, as: 'isChromeCleanupEnabled'
784
+ property :is_chrome_remote_desktop_app_blocked, as: 'isChromeRemoteDesktopAppBlocked'
785
+ property :is_file_download_analysis_enabled, as: 'isFileDownloadAnalysisEnabled'
786
+ property :is_file_upload_analysis_enabled, as: 'isFileUploadAnalysisEnabled'
787
+ property :is_realtime_url_check_enabled, as: 'isRealtimeUrlCheckEnabled'
788
+ property :is_security_event_analysis_enabled, as: 'isSecurityEventAnalysisEnabled'
789
+ property :is_site_isolation_enabled, as: 'isSiteIsolationEnabled'
790
+ property :is_third_party_blocking_enabled, as: 'isThirdPartyBlockingEnabled'
791
+ property :password_protection_warning_trigger, as: 'passwordProtectionWarningTrigger'
792
+ property :safe_browsing_protection_level, as: 'safeBrowsingProtectionLevel'
793
+ end
794
+ end
795
+
754
796
  class CancelUserInvitationRequest
755
797
  # @private
756
798
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -978,6 +1020,9 @@ module Google
978
1020
  class EndpointVerificationSpecificAttributes
979
1021
  # @private
980
1022
  class Representation < Google::Apis::Core::JsonRepresentation
1023
+ hash :additional_signals, as: 'additionalSignals'
1024
+ collection :browser_attributes, as: 'browserAttributes', class: Google::Apis::CloudidentityV1beta1::BrowserAttributes, decorator: Google::Apis::CloudidentityV1beta1::BrowserAttributes::Representation
1025
+
981
1026
  collection :certificate_attributes, as: 'certificateAttributes', class: Google::Apis::CloudidentityV1beta1::CertificateAttributes, decorator: Google::Apis::CloudidentityV1beta1::CertificateAttributes::Representation
982
1027
 
983
1028
  end
@@ -32,6 +32,8 @@ module Google
32
32
  #
33
33
  # @see https://cloud.google.com/identity/
34
34
  class CloudIdentityService < Google::Apis::Core::BaseService
35
+ DEFAULT_ENDPOINT_TEMPLATE = "https://cloudidentity.$UNIVERSE_DOMAIN$/"
36
+
35
37
  # @return [String]
36
38
  # API key. Your API key identifies your project and provides you with API access,
37
39
  # quota, and reports. Required unless you provide an OAuth 2.0 token.
@@ -43,7 +45,7 @@ module Google
43
45
  attr_accessor :quota_user
44
46
 
45
47
  def initialize
46
- super('https://cloudidentity.googleapis.com/', '',
48
+ super(DEFAULT_ENDPOINT_TEMPLATE, '',
47
49
  client_name: 'google-apis-cloudidentity_v1beta1',
48
50
  client_version: Google::Apis::CloudidentityV1beta1::GEM_VERSION)
49
51
  @batch_path = 'batch'
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.44.0
4
+ version: 0.46.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-01-07 00:00:00.000000000 Z
11
+ date: 2024-02-25 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.11.0
19
+ version: 0.14.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.11.0
29
+ version: 0.14.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.44.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.46.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: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Identity API V1beta1