google-apis-cloudidentity_v1 0.33.0 → 0.34.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: 517704d853510f1ba3396d3b38f49294a137a1a3e5c126b18d96e3b095b200a3
4
- data.tar.gz: f3cd5c1c744ec762388ed1c8097443c7937850a89868352cde35e323527278f7
3
+ metadata.gz: 554dde72fe12f126bed66fe396f43507cd64a91df2a96c41873935a2a160ff44
4
+ data.tar.gz: 4f8313287f536c306ef35c50c445becccededb62f02931b2b51a89df695e5f1a
5
5
  SHA512:
6
- metadata.gz: 942b5b3b71b1df34215d1426fec8b6f90762344ae438c8cab11a216d1119d362bacc1cf1c6403ec42dd7c815d2acb63d8e955cd75f0a1048f5e6cbc51c71b245
7
- data.tar.gz: be883d07eeda905d6986a7fe740bff5112ecbd5f7de1107363e5b2cdb846901407fe431aa5a53e2d7f69c5bcb71c283ae4dc12b7e3e3b5d1ee4e37ccf20163f7
6
+ metadata.gz: 8cf28b1990f364497a324937c4c820d8632e5db86b9784e9cce82a783097389d6674adce6fb270e9dd9b5ecf67474d43c364d12fcb31774e3287fc23701f54d0
7
+ data.tar.gz: de032f6bf820bec2b96a27c207a5b8fdc8dd71af3ae78055cd6a71cfe038180aea136b870fa9bace177b4d3b890cab170d888034e0f9906d5e0ffc06c0f0674e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudidentity_v1
2
2
 
3
+ ### v0.34.0 (2023-06-11)
4
+
5
+ * Regenerated from discovery document revision 20230606
6
+
3
7
  ### v0.33.0 (2023-03-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20230321
@@ -417,12 +417,24 @@ module Google
417
417
  class GoogleAppsCloudidentityDevicesV1AndroidAttributes
418
418
  include Google::Apis::Core::Hashable
419
419
 
420
+ # Whether the device passes Android CTS compliance.
421
+ # Corresponds to the JSON property `ctsProfileMatch`
422
+ # @return [Boolean]
423
+ attr_accessor :cts_profile_match
424
+ alias_method :cts_profile_match?, :cts_profile_match
425
+
420
426
  # Whether applications from unknown sources can be installed on device.
421
427
  # Corresponds to the JSON property `enabledUnknownSources`
422
428
  # @return [Boolean]
423
429
  attr_accessor :enabled_unknown_sources
424
430
  alias_method :enabled_unknown_sources?, :enabled_unknown_sources
425
431
 
432
+ # Whether any potentially harmful apps were detected on the device.
433
+ # Corresponds to the JSON property `hasPotentiallyHarmfulApps`
434
+ # @return [Boolean]
435
+ attr_accessor :has_potentially_harmful_apps
436
+ alias_method :has_potentially_harmful_apps?, :has_potentially_harmful_apps
437
+
426
438
  # Whether this account is on an owner/primary profile. For phones, only true for
427
439
  # owner profiles. Android 4+ devices can have secondary or restricted user
428
440
  # profiles.
@@ -444,16 +456,32 @@ module Google
444
456
  attr_accessor :supports_work_profile
445
457
  alias_method :supports_work_profile?, :supports_work_profile
446
458
 
459
+ # Whether Android verified boot status is GREEN.
460
+ # Corresponds to the JSON property `verifiedBoot`
461
+ # @return [Boolean]
462
+ attr_accessor :verified_boot
463
+ alias_method :verified_boot?, :verified_boot
464
+
465
+ # Whether Google Play Protect Verify Apps is enabled.
466
+ # Corresponds to the JSON property `verifyAppsEnabled`
467
+ # @return [Boolean]
468
+ attr_accessor :verify_apps_enabled
469
+ alias_method :verify_apps_enabled?, :verify_apps_enabled
470
+
447
471
  def initialize(**args)
448
472
  update!(**args)
449
473
  end
450
474
 
451
475
  # Update properties of this object
452
476
  def update!(**args)
477
+ @cts_profile_match = args[:cts_profile_match] if args.key?(:cts_profile_match)
453
478
  @enabled_unknown_sources = args[:enabled_unknown_sources] if args.key?(:enabled_unknown_sources)
479
+ @has_potentially_harmful_apps = args[:has_potentially_harmful_apps] if args.key?(:has_potentially_harmful_apps)
454
480
  @owner_profile_account = args[:owner_profile_account] if args.key?(:owner_profile_account)
455
481
  @ownership_privilege = args[:ownership_privilege] if args.key?(:ownership_privilege)
456
482
  @supports_work_profile = args[:supports_work_profile] if args.key?(:supports_work_profile)
483
+ @verified_boot = args[:verified_boot] if args.key?(:verified_boot)
484
+ @verify_apps_enabled = args[:verify_apps_enabled] if args.key?(:verify_apps_enabled)
457
485
  end
458
486
  end
459
487
 
@@ -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.33.0"
19
+ GEM_VERSION = "0.34.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230321"
25
+ REVISION = "20230606"
26
26
  end
27
27
  end
28
28
  end
@@ -769,10 +769,14 @@ module Google
769
769
  class GoogleAppsCloudidentityDevicesV1AndroidAttributes
770
770
  # @private
771
771
  class Representation < Google::Apis::Core::JsonRepresentation
772
+ property :cts_profile_match, as: 'ctsProfileMatch'
772
773
  property :enabled_unknown_sources, as: 'enabledUnknownSources'
774
+ property :has_potentially_harmful_apps, as: 'hasPotentiallyHarmfulApps'
773
775
  property :owner_profile_account, as: 'ownerProfileAccount'
774
776
  property :ownership_privilege, as: 'ownershipPrivilege'
775
777
  property :supports_work_profile, as: 'supportsWorkProfile'
778
+ property :verified_boot, as: 'verifiedBoot'
779
+ property :verify_apps_enabled, as: 'verifyAppsEnabled'
776
780
  end
777
781
  end
778
782
 
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.33.0
4
+ version: 0.34.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: 2023-03-26 00:00:00.000000000 Z
11
+ date: 2023-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.33.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.34.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: []