google-apis-androidmanagement_v1 0.7.0 → 0.8.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: c691ad7bce3e340413b09568f405b64f9ee516c48b092992f874ffb892b51b26
|
|
4
|
+
data.tar.gz: 41d223a202acd50b59c80a297345efe40e6da3d71f4ea5d18cf34a9f5db0adf5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 344280659c2cbc0e82b4e4d404ab5b3d624e36d8cbdbca7561068498fd644f7d5e5bf069788096af06d727f274a593ad7d0c7115e5b7a9a40e846af7694dd828
|
|
7
|
+
data.tar.gz: bbf922659e3a45e15e23a852cf0e44353aa7a034f18aeaa653a7d78bcade51104c3f7d571ad0a0d9286a782c1d32dd12e8321530a24ae1d8da380b25680a9b45
|
data/CHANGELOG.md
CHANGED
|
@@ -40,6 +40,19 @@ module Google
|
|
|
40
40
|
# @return [String]
|
|
41
41
|
attr_accessor :common_criteria_mode
|
|
42
42
|
|
|
43
|
+
# Controls access to developer settings: developer options and safe boot.
|
|
44
|
+
# Replaces safeBootDisabled (deprecated) and debuggingFeaturesAllowed (
|
|
45
|
+
# deprecated).
|
|
46
|
+
# Corresponds to the JSON property `developerSettings`
|
|
47
|
+
# @return [String]
|
|
48
|
+
attr_accessor :developer_settings
|
|
49
|
+
|
|
50
|
+
# Whether Google Play Protect verification (https://support.google.com/accounts/
|
|
51
|
+
# answer/2812853) is enforced. Replaces ensureVerifyAppsEnabled (deprecated).
|
|
52
|
+
# Corresponds to the JSON property `googlePlayProtectVerifyApps`
|
|
53
|
+
# @return [String]
|
|
54
|
+
attr_accessor :google_play_protect_verify_apps
|
|
55
|
+
|
|
43
56
|
# The policy for untrusted apps (apps from unknown sources) enforced on the
|
|
44
57
|
# device. Replaces install_unknown_sources_allowed (deprecated).
|
|
45
58
|
# Corresponds to the JSON property `untrustedAppsPolicy`
|
|
@@ -53,6 +66,8 @@ module Google
|
|
|
53
66
|
# Update properties of this object
|
|
54
67
|
def update!(**args)
|
|
55
68
|
@common_criteria_mode = args[:common_criteria_mode] if args.key?(:common_criteria_mode)
|
|
69
|
+
@developer_settings = args[:developer_settings] if args.key?(:developer_settings)
|
|
70
|
+
@google_play_protect_verify_apps = args[:google_play_protect_verify_apps] if args.key?(:google_play_protect_verify_apps)
|
|
56
71
|
@untrusted_apps_policy = args[:untrusted_apps_policy] if args.key?(:untrusted_apps_policy)
|
|
57
72
|
end
|
|
58
73
|
end
|
|
@@ -1101,8 +1116,8 @@ module Google
|
|
|
1101
1116
|
attr_accessor :unknown_sources_enabled
|
|
1102
1117
|
alias_method :unknown_sources_enabled?, :unknown_sources_enabled
|
|
1103
1118
|
|
|
1104
|
-
# Whether
|
|
1105
|
-
#
|
|
1119
|
+
# Whether Google Play Protect verification (https://support.google.com/accounts/
|
|
1120
|
+
# answer/2812853) is enforced on the device.
|
|
1106
1121
|
# Corresponds to the JSON property `verifyAppsEnabled`
|
|
1107
1122
|
# @return [Boolean]
|
|
1108
1123
|
attr_accessor :verify_apps_enabled
|
|
@@ -2812,7 +2827,9 @@ module Google
|
|
|
2812
2827
|
# temporary network will be forgotten and the device will continue booting. This
|
|
2813
2828
|
# prevents being unable to connect to a network if there is no suitable network
|
|
2814
2829
|
# in the last policy and the device boots into an app in lock task mode, or the
|
|
2815
|
-
# user is otherwise unable to reach device settings.
|
|
2830
|
+
# user is otherwise unable to reach device settings.Note: Setting
|
|
2831
|
+
# wifiConfigDisabled to true will override this setting under specific
|
|
2832
|
+
# circumstances. Please see wifiConfigDisabled for further details.
|
|
2816
2833
|
# Corresponds to the JSON property `networkEscapeHatchEnabled`
|
|
2817
2834
|
# @return [Boolean]
|
|
2818
2835
|
attr_accessor :network_escape_hatch_enabled
|
|
@@ -3040,7 +3057,10 @@ module Google
|
|
|
3040
3057
|
attr_accessor :vpn_config_disabled
|
|
3041
3058
|
alias_method :vpn_config_disabled?, :vpn_config_disabled
|
|
3042
3059
|
|
|
3043
|
-
# Whether configuring Wi-Fi access points is disabled.
|
|
3060
|
+
# Whether configuring Wi-Fi access points is disabled.Note: If a network
|
|
3061
|
+
# connection can't be made at boot time and configuring Wi-Fi is disabled then
|
|
3062
|
+
# network escape hatch will be shown in order to refresh the device policy (see
|
|
3063
|
+
# networkEscapeHatchEnabled).
|
|
3044
3064
|
# Corresponds to the JSON property `wifiConfigDisabled`
|
|
3045
3065
|
# @return [Boolean]
|
|
3046
3066
|
attr_accessor :wifi_config_disabled
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AndroidmanagementV1
|
|
18
18
|
# Version of the google-apis-androidmanagement_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.8.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210405"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -470,6 +470,8 @@ module Google
|
|
|
470
470
|
# @private
|
|
471
471
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
472
472
|
property :common_criteria_mode, as: 'commonCriteriaMode'
|
|
473
|
+
property :developer_settings, as: 'developerSettings'
|
|
474
|
+
property :google_play_protect_verify_apps, as: 'googlePlayProtectVerifyApps'
|
|
473
475
|
property :untrusted_apps_policy, as: 'untrustedAppsPolicy'
|
|
474
476
|
end
|
|
475
477
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-androidmanagement_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.8.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: 2021-
|
|
11
|
+
date: 2021-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -52,7 +52,7 @@ licenses:
|
|
|
52
52
|
metadata:
|
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androidmanagement_v1/CHANGELOG.md
|
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.
|
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.8.0
|
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androidmanagement_v1
|
|
57
57
|
post_install_message:
|
|
58
58
|
rdoc_options: []
|
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.2.
|
|
72
|
+
rubygems_version: 3.2.17
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Simple REST client for Android Management API V1
|