google-apis-androidenterprise_v1 0.9.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: 47eaeb1b3f40008aa502f920012b1663507c9b6bfb23613a2c7fca190aed6a23
4
- data.tar.gz: a044e6dec4ee4d4500e3b76d138fe4c039d79a45171d9be0ebefd913d6e10572
3
+ metadata.gz: 58de56d7768242fef61f41a9475bbbdadd6c84123a526efe8dc385d0de105042
4
+ data.tar.gz: 9062fdb23b34536690e0da3f541889849f3dfec8ddf9a3de0f91f9bbec24f469
5
5
  SHA512:
6
- metadata.gz: 9119983d08cd8cab996f6a2edb728249a6d917ead437a6510f864c1caf41b323602c9184b50f0b44a8d2cc0189ea6f2fd90f1f6babe11ce1573596384cf6b6ee
7
- data.tar.gz: 9efdb202381640941e3686d997e9464290ce0ed6c93deb723dcd8c1f9d4adbe03b6c675b80c7de9231bf44804c21e3679eea3e95a9943191cf14909ef80d7b96
6
+ metadata.gz: 66db5141a1f4ab987f672dd6d8bcf60b03dcc0bf3849dc26b4a46e2f6bf91a90a3e3d6849b5e886d8824a7fc1d2975cca8438226f4617054080230d03bbd46a5
7
+ data.tar.gz: 125d190a202c788afbde9152192e3f3c0b9a48701164ac037b4d448c9c2ab2262fc51e95452a4765ed7f144bd7d92e226f572a3f9c8805b0eb0878b81ce0e6dd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.9.0 (2021-12-14)
4
9
 
5
10
  * Unspecified changes
@@ -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.9.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.9.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: 2022-01-10 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
@@ -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.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.10.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.3.4
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