google-apis-androidmanagement_v1 0.114.0 → 0.115.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: 10fffdac82e5b8eb825cbba6d0a9b3198f0c8f31284d2a11923ea3395418cd00
4
- data.tar.gz: 37e5ad930a8762e333f1b0d9b3774149caeec22e16493c46f4926a0908467f8e
3
+ metadata.gz: 0fb37332373572fdbe94f1376035caf82cbd4d708c560d466a2b16407af4c564
4
+ data.tar.gz: 163a8addd5a74802bb420c641de749161f02eeb48861d0822f9b11b212664c39
5
5
  SHA512:
6
- metadata.gz: 81aad36823d1c314f5822a374000cff5dcfd0dce3ca6116baaa810686a6a01d24d3260d99020f631159517d2fd67e5ced9a1d1412474a5393722fbaa94a6ad38
7
- data.tar.gz: 4f14991b8b1998997ec2638fb26b28080ed3b2a0f9609fe4574dcee01e0ee936d621bf2d32374b21d6caa93a71f9df0755e7bfcbd29b4e7bb09b0e2c533ae0e9
6
+ metadata.gz: d492159bcbb7d66d208d394e3f5b8f112bbf31ea31724973fb35a179abb7b8b4e338ba835c49f1d564a684a6495065b22c3e4b2fc76bb84ed379a032e77a4cc9
7
+ data.tar.gz: f016c110a67337d1d800dd58c963bb76a641ea285fdee841df531012d1e5099b67b61532be0738986536e0e43d67873abae71804c75c29156e0023a58f97d456
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidmanagement_v1
2
2
 
3
+ ### v0.115.0 (2026-05-24)
4
+
5
+ * Regenerated from discovery document revision 20260521
6
+
3
7
  ### v0.114.0 (2026-04-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20260408
@@ -1085,14 +1085,19 @@ module Google
1085
1085
  # @return [String]
1086
1086
  attr_accessor :package_sha256_hash
1087
1087
 
1088
- # The SHA-1 hash of each android.content.pm.Signature (https://developer.android.
1089
- # com/reference/android/content/pm/Signature.html) associated with the app
1090
- # package. Each byte of each hash value is represented as a two-digit
1091
- # hexadecimal number.
1088
+ # Deprecated. Use signingKeyCerts instead. The SHA-1 hash of each android.
1089
+ # content.pm.Signature (https://developer.android.com/reference/android/content/
1090
+ # pm/Signature.html) associated with the app package. Each byte of each hash
1091
+ # value is represented as a two-digit hexadecimal number.
1092
1092
  # Corresponds to the JSON property `signingKeyCertFingerprints`
1093
1093
  # @return [Array<String>]
1094
1094
  attr_accessor :signing_key_cert_fingerprints
1095
1095
 
1096
+ # Output only. Signing key certificates of the app.
1097
+ # Corresponds to the JSON property `signingKeyCerts`
1098
+ # @return [Array<Google::Apis::AndroidmanagementV1::ApplicationSigningKeyCert>]
1099
+ attr_accessor :signing_key_certs
1100
+
1096
1101
  # Application state.
1097
1102
  # Corresponds to the JSON property `state`
1098
1103
  # @return [String]
@@ -1128,6 +1133,7 @@ module Google
1128
1133
  @package_name = args[:package_name] if args.key?(:package_name)
1129
1134
  @package_sha256_hash = args[:package_sha256_hash] if args.key?(:package_sha256_hash)
1130
1135
  @signing_key_cert_fingerprints = args[:signing_key_cert_fingerprints] if args.key?(:signing_key_cert_fingerprints)
1136
+ @signing_key_certs = args[:signing_key_certs] if args.key?(:signing_key_certs)
1131
1137
  @state = args[:state] if args.key?(:state)
1132
1138
  @user_facing_type = args[:user_facing_type] if args.key?(:user_facing_type)
1133
1139
  @version_code = args[:version_code] if args.key?(:version_code)
@@ -5320,6 +5326,11 @@ module Google
5320
5326
  attr_accessor :auto_time_required
5321
5327
  alias_method :auto_time_required?, :auto_time_required
5322
5328
 
5329
+ # Optional. The policy for the autofill service.
5330
+ # Corresponds to the JSON property `autofillPolicy`
5331
+ # @return [String]
5332
+ attr_accessor :autofill_policy
5333
+
5323
5334
  # This field has no effect.
5324
5335
  # Corresponds to the JSON property `blockApplicationsEnabled`
5325
5336
  # @return [Boolean]
@@ -5926,6 +5937,7 @@ module Google
5926
5937
  @assist_content_policy = args[:assist_content_policy] if args.key?(:assist_content_policy)
5927
5938
  @auto_date_and_time_zone = args[:auto_date_and_time_zone] if args.key?(:auto_date_and_time_zone)
5928
5939
  @auto_time_required = args[:auto_time_required] if args.key?(:auto_time_required)
5940
+ @autofill_policy = args[:autofill_policy] if args.key?(:autofill_policy)
5929
5941
  @block_applications_enabled = args[:block_applications_enabled] if args.key?(:block_applications_enabled)
5930
5942
  @bluetooth_config_disabled = args[:bluetooth_config_disabled] if args.key?(:bluetooth_config_disabled)
5931
5943
  @bluetooth_contact_sharing_disabled = args[:bluetooth_contact_sharing_disabled] if args.key?(:bluetooth_contact_sharing_disabled)
@@ -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.114.0"
19
+ GEM_VERSION = "0.115.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260408"
25
+ REVISION = "20260521"
26
26
  end
27
27
  end
28
28
  end
@@ -1297,6 +1297,8 @@ module Google
1297
1297
  property :package_name, as: 'packageName'
1298
1298
  property :package_sha256_hash, as: 'packageSha256Hash'
1299
1299
  collection :signing_key_cert_fingerprints, as: 'signingKeyCertFingerprints'
1300
+ collection :signing_key_certs, as: 'signingKeyCerts', class: Google::Apis::AndroidmanagementV1::ApplicationSigningKeyCert, decorator: Google::Apis::AndroidmanagementV1::ApplicationSigningKeyCert::Representation
1301
+
1300
1302
  property :state, as: 'state'
1301
1303
  property :user_facing_type, as: 'userFacingType'
1302
1304
  property :version_code, as: 'versionCode'
@@ -2398,6 +2400,7 @@ module Google
2398
2400
  property :assist_content_policy, as: 'assistContentPolicy'
2399
2401
  property :auto_date_and_time_zone, as: 'autoDateAndTimeZone'
2400
2402
  property :auto_time_required, as: 'autoTimeRequired'
2403
+ property :autofill_policy, as: 'autofillPolicy'
2401
2404
  property :block_applications_enabled, as: 'blockApplicationsEnabled'
2402
2405
  property :bluetooth_config_disabled, as: 'bluetoothConfigDisabled'
2403
2406
  property :bluetooth_contact_sharing_disabled, as: 'bluetoothContactSharingDisabled'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-androidmanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.114.0
4
+ version: 0.115.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-androidmanagement_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.114.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.115.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1
62
62
  rdoc_options: []
63
63
  require_paths: