google-apis-androidenterprise_v1 0.8.0 → 0.11.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: 7faf50f107a01782ce83c898d884792cc0a2a6d8e4d4eee358bad61454136225
|
4
|
+
data.tar.gz: d3eba19ceb89fca3910b86e9bb817f14dc6a479c4cb7d948d9fc95e110661ca3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2473f18332a96b9ba083b28e27a2ae76da9d7e7f9035dbab432f7c5d70a98e8381c8b73fac79ea6bf06a8eb573f39ed573976d45815ba041e4bf6e9def16fda9
|
7
|
+
data.tar.gz: 783d2791069f93616a938efa6cea0fc7a67bd5e5d54f1c9c564a8d502c1d6e40f2203875020e632aa5d6a0825d163fbd7608a0d071cdf0acc42ab4b0daf91713
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-androidenterprise_v1
|
2
2
|
|
3
|
+
### v0.11.0 (2022-06-05)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.5.0
|
6
|
+
|
7
|
+
### v0.10.0 (2022-04-11)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220407
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.9.0 (2021-12-14)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
3
16
|
### v0.8.0 (2021-10-20)
|
4
17
|
|
5
18
|
* Unspecified changes
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/androidenterprise_v1"
|
|
51
51
|
client = Google::Apis::AndroidenterpriseV1::AndroidEnterpriseService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -873,6 +873,26 @@ module Google
|
|
873
873
|
end
|
874
874
|
end
|
875
875
|
|
876
|
+
# An authentication URL configuration for the authenticator app of an identity
|
877
|
+
# provider.
|
878
|
+
class EnterpriseAuthenticationAppLinkConfig
|
879
|
+
include Google::Apis::Core::Hashable
|
880
|
+
|
881
|
+
# An authentication url.
|
882
|
+
# Corresponds to the JSON property `uri`
|
883
|
+
# @return [String]
|
884
|
+
attr_accessor :uri
|
885
|
+
|
886
|
+
def initialize(**args)
|
887
|
+
update!(**args)
|
888
|
+
end
|
889
|
+
|
890
|
+
# Update properties of this object
|
891
|
+
def update!(**args)
|
892
|
+
@uri = args[:uri] if args.key?(:uri)
|
893
|
+
end
|
894
|
+
end
|
895
|
+
|
876
896
|
#
|
877
897
|
class ListEnterprisesResponse
|
878
898
|
include Google::Apis::Core::Hashable
|
@@ -2154,6 +2174,16 @@ module Google
|
|
2154
2174
|
# @return [String]
|
2155
2175
|
attr_accessor :auto_update_mode
|
2156
2176
|
|
2177
|
+
# An authentication URL configuration for the authenticator app of an identity
|
2178
|
+
# provider. This helps to launch the identity provider's authenticator app
|
2179
|
+
# during the authentication happening in a private app using Android WebView.
|
2180
|
+
# Authenticator app should already be the [default handler](https://developer.
|
2181
|
+
# android.com/training/app-links/verify-site-associations) for the
|
2182
|
+
# authentication url on the device.
|
2183
|
+
# Corresponds to the JSON property `enterpriseAuthenticationAppLinkConfigs`
|
2184
|
+
# @return [Array<Google::Apis::AndroidenterpriseV1::EnterpriseAuthenticationAppLinkConfig>]
|
2185
|
+
attr_accessor :enterprise_authentication_app_link_configs
|
2186
|
+
|
2157
2187
|
# A managed configuration resource contains the set of managed properties
|
2158
2188
|
# defined by the app developer in the app's managed configurations schema, as
|
2159
2189
|
# well as any configuration variables defined for the user.
|
@@ -2186,6 +2216,7 @@ module Google
|
|
2186
2216
|
def update!(**args)
|
2187
2217
|
@auto_install_policy = args[:auto_install_policy] if args.key?(:auto_install_policy)
|
2188
2218
|
@auto_update_mode = args[:auto_update_mode] if args.key?(:auto_update_mode)
|
2219
|
+
@enterprise_authentication_app_link_configs = args[:enterprise_authentication_app_link_configs] if args.key?(:enterprise_authentication_app_link_configs)
|
2189
2220
|
@managed_configuration = args[:managed_configuration] if args.key?(:managed_configuration)
|
2190
2221
|
@product_id = args[:product_id] if args.key?(:product_id)
|
2191
2222
|
@track_ids = args[:track_ids] if args.key?(:track_ids)
|
@@ -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.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.5.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220407"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -190,6 +190,12 @@ module Google
|
|
190
190
|
include Google::Apis::Core::JsonObjectSupport
|
191
191
|
end
|
192
192
|
|
193
|
+
class EnterpriseAuthenticationAppLinkConfig
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
193
199
|
class ListEnterprisesResponse
|
194
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
201
|
|
@@ -780,6 +786,13 @@ module Google
|
|
780
786
|
end
|
781
787
|
end
|
782
788
|
|
789
|
+
class EnterpriseAuthenticationAppLinkConfig
|
790
|
+
# @private
|
791
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
792
|
+
property :uri, as: 'uri'
|
793
|
+
end
|
794
|
+
end
|
795
|
+
|
783
796
|
class ListEnterprisesResponse
|
784
797
|
# @private
|
785
798
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1120,6 +1133,8 @@ module Google
|
|
1120
1133
|
property :auto_install_policy, as: 'autoInstallPolicy', class: Google::Apis::AndroidenterpriseV1::AutoInstallPolicy, decorator: Google::Apis::AndroidenterpriseV1::AutoInstallPolicy::Representation
|
1121
1134
|
|
1122
1135
|
property :auto_update_mode, as: 'autoUpdateMode'
|
1136
|
+
collection :enterprise_authentication_app_link_configs, as: 'enterpriseAuthenticationAppLinkConfigs', class: Google::Apis::AndroidenterpriseV1::EnterpriseAuthenticationAppLinkConfig, decorator: Google::Apis::AndroidenterpriseV1::EnterpriseAuthenticationAppLinkConfig::Representation
|
1137
|
+
|
1123
1138
|
property :managed_configuration, as: 'managedConfiguration', class: Google::Apis::AndroidenterpriseV1::ManagedConfiguration, decorator: Google::Apis::AndroidenterpriseV1::ManagedConfiguration::Representation
|
1124
1139
|
|
1125
1140
|
property :product_id, as: 'productId'
|
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.11.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:
|
11
|
+
date: 2022-06-06 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.5'
|
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.5'
|
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-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.11.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.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Play EMM API V1
|