google-apis-firebaseappcheck_v1beta 0.45.0 → 0.46.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: 4a97e3eee8e0b9879e8b3158a347e667da0e1e5c845969996c849bd0f9b286de
4
- data.tar.gz: 77c7fe55251cf2544c6edef9245383170a4896a0d720947b84c450973f0b45a3
3
+ metadata.gz: 2227c5667959304f6f296ddf42deb89db752ba2e7f58fb93e56846912207006d
4
+ data.tar.gz: 192ae2604c300c70f54017a006055f7597bddbca9be33d4b3ee559917e50443d
5
5
  SHA512:
6
- metadata.gz: a63c4a8e647232f256a05a7db3b53e6de267dcbb56894bd7817c9a690a7c25df70788753d14241a17b36ffe6e4a90070fe5bef4122a884406e34b1c653b59bc8
7
- data.tar.gz: d32de4da4e79045284f8c32fadf1018d1eb0ee5a15d605a6c7c0219b8ddcdf9722896ed7d7ae9910ed24cf4a3dfc576e30ef9f22ccc54c61a4835cb96ead13ab
6
+ metadata.gz: 477587121de7d07c8938316fc00fc52c850333180942f5c8d72d8edde2eae8ab7207e2919ab21cafe11b6b95be56031156ae79173ad3df9ca9d16a91bd511d9e
7
+ data.tar.gz: 5d5c0518f1d40e22d4f2bf815ece9c764a797c07e7ed64c5cd09da8a2d2bf9e7a9a53e9a462c733a13116f13a136d93bfc163a7ba862f3c35b427ad005faebde
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-firebaseappcheck_v1beta
2
2
 
3
+ ### v0.46.0 (2025-09-07)
4
+
5
+ * Regenerated from discovery document revision 20250901
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.45.0 (2025-05-04)
4
9
 
5
10
  * Regenerated using generator version 0.17.0
@@ -994,6 +994,44 @@ module Google
994
994
  class GoogleFirebaseAppcheckV1betaPlayIntegrityConfig
995
995
  include Google::Apis::Core::Hashable
996
996
 
997
+ # A settings object specifying account requirements for Android devices running
998
+ # your app. These settings correspond to requirements on the [**account details**
999
+ # field](https://developer.android.com/google/play/integrity/verdicts#account-
1000
+ # details-field) obtained from the Play Integrity API. See the [default
1001
+ # responses table](https://developer.android.com/google/play/integrity/setup#
1002
+ # default) for a quick summary. The default values for these settings work for
1003
+ # most apps, and are recommended.
1004
+ # Corresponds to the JSON property `accountDetails`
1005
+ # @return [Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAccountDetails]
1006
+ attr_accessor :account_details
1007
+
1008
+ # A settings object specifying application integrity requirements for Android
1009
+ # devices running your app. These settings correspond to requirements on the [**
1010
+ # application integrity** field](https://developer.android.com/google/play/
1011
+ # integrity/verdicts#application-integrity-field) obtained from the Play
1012
+ # Integrity API. See the [default responses table](https://developer.android.com/
1013
+ # google/play/integrity/setup#default) for a quick summary. The default values
1014
+ # for these settings work for most apps, and are recommended.
1015
+ # Corresponds to the JSON property `appIntegrity`
1016
+ # @return [Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAppIntegrity]
1017
+ attr_accessor :app_integrity
1018
+
1019
+ # A settings object specifying device integrity requirements for Android devices
1020
+ # running your app. These settings correspond to requirements on the [**device
1021
+ # integrity** field](https://developer.android.com/google/play/integrity/
1022
+ # verdicts#device-integrity-field) obtained from the Play Integrity API. See the
1023
+ # [default responses table](https://developer.android.com/google/play/integrity/
1024
+ # setup#default) for a quick summary. Warning: There are also [conditional](
1025
+ # https://developer.android.com/google/play/integrity/setup#conditional) as well
1026
+ # as [optional](https://developer.android.com/google/play/integrity/setup#
1027
+ # optional_device_information) responses that you can receive, but requires
1028
+ # additional explicit opt-in from you. The App Check API is **not** responsible
1029
+ # for any such opt-ins. The default values for these settings work for most apps,
1030
+ # and are recommended.
1031
+ # Corresponds to the JSON property `deviceIntegrity`
1032
+ # @return [Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigDeviceIntegrity]
1033
+ attr_accessor :device_integrity
1034
+
997
1035
  # Required. The relative resource name of the Play Integrity configuration
