google-apis-cloudidentity_v1beta1 0.38.0 → 0.39.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: e8c8b054740e801035b7c9598268cbdf02ad72a8a8c805d26dfbe1ba8338ff66
4
- data.tar.gz: 6652b8e4e8cb2a8c8a7879f1fdb92e9c514cdfafe641ded8adbb5943104cb1bc
3
+ metadata.gz: d2571a47e577b0491ec3c809aa3cd7180259c63866a7b8b47a5d7f4d05330f4c
4
+ data.tar.gz: 8cc811f19bd2d68caa1b054b4c4cd46afb4402caf5ad9f144f1673eec655f3d6
5
5
  SHA512:
6
- metadata.gz: b71afb876041f2a4ad96f2048e9c25e0b0b9e7d33fdb630e3f95eeff28b9de2fada46e10a5849cb600c49ae154b5d50b699209a73ca2e7d56a9c918c2ee7898a
7
- data.tar.gz: c0b3db160cc83e8f4ebd2ed95188ca5904c96310ab7b558a7508c80d2bba4ae83efb205239835dd49b22686e53519a58d2cc05968c63cd949685a0ded962df9a
6
+ metadata.gz: 5909ddc731b9fda1ab655a6e5e1787e0d5106c0762010c9217679553b77e7e87a77907aa719d2165feaea04fc1dcb3e14d099845bfae9f2d671b0e68cc833bfb
7
+ data.tar.gz: 0207d87bbd318fb7428d02d84d216d40a04b72e5b32c1b7642ff0b296cd256648521ad2fbeb0d4a7078e3a0d370df9d3f0fa03f2da356652d094d4814f40ced7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.39.0 (2023-05-28)
4
+
5
+ * Regenerated from discovery document revision 20230523
6
+
3
7
  ### v0.38.0 (2023-03-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20230321
@@ -60,12 +60,24 @@ module Google
60
60
  class AndroidAttributes
61
61
  include Google::Apis::Core::Hashable
62
62
 
63
+ # Whether the device passes Android CTS compliance.
64
+ # Corresponds to the JSON property `ctsProfileMatch`
65
+ # @return [Boolean]
66
+ attr_accessor :cts_profile_match
67
+ alias_method :cts_profile_match?, :cts_profile_match
68
+
63
69
  # Whether applications from unknown sources can be installed on device.
64
70
  # Corresponds to the JSON property `enabledUnknownSources`
65
71
  # @return [Boolean]
66
72
  attr_accessor :enabled_unknown_sources
67
73
  alias_method :enabled_unknown_sources?, :enabled_unknown_sources
68
74
 
75
+ # Whether any potentially harmful apps were detected on the device.
76
+ # Corresponds to the JSON property `hasPotentiallyHarmfulApps`
77
+ # @return [Boolean]
78
+ attr_accessor :has_potentially_harmful_apps
79
+ alias_method :has_potentially_harmful_apps?, :has_potentially_harmful_apps
80
+
69
81
  # Whether this account is on an owner/primary profile. For phones, only true for
70
82
  # owner profiles. Android 4+ devices can have secondary or restricted user
71
83
  # profiles.
@@ -87,16 +99,32 @@ module Google
87
99
  attr_accessor :supports_work_profile
88
100
  alias_method :supports_work_profile?, :supports_work_profile
89
101
 
102
+ # Whether Android verified boot status is GREEN.
103
+ # Corresponds to the JSON property `verifiedBoot`
104
+ # @return [Boolean]
105
+ attr_accessor :verified_boot
106
+ alias_method :verified_boot?, :verified_boot
107
+
108
+ # Whether Google Play Protect Verify Apps is enabled.
109
+ # Corresponds to the JSON property `verifyAppsEnabled`
110
+ # @return [Boolean]
111
+ attr_accessor :verify_apps_enabled
112
+ alias_method :verify_apps_enabled?, :verify_apps_enabled
113
+
90
114
  def initialize(**args)
91
115
  update!(**args)
92
116
  end
93
117
 
94
118
  # Update properties of this object
95
119
  def update!(**args)
120
+ @cts_profile_match = args[:cts_profile_match] if args.key?(:cts_profile_match)
96
121
  @enabled_unknown_sources = args[:enabled_unknown_sources] if args.key?(:enabled_unknown_sources)
122
+ @has_potentially_harmful_apps = args[:has_potentially_harmful_apps] if args.key?(:has_potentially_harmful_apps)
97
123
  @owner_profile_account = args[:owner_profile_account] if args.key?(:owner_profile_account)
98
124
  @ownership_privilege = args[:ownership_privilege] if args.key?(:ownership_privilege)
99
125
  @supports_work_profile = args[:supports_work_profile] if args.key?(:supports_work_profile)
126
+ @verified_boot = args[:verified_boot] if args.key?(:verified_boot)
127
+ @verify_apps_enabled = args[:verify_apps_enabled] if args.key?(:verify_apps_enabled)
100
128
  end
101
129
  end
102
130
 
@@ -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.38.0"
19
+ GEM_VERSION = "0.39.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 = "20230523"
26
26
  end
27
27
  end
28
28
  end
@@ -710,10 +710,14 @@ module Google
710
710
  class AndroidAttributes
711
711
  # @private
712
712
  class Representation < Google::Apis::Core::JsonRepresentation
713
+ property :cts_profile_match, as: 'ctsProfileMatch'
713
714
  property :enabled_unknown_sources, as: 'enabledUnknownSources'
715
+ property :has_potentially_harmful_apps, as: 'hasPotentiallyHarmfulApps'
714
716
  property :owner_profile_account, as: 'ownerProfileAccount'
715
717
  property :ownership_privilege, as: 'ownershipPrivilege'
716
718
  property :supports_work_profile, as: 'supportsWorkProfile'
719
+ property :verified_boot, as: 'verifiedBoot'
720
+ property :verify_apps_enabled, as: 'verifyAppsEnabled'
717
721
  end
718
722
  end
719
723
 
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.38.0
4
+ version: 0.39.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-05-28 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.39.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: []