google-apis-androidmanagement_v1 0.7.0 → 0.12.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: cfbd76396fa4336a4d928e4dc3ef75acfae0fec452166f339a4fa50df693a91b
|
4
|
+
data.tar.gz: d6814b7152f6ad56f7a437e7e3d75ac1d5642d65a60bf7c4b46aa7a8863eb828
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07e89b1c74ff5ce13a42927c70783ce4c382e806ece74b22ca8543907be03db9189fcd590a659d01595888ff8f3733c2797bf2bedd228451e1232ec48fd5df41
|
7
|
+
data.tar.gz: ba7a4d582a9e0b3371990de0668f7865e5ff60ceb3078036fdbd6db4ee12cd52fceb1c35165496ce349e64a3026161808aa823bf158a22eb4860f01a0fff3979
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-androidmanagement_v1
|
2
2
|
|
3
|
+
### v0.12.0 (2021-06-24)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.11.0 (2021-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210607
|
10
|
+
* Regenerated using generator version 0.3.0
|
11
|
+
|
12
|
+
### v0.10.0 (2021-06-01)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210524
|
15
|
+
|
16
|
+
### v0.9.0 (2021-05-19)
|
17
|
+
|
18
|
+
* Unspecified changes
|
19
|
+
|
20
|
+
### v0.8.0 (2021-04-18)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210405
|
23
|
+
|
3
24
|
### v0.7.0 (2021-03-30)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210322
|
@@ -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
|
@@ -247,7 +262,7 @@ module Google
|
|
247
262
|
# @return [Array<String>]
|
248
263
|
attr_accessor :accessible_track_ids
|
249
264
|
|
250
|
-
#
|
265
|
+
# Controls the auto-update mode for the app.
|
251
266
|
# Corresponds to the JSON property `autoUpdateMode`
|
252
267
|
# @return [String]
|
253
268
|
attr_accessor :auto_update_mode
|
@@ -825,6 +840,13 @@ module Google
|
|
825
840
|
# @return [Array<Google::Apis::AndroidmanagementV1::ApplicationReport>]
|
826
841
|
attr_accessor :application_reports
|
827
842
|
|
843
|
+
# The password requirements currently applied to the device. The applied
|
844
|
+
# requirements may be slightly different from those specified in
|
845
|
+
# passwordPolicies in some cases. fieldPath is set based on passwordPolicies.
|
846
|
+
# Corresponds to the JSON property `appliedPasswordPolicies`
|
847
|
+
# @return [Array<Google::Apis::AndroidmanagementV1::PasswordRequirements>]
|
848
|
+
attr_accessor :applied_password_policies
|
849
|
+
|
828
850
|
# The name of the policy currently applied to the device.
|
829
851
|
# Corresponds to the JSON property `appliedPolicyName`
|
830
852
|
# @return [String]
|
@@ -1026,6 +1048,7 @@ module Google
|
|
1026
1048
|
def update!(**args)
|
1027
1049
|
@api_level = args[:api_level] if args.key?(:api_level)
|
1028
1050
|
@application_reports = args[:application_reports] if args.key?(:application_reports)
|
1051
|
+
@applied_password_policies = args[:applied_password_policies] if args.key?(:applied_password_policies)
|
1029
1052
|
@applied_policy_name = args[:applied_policy_name] if args.key?(:applied_policy_name)
|
1030
1053
|
@applied_policy_version = args[:applied_policy_version] if args.key?(:applied_policy_version)
|
1031
1054
|
@applied_state = args[:applied_state] if args.key?(:applied_state)
|
@@ -1101,8 +1124,8 @@ module Google
|
|
1101
1124
|
attr_accessor :unknown_sources_enabled
|
1102
1125
|
alias_method :unknown_sources_enabled?, :unknown_sources_enabled
|
1103
1126
|
|
1104
|
-
# Whether
|
1105
|
-
#
|
1127
|
+
# Whether Google Play Protect verification (https://support.google.com/accounts/
|
1128
|
+
# answer/2812853) is enforced on the device.
|
1106
1129
|
# Corresponds to the JSON property `verifyAppsEnabled`
|
1107
1130
|
# @return [Boolean]
|
1108
1131
|
attr_accessor :verify_apps_enabled
|
@@ -1614,6 +1637,19 @@ module Google
|
|
1614
1637
|
end
|
1615
1638
|
end
|
1616
1639
|
|
1640
|
+
# Response on issuing a command. This is currently empty as a placeholder.
|
1641
|
+
class IssueCommandResponse
|
1642
|
+
include Google::Apis::Core::Hashable
|
1643
|
+
|
1644
|
+
def initialize(**args)
|
1645
|
+
update!(**args)
|
1646
|
+
end
|
1647
|
+
|
1648
|
+
# Update properties of this object
|
1649
|
+
def update!(**args)
|
1650
|
+
end
|
1651
|
+
end
|
1652
|
+
|
1617
1653
|
# Keyed app state reported by the app.
|
1618
1654
|
class KeyedAppState
|
1619
1655
|
include Google::Apis::Core::Hashable
|
@@ -2575,6 +2611,8 @@ module Google
|
|
2575
2611
|
# @return [Array<String>]
|
2576
2612
|
attr_accessor :android_device_policy_tracks
|
2577
2613
|
|
2614
|
+
# Deprecated. Use autoUpdateMode instead.When autoUpdateMode is set to
|
2615
|
+
# AUTO_UPDATE_POSTPONED or AUTO_UPDATE_HIGH_PRIORITY, this field has no effect.
|
2578
2616
|
# The app auto update policy, which controls when automatic app updates can be
|
2579
2617
|
# applied.
|
2580
2618
|
# Corresponds to the JSON property `appAutoUpdatePolicy`
|
@@ -2812,7 +2850,9 @@ module Google
|
|
2812
2850
|
# temporary network will be forgotten and the device will continue booting. This
|
2813
2851
|
# prevents being unable to connect to a network if there is no suitable network
|
2814
2852
|
# 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.
|
2853
|
+
# user is otherwise unable to reach device settings.Note: Setting
|
2854
|
+
# wifiConfigDisabled to true will override this setting under specific
|
2855
|
+
# circumstances. Please see wifiConfigDisabled for further details.
|
2816
2856
|
# Corresponds to the JSON property `networkEscapeHatchEnabled`
|
2817
2857
|
# @return [Boolean]
|
2818
2858
|
attr_accessor :network_escape_hatch_enabled
|
@@ -3040,7 +3080,10 @@ module Google
|
|
3040
3080
|
attr_accessor :vpn_config_disabled
|
3041
3081
|
alias_method :vpn_config_disabled?, :vpn_config_disabled
|
3042
3082
|
|
3043
|
-
# Whether configuring Wi-Fi access points is disabled.
|
3083
|
+
# Whether configuring Wi-Fi access points is disabled.Note: If a network
|
3084
|
+
# connection can't be made at boot time and configuring Wi-Fi is disabled then
|
3085
|
+
# network escape hatch will be shown in order to refresh the device policy (see
|
3086
|
+
# networkEscapeHatchEnabled).
|
3044
3087
|
# Corresponds to the JSON property `wifiConfigDisabled`
|
3045
3088
|
# @return [Boolean]
|
3046
3089
|
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.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210607"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -190,6 +190,12 @@ module Google
|
|
190
190
|
include Google::Apis::Core::JsonObjectSupport
|
191
191
|
end
|
192
192
|
|
193
|
+
class IssueCommandResponse
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
193
199
|
class KeyedAppState
|
194
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
201
|
|
@@ -470,6 +476,8 @@ module Google
|
|
470
476
|
# @private
|
471
477
|
class Representation < Google::Apis::Core::JsonRepresentation
|
472
478
|
property :common_criteria_mode, as: 'commonCriteriaMode'
|
479
|
+
property :developer_settings, as: 'developerSettings'
|
480
|
+
property :google_play_protect_verify_apps, as: 'googlePlayProtectVerifyApps'
|
473
481
|
property :untrusted_apps_policy, as: 'untrustedAppsPolicy'
|
474
482
|
end
|
475
483
|
end
|
@@ -661,6 +669,8 @@ module Google
|
|
661
669
|
property :api_level, as: 'apiLevel'
|
662
670
|
collection :application_reports, as: 'applicationReports', class: Google::Apis::AndroidmanagementV1::ApplicationReport, decorator: Google::Apis::AndroidmanagementV1::ApplicationReport::Representation
|
663
671
|
|
672
|
+
collection :applied_password_policies, as: 'appliedPasswordPolicies', class: Google::Apis::AndroidmanagementV1::PasswordRequirements, decorator: Google::Apis::AndroidmanagementV1::PasswordRequirements::Representation
|
673
|
+
|
664
674
|
property :applied_policy_name, as: 'appliedPolicyName'
|
665
675
|
property :applied_policy_version, :numeric_string => true, as: 'appliedPolicyVersion'
|
666
676
|
property :applied_state, as: 'appliedState'
|
@@ -830,6 +840,12 @@ module Google
|
|
830
840
|
end
|
831
841
|
end
|
832
842
|
|
843
|
+
class IssueCommandResponse
|
844
|
+
# @private
|
845
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
846
|
+
end
|
847
|
+
end
|
848
|
+
|
833
849
|
class KeyedAppState
|
834
850
|
# @private
|
835
851
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.12.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-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Android Management API V1. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.12.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androidmanagement_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Android Management API V1
|