998
1036
  # object, in the format: ``` projects/`project_number`/apps/`app_id`/
999
1037
  # playIntegrityConfig ```
@@ -1014,11 +1052,115 @@ module Google
1014
1052
 
1015
1053
  # Update properties of this object
1016
1054
  def update!(**args)
1055
+ @account_details = args[:account_details] if args.key?(:account_details)
1056
+ @app_integrity = args[:app_integrity] if args.key?(:app_integrity)
1057
+ @device_integrity = args[:device_integrity] if args.key?(:device_integrity)
1017
1058
  @name = args[:name] if args.key?(:name)
1018
1059
  @token_ttl = args[:token_ttl] if args.key?(:token_ttl)
1019
1060
  end
1020
1061
  end
1021
1062
 
1063
+ # A settings object specifying account requirements for Android devices running
1064
+ # your app. These settings correspond to requirements on the [**account details**
1065
+ # field](https://developer.android.com/google/play/integrity/verdicts#account-
1066
+ # details-field) obtained from the Play Integrity API. See the [default
1067
+ # responses table](https://developer.android.com/google/play/integrity/setup#
1068
+ # default) for a quick summary. The default values for these settings work for
1069
+ # most apps, and are recommended.
1070
+ class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAccountDetails
1071
+ include Google::Apis::Core::Hashable
1072
+
1073
+ # Specifies whether the caller must have received the [`LICENSED` verdict](https:
1074
+ # //developer.android.com/google/play/integrity/verdicts#account-details-field).
1075
+ # For additional details about scenarios where your users will receive this `
1076
+ # LICENSED` label, see [the default responses table](https://developer.android.
1077
+ # com/google/play/integrity/setup#default). If set to `true`, apps without the `
1078
+ # LICENSED` app licensing verdict will be rejected. If set to `false`, any app
1079
+ # licensing verdict is allowed. The default value is `false`.
1080
+ # Corresponds to the JSON property `requireLicensed`
1081
+ # @return [Boolean]
1082
+ attr_accessor :require_licensed
1083
+ alias_method :require_licensed?, :require_licensed
1084
+
1085
+ def initialize(**args)
1086
+ update!(**args)
1087
+ end
1088
+
1089
+ # Update properties of this object
1090
+ def update!(**args)
1091
+ @require_licensed = args[:require_licensed] if args.key?(:require_licensed)
1092
+ end
1093
+ end
1094
+
1095
+ # A settings object specifying application integrity requirements for Android
1096
+ # devices running your app. These settings correspond to requirements on the [**
1097
+ # application integrity** field](https://developer.android.com/google/play/
1098
+ # integrity/verdicts#application-integrity-field) obtained from the Play
1099
+ # Integrity API. See the [default responses table](https://developer.android.com/
1100
+ # google/play/integrity/setup#default) for a quick summary. The default values
1101
+ # for these settings work for most apps, and are recommended.
1102
+ class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAppIntegrity
1103
+ include Google::Apis::Core::Hashable
1104
+
1105
+ # Specifies whether your running app is allowed to have the `
1106
+ # UNRECOGNIZED_VERSION` [app recognition verdict](https://developer.android.com/
1107
+ # google/play/integrity/verdicts#application-integrity-field). Note that the app
1108
+ # recognition verdict `PLAY_RECOGNIZED` is a strong, comprehensive integrity
1109
+ # signal that takes into account various other signals, including conditional
1110
+ # and optional device integrity responses that you have opted into. If your app
1111
+ # is published off-Play, this field should be set to `true` to allow instances
1112
+ # of your app installed from off-Play sources to function. If set to `false`,
1113
+ # only `PLAY_RECOGNIZED` verdicts are allowed, and both `UNRECOGNIZED_VERSION`
1114
+ # and `UNEVALUATED` will be rejected. If set to `true`, any app recognition
1115
+ # verdict is allowed. The default value is `false`.
1116
+ # Corresponds to the JSON property `allowUnrecognizedVersion`
1117
+ # @return [Boolean]
1118
+ attr_accessor :allow_unrecognized_version
1119
+ alias_method :allow_unrecognized_version?, :allow_unrecognized_version
1120
+
1121
+ def initialize(**args)
1122
+ update!(**args)
1123
+ end
1124
+
1125
+ # Update properties of this object
1126
+ def update!(**args)
1127
+ @allow_unrecognized_version = args[:allow_unrecognized_version] if args.key?(:allow_unrecognized_version)
1128
+ end
1129
+ end
1130
+
1131
+ # A settings object specifying device integrity requirements for Android devices
1132
+ # running your app. These settings correspond to requirements on the [**device
1133
+ # integrity** field](https://developer.android.com/google/play/integrity/
1134
+ # verdicts#device-integrity-field) obtained from the Play Integrity API. See the
1135
+ # [default responses table](https://developer.android.com/google/play/integrity/
1136
+ # setup#default) for a quick summary. Warning: There are also [conditional](
1137
+ # https://developer.android.com/google/play/integrity/setup#conditional) as well
1138
+ # as [optional](https://developer.android.com/google/play/integrity/setup#
1139
+ # optional_device_information) responses that you can receive, but requires
1140
+ # additional explicit opt-in from you. The App Check API is **not** responsible
1141
+ # for any such opt-ins. The default values for these settings work for most apps,
1142
+ # and are recommended.
1143
+ class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigDeviceIntegrity
1144
+ include Google::Apis::Core::Hashable
1145
+
1146
+ # Specifies the minimum device integrity level in order for the device to be
1147
+ # considered valid. Any device with a device recognition verdict lower than this
1148
+ # level will be rejected. If this is unspecified, the default level is `
1149
+ # NO_INTEGRITY`.
1150
+ # Corresponds to the JSON property `minDeviceRecognitionLevel`
1151
+ # @return [String]
1152
+ attr_accessor :min_device_recognition_level
1153
+
1154
+ def initialize(**args)
1155
+ update!(**args)
1156
+ end
1157
+
1158
+ # Update properties of this object
1159
+ def update!(**args)
1160
+ @min_device_recognition_level = args[:min_device_recognition_level] if args.key?(:min_device_recognition_level)
1161
+ end
1162
+ end
1163
+
1022
1164
  # A JWK as specified by [section 4 of RFC 7517](https://tools.ietf.org/html/
