google-apis-androidmanagement_v1 0.70.0 → 0.71.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: 4b49fdabeb61f79f088ee6a0ae5563a9cf69160691f2a32eb52499360bbf5083
|
|
4
|
+
data.tar.gz: 1776f8c1dc2cdd014e544cfa8a941c8a2ecd360456840560f75afd54d46d38fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d45d10a2720a9984b341b5e41246b47eab0eec375f93792b8914f0efebc36642a4c6cae60484c05d95d98715b352a30e17e017d1412f991395c4dbdd0d91baf8
|
|
7
|
+
data.tar.gz: 6e26cbde2322d1af9e36e93a09392efef7eb718ef9b1178fbb30cfe8d66f846f1200733137274a296b1415cd51c75fe8ac319fe9a261dc00a70bbdbcee5bba4f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-androidmanagement_v1
|
|
2
2
|
|
|
3
|
+
### v0.71.0 (2024-02-23)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20240213
|
|
6
|
+
* Regenerated using generator version 0.14.0
|
|
7
|
+
|
|
3
8
|
### v0.70.0 (2024-02-18)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20240207
|
data/OVERVIEW.md
CHANGED
|
@@ -83,9 +83,9 @@ The [product documentation](https://developers.google.com/android/management) ma
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 2.
|
|
86
|
+
This library is supported on Ruby 2.7+.
|
|
87
87
|
|
|
88
|
-
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life.
|
|
88
|
+
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
90
90
|
## License
|
|
91
91
|
|
|
@@ -84,6 +84,13 @@ module Google
|
|
|
84
84
|
# @return [String]
|
|
85
85
|
attr_accessor :google_play_protect_verify_apps
|
|
86
86
|
|
|
87
|
+
# Optional. Controls Memory Tagging Extension (MTE) (https://source.android.com/
|
|
88
|
+
# docs/security/test/memory-safety/arm-mte) on the device. The device needs to
|
|
89
|
+
# be rebooted to apply changes to the MTE policy.
|
|
90
|
+
# Corresponds to the JSON property `mtePolicy`
|
|
91
|
+
# @return [String]
|
|
92
|
+
attr_accessor :mte_policy
|
|
93
|
+
|
|
87
94
|
# Personal apps that can read work profile notifications using a
|
|
88
95
|
# NotificationListenerService (https://developer.android.com/reference/android/
|
|
89
96
|
# service/notification/NotificationListenerService). By default, no personal
|
|
@@ -108,6 +115,7 @@ module Google
|
|
|
108
115
|
@common_criteria_mode = args[:common_criteria_mode] if args.key?(:common_criteria_mode)
|
|
109
116
|
@developer_settings = args[:developer_settings] if args.key?(:developer_settings)
|
|
110
117
|
@google_play_protect_verify_apps = args[:google_play_protect_verify_apps] if args.key?(:google_play_protect_verify_apps)
|
|
118
|
+
@mte_policy = args[:mte_policy] if args.key?(:mte_policy)
|
|
111
119
|
@personal_apps_that_can_read_work_notifications = args[:personal_apps_that_can_read_work_notifications] if args.key?(:personal_apps_that_can_read_work_notifications)
|
|
112
120
|
@untrusted_apps_policy = args[:untrusted_apps_policy] if args.key?(:untrusted_apps_policy)
|
|
113
121
|
end
|
|
@@ -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.71.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240213"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -833,6 +833,7 @@ module Google
|
|
|
833
833
|
property :common_criteria_mode, as: 'commonCriteriaMode'
|
|
834
834
|
property :developer_settings, as: 'developerSettings'
|
|
835
835
|
property :google_play_protect_verify_apps, as: 'googlePlayProtectVerifyApps'
|
|
836
|
+
property :mte_policy, as: 'mtePolicy'
|
|
836
837
|
collection :personal_apps_that_can_read_work_notifications, as: 'personalAppsThatCanReadWorkNotifications'
|
|
837
838
|
property :untrusted_apps_policy, as: 'untrustedAppsPolicy'
|
|
838
839
|
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.71.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: 2024-02-
|
|
11
|
+
date: 2024-02-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.14.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 2.a
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
29
|
+
version: 0.14.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 2.a
|
|
@@ -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-androidmanagement_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.71.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|
|
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
68
68
|
requirements:
|
|
69
69
|
- - ">="
|
|
70
70
|
- !ruby/object:Gem::Version
|
|
71
|
-
version: '2.
|
|
71
|
+
version: '2.7'
|
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
74
|
- - ">="
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.5.
|
|
78
|
+
rubygems_version: 3.5.6
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Android Management API V1
|