google-apis-cloudidentity_v1beta1 0.39.0 → 0.40.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: d2571a47e577b0491ec3c809aa3cd7180259c63866a7b8b47a5d7f4d05330f4c
4
- data.tar.gz: 8cc811f19bd2d68caa1b054b4c4cd46afb4402caf5ad9f144f1673eec655f3d6
3
+ metadata.gz: fcd194d563d4b0dae948260ce2bd644d8702229ce1e620ac5241f1aaac1e2830
4
+ data.tar.gz: b0839b6f84583cd8b26b61eab7f180ffeb038534a704b2b4c7f2dc6090de5987
5
5
  SHA512:
6
- metadata.gz: 5909ddc731b9fda1ab655a6e5e1787e0d5106c0762010c9217679553b77e7e87a77907aa719d2165feaea04fc1dcb3e14d099845bfae9f2d671b0e68cc833bfb
7
- data.tar.gz: 0207d87bbd318fb7428d02d84d216d40a04b72e5b32c1b7642ff0b296cd256648521ad2fbeb0d4a7078e3a0d370df9d3f0fa03f2da356652d094d4814f40ced7
6
+ metadata.gz: ca8d4f69d78b5c7ebf9d0b28c3d26b61163a4bcf016f6cd87c67939f6f6f72d25bafda276d8216f46c6141bf059e2c823c47ab66df983aee68cefae085a47853
7
+ data.tar.gz: 337c0e3f5e3c8311ba033e3df2d9fe2e74ab47549479dea403d3b99fabf9e09eeac66f0779ebf4b6b3d1d9814b3ac6f6e57a5be6eda9ff19784bdabdaceaae6c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.40.0 (2023-06-11)
4
+
5
+ * Regenerated from discovery document revision 20230606
6
+
3
7
  ### v0.39.0 (2023-05-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20230523
@@ -1165,12 +1165,24 @@ module Google
1165
1165
  class GoogleAppsCloudidentityDevicesV1AndroidAttributes
1166
1166
  include Google::Apis::Core::Hashable
1167
1167
 
1168
+ # Whether the device passes Android CTS compliance.
1169
+ # Corresponds to the JSON property `ctsProfileMatch`
1170
+ # @return [Boolean]
1171
+ attr_accessor :cts_profile_match
1172
+ alias_method :cts_profile_match?, :cts_profile_match
1173
+
1168
1174
  # Whether applications from unknown sources can be installed on device.
1169
1175
  # Corresponds to the JSON property `enabledUnknownSources`
1170
1176
  # @return [Boolean]
1171
1177
  attr_accessor :enabled_unknown_sources
1172
1178
  alias_method :enabled_unknown_sources?, :enabled_unknown_sources
1173
1179
 
1180
+ # Whether any potentially harmful apps were detected on the device.
1181
+ # Corresponds to the JSON property `hasPotentiallyHarmfulApps`
1182
+ # @return [Boolean]
1183
+ attr_accessor :has_potentially_harmful_apps
1184
+ alias_method :has_potentially_harmful_apps?, :has_potentially_harmful_apps
1185
+
1174
1186
  # Whether this account is on an owner/primary profile. For phones, only true for
1175
1187
  # owner profiles. Android 4+ devices can have secondary or restricted user
1176
1188
  # profiles.
@@ -1192,16 +1204,32 @@ module Google
1192
1204
  attr_accessor :supports_work_profile
1193
1205
  alias_method :supports_work_profile?, :supports_work_profile
1194
1206
 
1207
+ # Whether Android verified boot status is GREEN.
1208
+ # Corresponds to the JSON property `verifiedBoot`
1209
+ # @return [Boolean]
1210
+ attr_accessor :verified_boot
1211
+ alias_method :verified_boot?, :verified_boot
1212
+
1213
+ # Whether Google Play Protect Verify Apps is enabled.
1214
+ # Corresponds to the JSON property `verifyAppsEnabled`
1215
+ # @return [Boolean]
1216
+ attr_accessor :verify_apps_enabled
1217
+ alias_method :verify_apps_enabled?, :verify_apps_enabled
1218
+
1195
1219
  def initialize(**args)
1196
1220
  update!(**args)
1197
1221
  end
1198
1222
 
1199
1223
  # Update properties of this object
1200
1224
  def update!(**args)
1225
+ @cts_profile_match = args[:cts_profile_match] if args.key?(:cts_profile_match)
1201
1226
  @enabled_unknown_sources = args[:enabled_unknown_sources] if args.key?(:enabled_unknown_sources)
1227
+ @has_potentially_harmful_apps = args[:has_potentially_harmful_apps] if args.key?(:has_potentially_harmful_apps)
1202
1228
  @owner_profile_account = args[:owner_profile_account] if args.key?(:owner_profile_account)
1203
1229
  @ownership_privilege = args[:ownership_privilege] if args.key?(:ownership_privilege)
1204
1230
  @supports_work_profile = args[:supports_work_profile] if args.key?(:supports_work_profile)
1231
+ @verified_boot = args[:verified_boot] if args.key?(:verified_boot)
1232
+ @verify_apps_enabled = args[:verify_apps_enabled] if args.key?(:verify_apps_enabled)
1205
1233
  end
1206
1234
  end
1207
1235
 
@@ -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.39.0"
19
+ GEM_VERSION = "0.40.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 = "20230523"
25
+ REVISION = "20230606"
26
26
  end
27
27
  end
28
28
  end
@@ -1011,10 +1011,14 @@ module Google
1011
1011
  class GoogleAppsCloudidentityDevicesV1AndroidAttributes
1012
1012
  # @private
1013
1013
  class Representation < Google::Apis::Core::JsonRepresentation
1014
+ property :cts_profile_match, as: 'ctsProfileMatch'
1014
1015
  property :enabled_unknown_sources, as: 'enabledUnknownSources'
1016
+ property :has_potentially_harmful_apps, as: 'hasPotentiallyHarmfulApps'
1015
1017
  property :owner_profile_account, as: 'ownerProfileAccount'
1016
1018
  property :ownership_privilege, as: 'ownershipPrivilege'
1017
1019
  property :supports_work_profile, as: 'supportsWorkProfile'
1020
+ property :verified_boot, as: 'verifiedBoot'
1021
+ property :verify_apps_enabled, as: 'verifyAppsEnabled'
1018
1022
  end
1019
1023
  end
1020
1024
 
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.39.0
4
+ version: 0.40.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-05-28 00:00:00.000000000 Z
11
+ date: 2023-06-18 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.39.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.40.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: []