1023
1165
  # rfc7517#section-4) and [section 6.3.1 of RFC 7518](https://tools.ietf.org/html/
1024
1166
  # rfc7518#section-6.3.1).
@@ -1102,6 +1244,14 @@ module Google
1102
1244
  class GoogleFirebaseAppcheckV1betaRecaptchaConfig
1103
1245
  include Google::Apis::Core::Hashable
1104
1246
 
1247
+ # Specifies a minimum score required for a reCAPTCHA token to be considered
1248
+ # valid. If its score is greater than or equal to this value, it will be
1249
+ # accepted; otherwise, it will be rejected. The value must be between 0.0 and 1.
1250
+ # 0. The default value is 0.5.
1251
+ # Corresponds to the JSON property `minValidScore`
1252
+ # @return [Float]
1253
+ attr_accessor :min_valid_score
1254
+
1105
1255
  # Required. The relative resource name of the reCAPTCHA v3 configuration object,
1106
1256
  # in the format: ``` projects/`project_number`/apps/`app_id`/recaptchaConfig ```
1107
1257
  # Corresponds to the JSON property `name`
@@ -1136,6 +1286,7 @@ module Google
1136
1286
 
1137
1287
  # Update properties of this object
1138
1288
  def update!(**args)
1289
+ @min_valid_score = args[:min_valid_score] if args.key?(:min_valid_score)
1139
1290
  @name = args[:name] if args.key?(:name)
1140
1291
  @site_secret = args[:site_secret] if args.key?(:site_secret)
1141
1292
  @site_secret_set = args[:site_secret_set] if args.key?(:site_secret_set)
@@ -1157,6 +1308,16 @@ module Google
1157
1308
  # @return [String]
1158
1309
  attr_accessor :name
1159
1310
 
1311
+ # A settings object specifying risk tolerance and requirements for your
1312
+ # application. These settings correspond to requirements on the [**`riskAnalysis`
1313
+ # **](https://cloud.google.com/recaptcha/docs/interpret-assessment-website#
1314
+ # interpret_assessment) tuple in the assessment obtained from reCAPTCHA
1315
+ # Enterprise. The default values for these settings work for most apps, and are
1316
+ # recommended.
1317
+ # Corresponds to the JSON property `riskAnalysis`
1318
+ # @return [Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis]
1319
+ attr_accessor :risk_analysis
1320
+
1160
1321
  # The score-based site key [created in reCAPTCHA Enterprise](https://cloud.
