google-apis-androidmanagement_v1 0.85.0 → 0.86.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: 2f526d6e61aca8a6e1ab220e1f0c896160038f5dba66d8ac129ee2ea055e289d
|
|
4
|
+
data.tar.gz: 2eef4179a793b77124b0d1eb247fb5994f863a8b1484d4354b7ed541553de346
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 88035f9a9f774fe742ac1c6507011b955706d8047cf4664fa8ec86892dd88f29dc4cfa2a46db45117abdfc8210fad73c647cf88aff06915020c80f8ad8a6cbaf
|
|
7
|
+
data.tar.gz: 44a7d5533b052203860f2aa6cf8e336e9dd101e4fb01adb92428117d48f8de5a0556a45b84703dfaaadab4fbfea4b73027d61eff21c8d31f9a23f5593f866627
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-androidmanagement_v1
|
|
2
2
|
|
|
3
|
+
### v0.86.0 (2025-01-12)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20250109
|
|
6
|
+
* Regenerated using generator version 0.16.0
|
|
7
|
+
|
|
3
8
|
### v0.85.0 (2024-12-08)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20241204
|
|
@@ -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.86.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20250109"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1209,7 +1209,16 @@ module Google
|
|
|
1209
1209
|
# Creates an enterprise signup URL.
|
|
1210
1210
|
# @param [String] admin_email
|
|
1211
1211
|
# Optional. Email address used to prefill the admin field of the enterprise
|
|
1212
|
-
# signup form. This value is a hint only and can be altered by the user.
|
|
1212
|
+
# signup form. This value is a hint only and can be altered by the user. If
|
|
1213
|
+
# allowedDomains is non-empty then this must belong to one of the allowedDomains.
|
|
1214
|
+
# @param [Array<String>, String] allowed_domains
|
|
1215
|
+
# Optional. A list of domains that are permitted for the admin email. The IT
|
|
1216
|
+
# admin cannot enter an email address with a domain name that is not in this
|
|
1217
|
+
# list. Subdomains of domains in this list are not allowed but can be allowed by
|
|
1218
|
+
# adding a second entry which has *. prefixed to the domain name (e.g. *.example.
|
|
1219
|
+
# com). If the field is not present or is an empty list then the IT admin is
|
|
1220
|
+
# free to use any valid domain name. Personal email domains are always allowed,
|
|
1221
|
+
# but will result in the creation of a managed Google Play Accounts enterprise.
|
|
1213
1222
|
# @param [String] callback_url
|
|
1214
1223
|
# The callback URL that the admin will be redirected to after successfully
|
|
1215
1224
|
# creating an enterprise. Before redirecting there the system will add a query
|
|
@@ -1236,11 +1245,12 @@ module Google
|
|
|
1236
1245
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1237
1246
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1238
1247
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1239
|
-
def create_signup_url(admin_email: nil, callback_url: nil, project_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1248
|
+
def create_signup_url(admin_email: nil, allowed_domains: nil, callback_url: nil, project_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1240
1249
|
command = make_simple_command(:post, 'v1/signupUrls', options)
|
|
1241
1250
|
command.response_representation = Google::Apis::AndroidmanagementV1::SignupUrl::Representation
|
|
1242
1251
|
command.response_class = Google::Apis::AndroidmanagementV1::SignupUrl
|
|
1243
1252
|
command.query['adminEmail'] = admin_email unless admin_email.nil?
|
|
1253
|
+
command.query['allowedDomains'] = allowed_domains unless allowed_domains.nil?
|
|
1244
1254
|
command.query['callbackUrl'] = callback_url unless callback_url.nil?
|
|
1245
1255
|
command.query['projectId'] = project_id unless project_id.nil?
|
|
1246
1256
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
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.86.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 2025-01-12 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: google-apis-core
|
|
@@ -58,9 +57,8 @@ licenses:
|
|
|
58
57
|
metadata:
|
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
59
|
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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.86.0
|
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1
|
|
63
|
-
post_install_message:
|
|
64
62
|
rdoc_options: []
|
|
65
63
|
require_paths:
|
|
66
64
|
- lib
|
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
73
|
- !ruby/object:Gem::Version
|
|
76
74
|
version: '0'
|
|
77
75
|
requirements: []
|
|
78
|
-
rubygems_version: 3.
|
|
79
|
-
signing_key:
|
|
76
|
+
rubygems_version: 3.6.2
|
|
80
77
|
specification_version: 4
|
|
81
78
|
summary: Simple REST client for Android Management API V1
|
|
82
79
|
test_files: []
|