google-apis-androidenterprise_v1 0.43.0 → 0.45.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/androidenterprise_v1/classes.rb +37 -2
- data/lib/google/apis/androidenterprise_v1/gem_version.rb +3 -3
- data/lib/google/apis/androidenterprise_v1/representations.rb +16 -0
- data/lib/google/apis/androidenterprise_v1/service.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b5bd82749d3e56b5d30e3792b9c6efb8538981e59cfd8432252d0e1a6322438
|
4
|
+
data.tar.gz: c8b9921e6f1946ca0e81c07b8ee49e65a1338fe699ff895d8ac6527152aa2403
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e5c2af72b5f72f227bfa7c7097abc8b3c021be1df36d9d9bca26fa42405223e729f55e52625518c83e53f509d1a40231cd88ddd382823958eeaa3a69ecc37fa
|
7
|
+
data.tar.gz: 71823a30343dbeca32f75695b2770e7af68319348006a819e0477809c1c879970ae501b64bc29929248d7ba7f819673c506759e848d82cce1aa57135b1e8f1f8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-androidenterprise_v1
|
2
2
|
|
3
|
+
### v0.45.0 (2025-07-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250720
|
6
|
+
|
7
|
+
### v0.44.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250610
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.43.0 (2025-05-04)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
@@ -873,6 +873,11 @@ module Google
|
|
873
873
|
# @return [String]
|
874
874
|
attr_accessor :enrollment_token_type
|
875
875
|
|
876
|
+
# Options for Google authentication during the enrollment.
|
877
|
+
# Corresponds to the JSON property `googleAuthenticationOptions`
|
878
|
+
# @return [Google::Apis::AndroidenterpriseV1::EnrollmentTokenGoogleAuthenticationOptions]
|
879
|
+
attr_accessor :google_authentication_options
|
880
|
+
|
876
881
|
# The token value that's passed to the device and authorizes the device to
|
877
882
|
# enroll. This is a read-only field generated by the server.
|
878
883
|
# Corresponds to the JSON property `token`
|
@@ -887,10 +892,41 @@ module Google
|
|
887
892
|
def update!(**args)
|
888
893
|
@duration = args[:duration] if args.key?(:duration)
|
889
894
|
@enrollment_token_type = args[:enrollment_token_type] if args.key?(:enrollment_token_type)
|
895
|
+
@google_authentication_options = args[:google_authentication_options] if args.key?(:google_authentication_options)
|
890
896
|
@token = args[:token] if args.key?(:token)
|
891
897
|
end
|
892
898
|
end
|
893
899
|
|
900
|
+
# Options for Google authentication during the enrollment.
|
901
|
+
class EnrollmentTokenGoogleAuthenticationOptions
|
902
|
+
include Google::Apis::Core::Hashable
|
903
|
+
|
904
|
+
# [Optional] Specifies whether user should authenticate with Google during
|
905
|
+
# enrollment. This setting, if specified,`GoogleAuthenticationSettings`
|
906
|
+
# specified for the enterprise resource is ignored for devices enrolled with
|
907
|
+
# this token.
|
908
|
+
# Corresponds to the JSON property `authenticationRequirement`
|
909
|
+
# @return [String]
|
910
|
+
attr_accessor :authentication_requirement
|
911
|
+
|
912
|
+
# [Optional] Specifies the managed Google account that the user must use during
|
913
|
+
# enrollment.`AuthenticationRequirement` must be set to`REQUIRED` if this field
|
914
|
+
# is set.
|
915
|
+
# Corresponds to the JSON property `requiredAccountEmail`
|
916
|
+
# @return [String]
|
917
|
+
attr_accessor :required_account_email
|
918
|
+
|
919
|
+
def initialize(**args)
|
920
|
+
update!(**args)
|
921
|
+
end
|
922
|
+
|
923
|
+
# Update properties of this object
|
924
|
+
def update!(**args)
|
925
|
+
@authentication_requirement = args[:authentication_requirement] if args.key?(:authentication_requirement)
|
926
|
+
@required_account_email = args[:required_account_email] if args.key?(:required_account_email)
|
927
|
+
end
|
928
|
+
end
|
929
|
+
|
894
930
|
# An Enterprises resource represents the binding between an EMM and a specific
|
895
931
|
# organization. That binding can be instantiated in one of two different ways
|
896
932
|
# using this API as follows: - For Google managed domain customers, the process
|
@@ -1112,8 +1148,7 @@ module Google
|
|
1112
1148
|
end
|
1113
1149
|
|
1114
1150
|
# Response message for generating a URL to upgrade an existing managed Google
|
1115
|
-
# Play Accounts enterprise to a managed Google domain.
|
1116
|
-
# not generally available.
|
1151
|
+
# Play Accounts enterprise to a managed Google domain.
|
1117
1152
|
class GenerateEnterpriseUpgradeUrlResponse
|
1118
1153
|
include Google::Apis::Core::Hashable
|
1119
1154
|
|
@@ -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.45.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250720"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,6 +184,12 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
+
class EnrollmentTokenGoogleAuthenticationOptions
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
187
193
|
class Enterprise
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
195
|
|
@@ -805,10 +811,20 @@ module Google
|
|
805
811
|
class Representation < Google::Apis::Core::JsonRepresentation
|
806
812
|
property :duration, as: 'duration'
|
807
813
|
property :enrollment_token_type, as: 'enrollmentTokenType'
|
814
|
+
property :google_authentication_options, as: 'googleAuthenticationOptions', class: Google::Apis::AndroidenterpriseV1::EnrollmentTokenGoogleAuthenticationOptions, decorator: Google::Apis::AndroidenterpriseV1::EnrollmentTokenGoogleAuthenticationOptions::Representation
|
815
|
+
|
808
816
|
property :token, as: 'token'
|
809
817
|
end
|
810
818
|
end
|
811
819
|
|
820
|
+
class EnrollmentTokenGoogleAuthenticationOptions
|
821
|
+
# @private
|
822
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
823
|
+
property :authentication_requirement, as: 'authenticationRequirement'
|
824
|
+
property :required_account_email, as: 'requiredAccountEmail'
|
825
|
+
end
|
826
|
+
end
|
827
|
+
|
812
828
|
class Enterprise
|
813
829
|
# @private
|
814
830
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -462,8 +462,8 @@ module Google
|
|
462
462
|
end
|
463
463
|
|
464
464
|
# Generates an enterprise upgrade URL to upgrade an existing managed Google Play
|
465
|
-
# Accounts enterprise to a managed Google domain.
|
466
|
-
#
|
465
|
+
# Accounts enterprise to a managed Google domain. See the guide to upgrading an
|
466
|
+
# enterprise for more details.
|
467
467
|
# @param [String] enterprise_id
|
468
468
|
# Required. The ID of the enterprise.
|
469
469
|
# @param [String] admin_email
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.45.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidenterprise_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.45.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidenterprise_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Google Play EMM API V1
|
79
79
|
test_files: []
|