1161
1322
  # google.com/recaptcha-enterprise/docs/create-key#creating_a_site_key) used to [
1162
1323
  # invoke reCAPTCHA and generate the reCAPTCHA tokens](https://cloud.google.com/
@@ -1181,11 +1342,39 @@ module Google
1181
1342
  # Update properties of this object
1182
1343
  def update!(**args)
1183
1344
  @name = args[:name] if args.key?(:name)
1345
+ @risk_analysis = args[:risk_analysis] if args.key?(:risk_analysis)
1184
1346
  @site_key = args[:site_key] if args.key?(:site_key)
1185
1347
  @token_ttl = args[:token_ttl] if args.key?(:token_ttl)
1186
1348
  end
1187
1349
  end
1188
1350
 
1351
+ # A settings object specifying risk tolerance and requirements for your
1352
+ # application. These settings correspond to requirements on the [**`riskAnalysis`
1353
+ # **](https://cloud.google.com/recaptcha/docs/interpret-assessment-website#
1354
+ # interpret_assessment) tuple in the assessment obtained from reCAPTCHA
1355
+ # Enterprise. The default values for these settings work for most apps, and are
1356
+ # recommended.
1357
+ class GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
1358
+ include Google::Apis::Core::Hashable
1359
+
1360
+ # Specifies a minimum score required for a reCAPTCHA token to be considered
1361
+ # valid. If its score is greater than or equal to this value, it will be
1362
+ # accepted; otherwise, it will be rejected. The value must be between 0.0 and 1.
1363
+ # 0. The default value is 0.5.
1364
+ # Corresponds to the JSON property `minValidScore`
1365
+ # @return [Float]
1366
+ attr_accessor :min_valid_score
1367
+
1368
+ def initialize(**args)
1369
+ update!(**args)
1370
+ end
1371
+
1372
+ # Update properties of this object
1373
+ def update!(**args)
1374
+ @min_valid_score = args[:min_valid_score] if args.key?(:min_valid_score)
1375
+ end
1376
+ end
1377
+
1189
1378
  # An app's reCAPTCHA v3 configuration object. This configuration is used by
1190
1379
  # ExchangeRecaptchaV3Token to validate reCAPTCHA tokens issued to apps by
1191
1380
  # reCAPTCHA v3. It also controls certain properties of the returned `
@@ -1193,6 +1382,14 @@ module Google
1193
1382
  class GoogleFirebaseAppcheckV1betaRecaptchaV3Config
1194
1383
  include Google::Apis::Core::Hashable
1195
1384
 
1385
+ # Specifies a minimum score required for a reCAPTCHA token to be considered
1386
+ # valid. If its score is greater than or equal to this value, it will be
1387
+ # accepted; otherwise, it will be rejected. The value must be between 0.0 and 1.
1388
+ # 0. The default value is 0.5.
1389
+ # Corresponds to the JSON property `minValidScore`
1390
+ # @return [Float]
1391
+ attr_accessor :min_valid_score
1392
+
1196
1393
  # Required. The relative resource name of the reCAPTCHA v3 configuration object,
1197
1394
  # in the format: ``` projects/`project_number`/apps/`app_id`/recaptchaV3Config ``
1198
1395
  # `
@@ -1228,6 +1425,7 @@ module Google
1228
1425
 
1229
1426
  # Update properties of this object
1230
1427
  def update!(**args)
1428
+ @min_valid_score = args[:min_valid_score] if args.key?(:min_valid_score)
1231
1429
  @name = args[:name] if args.key?(:name)
1232
1430
  @site_secret = args[:site_secret] if args.key?(:site_secret)
1233
1431
  @site_secret_set = args[:site_secret_set] if args.key?(:site_secret_set)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebaseappcheckV1beta
18
18
  # Version of the google-apis-firebaseappcheck_v1beta gem
19
- GEM_VERSION = "0.45.0"
19
+ GEM_VERSION = "0.46.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240930"
25
+ REVISION = "20250901"
26
26
  end
