google-apis-androidmanagement_v1 0.17.0 → 0.18.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: 9777f322f7217b98daac1d5ef583111b57555b2c1dd68f660aa3aae2f1b13681
4
- data.tar.gz: b7fbb01c415889c723a6ca15d2ffeec5cc320d7011bf5bf3139beabb2823585e
3
+ metadata.gz: c7b1bea816775baaef6ad67d632214e5df24f67d5da36ad119156b8ddfb46d85
4
+ data.tar.gz: f9eab61ff75175ffec8ff3e7c5e2ec8510d89cfa5c3ab10df8ae189c701b5c10
5
5
  SHA512:
6
- metadata.gz: 2864720fc1d403a388781a0fb3a7c812586597527e001765f530b81718edf6ab276cb81d946730935268b9dd80b2fc74de2b9cae823da86c13d86ef292da2fcf
7
- data.tar.gz: 6bac7beb61b54545bdb14d7928380d84dc15cc4dd14116ede89daec0e6cf6f60753928079e5b4e0797c260d1a55cd855587eadd4ef8e70b23e1cfc32cc92c69c
6
+ metadata.gz: 86b0871328693425c6122eea89095eff2fb35df6cb7b355c65ade7c502c2764704dd74c4f459845871bb37103ca7835132e918d48639737f92affb33341c97fd
7
+ data.tar.gz: 1392be72259de02934fe1e0750ccda412cca0a46717fa69db810948c200a72b963ffff1c735fee8dd5285b1143a75f2c4af257fe52afd7ce0cc0c74ff6730a40
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidmanagement_v1
2
2
 
3
+ ### v0.18.0 (2021-09-17)
4
+
5
+ * Regenerated from discovery document revision 20210916
6
+
3
7
  ### v0.17.0 (2021-09-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20210825
@@ -301,6 +301,12 @@ module Google
301
301
  attr_accessor :disabled
302
302
  alias_method :disabled?, :disabled
303
303
 
304
+ # Configuration to enable an app as an extension app, with the capability of
305
+ # interacting with Android Device Policy offline.
306
+ # Corresponds to the JSON property `extensionConfig`
307
+ # @return [Google::Apis::AndroidmanagementV1::ExtensionConfig]
308
+ attr_accessor :extension_config
309
+
304
310
  # The type of installation to perform.
305
311
  # Corresponds to the JSON property `installType`
306
312
  # @return [String]
@@ -364,6 +370,7 @@ module Google
364
370
  @default_permission_policy = args[:default_permission_policy] if args.key?(:default_permission_policy)
365
371
  @delegated_scopes = args[:delegated_scopes] if args.key?(:delegated_scopes)
366
372
  @disabled = args[:disabled] if args.key?(:disabled)
373
+ @extension_config = args[:extension_config] if args.key?(:extension_config)
367
374
  @install_type = args[:install_type] if args.key?(:install_type)
368
375
  @lock_task_allowed = args[:lock_task_allowed] if args.key?(:lock_task_allowed)
369
376
  @managed_configuration = args[:managed_configuration] if args.key?(:managed_configuration)
@@ -1447,6 +1454,41 @@ module Google
1447
1454
  end
1448
1455
  end
1449
1456
 
1457
+ # Configuration to enable an app as an extension app, with the capability of
1458
+ # interacting with Android Device Policy offline.
1459
+ class ExtensionConfig
1460
+ include Google::Apis::Core::Hashable
1461
+
1462
+ # Fully qualified class name of the receiver service class for Android Device
1463
+ # Policy to notify the extension app of any local command status updates.
1464
+ # Corresponds to the JSON property `notificationReceiver`
1465
+ # @return [String]
1466
+ attr_accessor :notification_receiver
1467
+
1468
+ # Hex-encoded SHA256 hash of the signing certificate of the extension app. Only
1469
+ # hexadecimal string representations of 64 characters are valid.If not specified,
1470
+ # the signature for the corresponding package name is obtained from the Play
1471
+ # Store instead.If this list is empty, the signature of the extension app on the
1472
+ # device must match the signature obtained from the Play Store for the app to be
1473
+ # able to communicate with Android Device Policy.If this list is not empty, the
1474
+ # signature of the extension app on the device must match one of the entries in
1475
+ # this list for the app to be able to communicate with Android Device Policy.In
1476
+ # production use cases, it is recommended to leave this empty.
1477
+ # Corresponds to the JSON property `signingKeyFingerprintsSha256`
1478
+ # @return [Array<String>]
1479
+ attr_accessor :signing_key_fingerprints_sha256
1480
+
1481
+ def initialize(**args)
1482
+ update!(**args)
1483
+ end
1484
+
1485
+ # Update properties of this object
1486
+ def update!(**args)
1487
+ @notification_receiver = args[:notification_receiver] if args.key?(:notification_receiver)
1488
+ @signing_key_fingerprints_sha256 = args[:signing_key_fingerprints_sha256] if args.key?(:signing_key_fingerprints_sha256)
1489
+ end
1490
+ end
1491
+
1450
1492
  # Data hosted at an external location. The data is to be downloaded by Android
1451
1493
  # Device Policy and verified against the hash.
1452
1494
  class ExternalData
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AndroidmanagementV1
18
18
  # Version of the google-apis-androidmanagement_v1 gem
19
- GEM_VERSION = "0.17.0"
19
+ GEM_VERSION = "0.18.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210825"
25
+ REVISION = "20210916"
26
26
  end
27
27
  end
28
28
  end
@@ -172,6 +172,12 @@ module Google
172
172
  include Google::Apis::Core::JsonObjectSupport
173
173
  end
174
174
 
175
+ class ExtensionConfig
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
175
181
  class ExternalData
176
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
183
 
@@ -552,6 +558,8 @@ module Google
552
558
  property :default_permission_policy, as: 'defaultPermissionPolicy'
553
559
  collection :delegated_scopes, as: 'delegatedScopes'
554
560
  property :disabled, as: 'disabled'
561
+ property :extension_config, as: 'extensionConfig', class: Google::Apis::AndroidmanagementV1::ExtensionConfig, decorator: Google::Apis::AndroidmanagementV1::ExtensionConfig::Representation
562
+
555
563
  property :install_type, as: 'installType'
556
564
  property :lock_task_allowed, as: 'lockTaskAllowed'
557
565
  hash :managed_configuration, as: 'managedConfiguration'
@@ -805,6 +813,14 @@ module Google
805
813
  end
806
814
  end
807
815
 
816
+ class ExtensionConfig
817
+ # @private
818
+ class Representation < Google::Apis::Core::JsonRepresentation
819
+ property :notification_receiver, as: 'notificationReceiver'
820
+ collection :signing_key_fingerprints_sha256, as: 'signingKeyFingerprintsSha256'
821
+ end
822
+ end
823
+
808
824
  class ExternalData
809
825
  # @private
810
826
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-androidmanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.18.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-09-06 00:00:00.000000000 Z
11
+ date: 2021-09-20 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/master/generated/google-apis-androidmanagement_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.18.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androidmanagement_v1
63
63
  post_install_message:
64
64
  rdoc_options: []