google-apis-androidenterprise_v1 0.2.0 → 0.3.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: ce9bf02cb05f92ad64fc4e3ccadd69d0d93be64a543aa68ce7406eca84c0a785
|
4
|
+
data.tar.gz: 3d84cdf0384779d01eeae20f697ca8a9069e1bd4feca628e6cd4e23fa7c7ec95
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d37304ce6443ff6997052a3c68c0bc37e5bab1b0c2f19a148b15d781ef0e863bf7ae3164f18520763826cbc605b5020b9f488aa915c69417a8f466106363db6
|
7
|
+
data.tar.gz: d27def534a34cf5460085303abb992221d3219d6551c8989953c64f5e8ac0550a5b945848ec78d90de0c7ef24ba0d0b76acddd1f1ea7f0777bd6c1993a2a18be
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-androidenterprise_v1
|
2
2
|
|
3
|
+
### v0.3.0 (2021-04-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210428
|
6
|
+
* Regenerated using generator version 0.2.0
|
7
|
+
|
3
8
|
### v0.2.0 (2021-03-04)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.1.2
|
@@ -104,6 +104,11 @@ module Google
|
|
104
104
|
# @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecWebApps]
|
105
105
|
attr_accessor :web_apps
|
106
106
|
|
107
|
+
# Options for displaying the Zero Touch page.
|
108
|
+
# Corresponds to the JSON property `zeroTouch`
|
109
|
+
# @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecZeroTouch]
|
110
|
+
attr_accessor :zero_touch
|
111
|
+
|
107
112
|
def initialize(**args)
|
108
113
|
update!(**args)
|
109
114
|
end
|
@@ -117,6 +122,7 @@ module Google
|
|
117
122
|
@private_apps = args[:private_apps] if args.key?(:private_apps)
|
118
123
|
@store_builder = args[:store_builder] if args.key?(:store_builder)
|
119
124
|
@web_apps = args[:web_apps] if args.key?(:web_apps)
|
125
|
+
@zero_touch = args[:zero_touch] if args.key?(:zero_touch)
|
120
126
|
end
|
121
127
|
end
|
122
128
|
|
@@ -227,6 +233,27 @@ module Google
|
|
227
233
|
end
|
228
234
|
end
|
229
235
|
|
236
|
+
#
|
237
|
+
class AdministratorWebTokenSpecZeroTouch
|
238
|
+
include Google::Apis::Core::Hashable
|
239
|
+
|
240
|
+
# Whether zero-touch embedded UI is usable with this token. If enabled, the
|
241
|
+
# admin can link zero-touch customers to this enterprise.
|
242
|
+
# Corresponds to the JSON property `enabled`
|
243
|
+
# @return [Boolean]
|
244
|
+
attr_accessor :enabled
|
245
|
+
alias_method :enabled?, :enabled
|
246
|
+
|
247
|
+
def initialize(**args)
|
248
|
+
update!(**args)
|
249
|
+
end
|
250
|
+
|
251
|
+
# Update properties of this object
|
252
|
+
def update!(**args)
|
253
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
254
|
+
end
|
255
|
+
end
|
256
|
+
|
230
257
|
# Represents the list of app restrictions available to be pre-configured for the
|
231
258
|
# product.
|
232
259
|
class AppRestrictionsSchema
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AndroidenterpriseV1
|
18
18
|
# Version of the google-apis-androidenterprise_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.3.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210428"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class AdministratorWebTokenSpecZeroTouch
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
73
79
|
class AppRestrictionsSchema
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
81
|
|
@@ -549,6 +555,8 @@ module Google
|
|
549
555
|
|
550
556
|
property :web_apps, as: 'webApps', class: Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecWebApps, decorator: Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecWebApps::Representation
|
551
557
|
|
558
|
+
property :zero_touch, as: 'zeroTouch', class: Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecZeroTouch, decorator: Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecZeroTouch::Representation
|
559
|
+
|
552
560
|
end
|
553
561
|
end
|
554
562
|
|
@@ -588,6 +596,13 @@ module Google
|
|
588
596
|
end
|
589
597
|
end
|
590
598
|
|
599
|
+
class AdministratorWebTokenSpecZeroTouch
|
600
|
+
# @private
|
601
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
602
|
+
property :enabled, as: 'enabled'
|
603
|
+
end
|
604
|
+
end
|
605
|
+
|
591
606
|
class AppRestrictionsSchema
|
592
607
|
# @private
|
593
608
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-androidenterprise_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.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-androidenterprise_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.3.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androidenterprise_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 Google Play EMM API V1
|