27
27
  end
28
28
  end
@@ -232,6 +232,24 @@ module Google
232
232
  include Google::Apis::Core::JsonObjectSupport
233
233
  end
234
234
 
235
+ class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAccountDetails
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
241
+ class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAppIntegrity
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
247
+ class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigDeviceIntegrity
248
+ class Representation < Google::Apis::Core::JsonRepresentation; end
249
+
250
+ include Google::Apis::Core::JsonObjectSupport
251
+ end
252
+
235
253
  class GoogleFirebaseAppcheckV1betaPublicJwk
236
254
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
255
 
@@ -256,6 +274,12 @@ module Google
256
274
  include Google::Apis::Core::JsonObjectSupport
257
275
  end
258
276
 
277
+ class GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
259
283
  class GoogleFirebaseAppcheckV1betaRecaptchaV3Config
260
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
285
 
@@ -597,11 +621,38 @@ module Google
597
621
  class GoogleFirebaseAppcheckV1betaPlayIntegrityConfig
598
622
  # @private
599
623
  class Representation < Google::Apis::Core::JsonRepresentation
624
+ property :account_details, as: 'accountDetails', class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAccountDetails, decorator: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAccountDetails::Representation
625
+
626
+ property :app_integrity, as: 'appIntegrity', class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAppIntegrity, decorator: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAppIntegrity::Representation
627
+
628
+ property :device_integrity, as: 'deviceIntegrity', class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigDeviceIntegrity, decorator: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigDeviceIntegrity::Representation
629
+
600
630
  property :name, as: 'name'
601
631
  property :token_ttl, as: 'tokenTtl'
602
632
  end
603
633
  end
604
634
 
635
+ class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAccountDetails
636
+ # @private
637
+ class Representation < Google::Apis::Core::JsonRepresentation
638
+ property :require_licensed, as: 'requireLicensed'
639
+ end
640
+ end
641
+
642
+ class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAppIntegrity
643
+ # @private
644
+ class Representation < Google::Apis::Core::JsonRepresentation
645
+ property :allow_unrecognized_version, as: 'allowUnrecognizedVersion'
646
+ end
647
+ end
648
+
649
+ class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigDeviceIntegrity
650
+ # @private
651
+ class Representation < Google::Apis::Core::JsonRepresentation
652
+ property :min_device_recognition_level, as: 'minDeviceRecognitionLevel'
653
+ end
654
+ end
655
+
605
656
  class GoogleFirebaseAppcheckV1betaPublicJwk
606
657
  # @private
607
658
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -625,6 +676,7 @@ module Google
625
676
  class GoogleFirebaseAppcheckV1betaRecaptchaConfig
626
677
  # @private
627
678
  class Representation < Google::Apis::Core::JsonRepresentation
679
+ property :min_valid_score, as: 'minValidScore'
628
680
  property :name, as: 'name'
629
681
  property :site_secret, as: 'siteSecret'
630
682
  property :site_secret_set, as: 'siteSecretSet'
@@ -636,14 +688,24 @@ module Google
636
688
  # @private
637
689
  class Representation < Google::Apis::Core::JsonRepresentation
638
690
  property :name, as: 'name'
691
+ property :risk_analysis, as: 'riskAnalysis', class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis, decorator: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis::Representation
692
+
639
693
  property :site_key, as: 'siteKey'
640
694
  property :token_ttl, as: 'tokenTtl'
641
695
  end
642
696
  end
643
697
 
698
+ class GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
699
+ # @private
700
+ class Representation < Google::Apis::Core::JsonRepresentation
701
+ property :min_valid_score, as: 'minValidScore'
702
+ end
703
+ end
704
+
644
705
  class GoogleFirebaseAppcheckV1betaRecaptchaV3Config
645
706
  # @private
646
707
  class Representation < Google::Apis::Core::JsonRepresentation
708
+ property :min_valid_score, as: 'minValidScore'
647
709
  property :name, as: 'name'
648
710
  property :site_secret, as: 'siteSecret'
649
711
  property :site_secret_set, as: 'siteSecretSet'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebaseappcheck_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.45.0
4
+ version: 0.46.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-firebaseappcheck_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappcheck_v1beta/v0.45.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappcheck_v1beta/v0.46.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappcheck_v1beta
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Firebase App Check API V1beta
79
79
  test_files: []