google-apis-androidenterprise_v1 0.7.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78bb1891913b5760e030673d3d367cf58fd680ef4c237b4e633d3f2f3c16a014
4
- data.tar.gz: c2c897bb5cf7e207cade0d79c7967f2de282611886aed3fa28bc3fc561625c53
3
+ metadata.gz: 58de56d7768242fef61f41a9475bbbdadd6c84123a526efe8dc385d0de105042
4
+ data.tar.gz: 9062fdb23b34536690e0da3f541889849f3dfec8ddf9a3de0f91f9bbec24f469
5
5
  SHA512:
6
- metadata.gz: 2ee54bf1bfd74bef8a2e5614fb82efec3bc6becd40fbc6cd88f4387ea40918f2a4e9db39a00cd6143bb5f8934d3e77f01b4428177f35c691e6c7709ab07b0bca
7
- data.tar.gz: c876c250d2bd9fe15ad9c10abc2edaddb4d73d631490a33126c358bb8d12fb7bcc76a9c9c25bdcfccdce36f0c37c6a35c1018f4ed9c9347b74f905572efcd798
6
+ metadata.gz: 66db5141a1f4ab987f672dd6d8bcf60b03dcc0bf3849dc26b4a46e2f6bf91a90a3e3d6849b5e886d8824a7fc1d2975cca8438226f4617054080230d03bbd46a5
7
+ data.tar.gz: 125d190a202c788afbde9152192e3f3c0b9a48701164ac037b4d448c9c2ab2262fc51e95452a4765ed7f144bd7d92e226f572a3f9c8805b0eb0878b81ce0e6dd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-androidenterprise_v1
2
2
 
3
+ ### v0.10.0 (2022-04-11)
4
+
5
+ * Regenerated from discovery document revision 20220407
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.9.0 (2021-12-14)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.8.0 (2021-10-20)
13
+
14
+ * Unspecified changes
15
+
3
16
  ### v0.7.0 (2021-07-28)
4
17
 
5
18
  * Regenerated from discovery document revision 20210723
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.authentication = # ... use the googleauth gem to create credentials
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.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Androidenterprise service in particular.)
67
67
 
@@ -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.7.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210723"
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.7.0
4
+ version: 0.10.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-08-02 00:00:00.000000000 Z
11
+ date: 2022-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androidenterprise_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.7.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androidenterprise_v1
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.10.0
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: []
65
65
  require_paths:
@@ -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.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Play EMM API V1