google-apis-androidenterprise_v1 0.18.0 → 0.19.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: 1b139c42c20d9051d70c692ee33c7cb456e13e4a002562c93665bb896683b8b5
|
4
|
+
data.tar.gz: 7d4442b53f041f089a98a62e0f2288d005d6276f2ed76985aff4dc9ff78187bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbb52513b19199675d270794821d9d93e2365c5974c2340034c4e80360a7ff0e253060ff837d4cb9dc97842b3903851aefae47d274ab80afe2eed1c4dca65653
|
7
|
+
data.tar.gz: 6d4879d189ce1f79ac2f20790120aee0420b643acea08685f00ed5dce61ba7df8b2aed08d257d21be25569adcac54ddeef96324be22f79930be1dbc6834ed055
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-androidenterprise_v1
|
2
2
|
|
3
|
+
### v0.19.0 (2023-01-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230111
|
6
|
+
* Regenerated using generator version 0.11.1
|
7
|
+
|
3
8
|
### v0.18.0 (2022-12-22)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20221214
|
@@ -844,6 +844,11 @@ module Google
|
|
844
844
|
# @return [Array<Google::Apis::AndroidenterpriseV1::Administrator>]
|
845
845
|
attr_accessor :administrator
|
846
846
|
|
847
|
+
# Contains settings for Google-provided user authentication.
|
848
|
+
# Corresponds to the JSON property `googleAuthenticationSettings`
|
849
|
+
# @return [Google::Apis::AndroidenterpriseV1::GoogleAuthenticationSettings]
|
850
|
+
attr_accessor :google_authentication_settings
|
851
|
+
|
847
852
|
# The unique ID for the enterprise.
|
848
853
|
# Corresponds to the JSON property `id`
|
849
854
|
# @return [String]
|
@@ -866,6 +871,7 @@ module Google
|
|
866
871
|
# Update properties of this object
|
867
872
|
def update!(**args)
|
868
873
|
@administrator = args[:administrator] if args.key?(:administrator)
|
874
|
+
@google_authentication_settings = args[:google_authentication_settings] if args.key?(:google_authentication_settings)
|
869
875
|
@id = args[:id] if args.key?(:id)
|
870
876
|
@name = args[:name] if args.key?(:name)
|
871
877
|
@primary_domain = args[:primary_domain] if args.key?(:primary_domain)
|
@@ -1023,6 +1029,31 @@ module Google
|
|
1023
1029
|
end
|
1024
1030
|
end
|
1025
1031
|
|
1032
|
+
# Contains settings for Google-provided user authentication.
|
1033
|
+
class GoogleAuthenticationSettings
|
1034
|
+
include Google::Apis::Core::Hashable
|
1035
|
+
|
1036
|
+
# Whether dedicated devices are allowed.
|
1037
|
+
# Corresponds to the JSON property `dedicatedDevicesAllowed`
|
1038
|
+
# @return [String]
|
1039
|
+
attr_accessor :dedicated_devices_allowed
|
1040
|
+
|
1041
|
+
# Whether Google authentication is required.
|
1042
|
+
# Corresponds to the JSON property `googleAuthenticationRequired`
|
1043
|
+
# @return [String]
|
1044
|
+
attr_accessor :google_authentication_required
|
1045
|
+
|
1046
|
+
def initialize(**args)
|
1047
|
+
update!(**args)
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
# Update properties of this object
|
1051
|
+
def update!(**args)
|
1052
|
+
@dedicated_devices_allowed = args[:dedicated_devices_allowed] if args.key?(:dedicated_devices_allowed)
|
1053
|
+
@google_authentication_required = args[:google_authentication_required] if args.key?(:google_authentication_required)
|
1054
|
+
end
|
1055
|
+
end
|
1056
|
+
|
1026
1057
|
# Group license objects allow you to keep track of licenses (called entitlements)
|
1027
1058
|
# for both free and paid apps. For a free app, a group license is created when
|
1028
1059
|
# an enterprise admin first approves the product in Google Play or when the
|
@@ -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.19.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.11.
|
22
|
+
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230111"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -226,6 +226,12 @@ module Google
|
|
226
226
|
include Google::Apis::Core::JsonObjectSupport
|
227
227
|
end
|
228
228
|
|
229
|
+
class GoogleAuthenticationSettings
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
229
235
|
class GroupLicense
|
230
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
237
|
|
@@ -786,6 +792,8 @@ module Google
|
|
786
792
|
class Representation < Google::Apis::Core::JsonRepresentation
|
787
793
|
collection :administrator, as: 'administrator', class: Google::Apis::AndroidenterpriseV1::Administrator, decorator: Google::Apis::AndroidenterpriseV1::Administrator::Representation
|
788
794
|
|
795
|
+
property :google_authentication_settings, as: 'googleAuthenticationSettings', class: Google::Apis::AndroidenterpriseV1::GoogleAuthenticationSettings, decorator: Google::Apis::AndroidenterpriseV1::GoogleAuthenticationSettings::Representation
|
796
|
+
|
789
797
|
property :id, as: 'id'
|
790
798
|
property :name, as: 'name'
|
791
799
|
property :primary_domain, as: 'primaryDomain'
|
@@ -838,6 +846,14 @@ module Google
|
|
838
846
|
end
|
839
847
|
end
|
840
848
|
|
849
|
+
class GoogleAuthenticationSettings
|
850
|
+
# @private
|
851
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
852
|
+
property :dedicated_devices_allowed, as: 'dedicatedDevicesAllowed'
|
853
|
+
property :google_authentication_required, as: 'googleAuthenticationRequired'
|
854
|
+
end
|
855
|
+
end
|
856
|
+
|
841
857
|
class GroupLicense
|
842
858
|
# @private
|
843
859
|
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.19.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: 2023-01-
|
11
|
+
date: 2023-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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-androidenterprise_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.19.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidenterprise_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Play EMM API V1
|