google-apis-cloudidentity_v1beta1 0.39.0 → 0.41.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17e3cd0daaecc47a1590d3f6940b1716928f5d5ac8e2b8b37694d0e8b5ecfd39
|
4
|
+
data.tar.gz: 12d2c1a5da8cebc6a6f16b606cf3fe6f8f337081881fafb02bcc310a9821a268
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6342bee48e89e82f6be85c66adc45ba975183e4b12163edf1ec81755733bfa1bf8e8f6a5bd64e865d522a4b5350ab525ff25920158d59d7b33dc0933d0c5f72
|
7
|
+
data.tar.gz: b298c87a891ec1892dbe470df754cddb8b731c8d8eb8e5a5a43d944a06f56e5a5db92e6dcb214cf30b5c26b12e03710f5be89b468863faf4fc71e6fc606ee399
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudidentity_v1beta1
|
2
2
|
|
3
|
+
### v0.41.0 (2023-07-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230703
|
6
|
+
|
7
|
+
### v0.40.0 (2023-06-11)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230606
|
10
|
+
|
3
11
|
### v0.39.0 (2023-05-28)
|
4
12
|
|
5
13
|
* 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
|
|
@@ -1588,6 +1616,11 @@ module Google
|
|
1588
1616
|
# @return [String]
|
1589
1617
|
attr_accessor :encryption_state
|
1590
1618
|
|
1619
|
+
# Host name of the device.
|
1620
|
+
# Corresponds to the JSON property `hostname`
|
1621
|
+
# @return [String]
|
1622
|
+
attr_accessor :hostname
|
1623
|
+
|
1591
1624
|
# Output only. IMEI number of device if GSM device; empty otherwise.
|
1592
1625
|
# Corresponds to the JSON property `imei`
|
1593
1626
|
# @return [String]
|
@@ -1693,6 +1726,7 @@ module Google
|
|
1693
1726
|
@enabled_developer_options = args[:enabled_developer_options] if args.key?(:enabled_developer_options)
|
1694
1727
|
@enabled_usb_debugging = args[:enabled_usb_debugging] if args.key?(:enabled_usb_debugging)
|
1695
1728
|
@encryption_state = args[:encryption_state] if args.key?(:encryption_state)
|
1729
|
+
@hostname = args[:hostname] if args.key?(:hostname)
|
1696
1730
|
@imei = args[:imei] if args.key?(:imei)
|
1697
1731
|
@kernel_version = args[:kernel_version] if args.key?(:kernel_version)
|
1698
1732
|
@last_sync_time = args[:last_sync_time] if args.key?(:last_sync_time)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.41.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 = "
|
25
|
+
REVISION = "20230703"
|
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
|
|
@@ -1137,6 +1141,7 @@ module Google
|
|
1137
1141
|
property :enabled_developer_options, as: 'enabledDeveloperOptions'
|
1138
1142
|
property :enabled_usb_debugging, as: 'enabledUsbDebugging'
|
1139
1143
|
property :encryption_state, as: 'encryptionState'
|
1144
|
+
property :hostname, as: 'hostname'
|
1140
1145
|
property :imei, as: 'imei'
|
1141
1146
|
property :kernel_version, as: 'kernelVersion'
|
1142
1147
|
property :last_sync_time, as: 'lastSyncTime'
|
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.
|
4
|
+
version: 0.41.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-
|
11
|
+
date: 2023-07-09 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.41.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: []
|