google-apis-firebaseappcheck_v1beta 0.45.0 → 0.47.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fa80ab2ea14f8afe80b91ab8d3c4fa57fa7593294fc840007f0791239104590a
|
|
4
|
+
data.tar.gz: 98ab5c406a9ad089fd81636e74ceea3f45e3d3ccec543d99b30e19c1adcf1d07
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 952a96aa1c0db103fefb7255ea009c133202f17ddba24b2d7f85109ca21d41ece8cb57dbc66f74a01613494fc52c878e65353a9f9f6c4649c17464f1f6a00797
|
|
7
|
+
data.tar.gz: 3a430dc80b7e1af1aaeea88b17572a32f6c09a56db66c354d71bfc546fa9f25365f1d2430ab0ad7b97f565e6284117e04562425a0f2a291ee7e8527729423a78
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-firebaseappcheck_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.47.0 (2026-01-18)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260110
|
|
6
|
+
|
|
7
|
+
### v0.46.0 (2025-09-07)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250901
|
|
10
|
+
* Regenerated using generator version 0.18.0
|
|
11
|
+
|
|
3
12
|
### v0.45.0 (2025-05-04)
|
|
4
13
|
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
|
@@ -601,6 +601,24 @@ module Google
|
|
|
601
601
|
# @return [String]
|
|
602
602
|
attr_accessor :custom_token
|
|
603
603
|
|
|
604
|
+
# Optional. When `limited_use` is set to `true`, this field specifies the
|
|
605
|
+
# desired `jti` claim (Section 4.1.7 of RFC 7519) in the returned App Check
|
|
606
|
+
# token. *Limited use* App Check tokens with the same `jti` will be counted as
|
|
607
|
+
# the same token for the purposes of replay protection. An error is returned if
|
|
608
|
+
# this field is specified without setting `limited_use` to `true`. The size of
|
|
609
|
+
# this field is limited to 500 bytes. If specified, its length must be at least
|
|
610
|
+
# 16 bytes. If this field is omitted or is empty and `limited_use` is set to `
|
|
611
|
+
# true`, a randomly generated `jti` claim with length between 16 and 500 bytes (
|
|
612
|
+
# inclusive) will be used in the returned App Check token. Leaving this field
|
|
613
|
+
# empty is only recommended if your custom attestation provider itself is not
|
|
614
|
+
# vulnerable to replay attacks. When `limited_use` is set to `false`, neither
|
|
615
|
+
# the presence nor the contents of the `jti` claim in the returned App Check
|
|
616
|
+
# token is specified. To ensure that the returned App Check token is eligible
|
|
617
|
+
# for limited use functionality, set `limited_use` to `true`.
|
|
618
|
+
# Corresponds to the JSON property `jti`
|
|
619
|
+
# @return [String]
|
|
620
|
+
attr_accessor :jti
|
|
621
|
+
|
|
604
622
|
# Specifies whether this attestation is for use in a *limited use* (`true`) or *
|
|
605
623
|
# session based* (`false`) context. To enable this attestation to be used with
|
|
606
624
|
# the *replay protection* feature, set this to `true`. The default value is `
|
|
@@ -617,6 +635,7 @@ module Google
|
|
|
617
635
|
# Update properties of this object
|
|
618
636
|
def update!(**args)
|
|
619
637
|
@custom_token = args[:custom_token] if args.key?(:custom_token)
|
|
638
|
+
@jti = args[:jti] if args.key?(:jti)
|
|
620
639
|
@limited_use = args[:limited_use] if args.key?(:limited_use)
|
|
621
640
|
end
|
|
622
641
|
end
|
|
@@ -994,6 +1013,44 @@ module Google
|
|
|
994
1013
|
class GoogleFirebaseAppcheckV1betaPlayIntegrityConfig
|
|
995
1014
|
include Google::Apis::Core::Hashable
|
|
996
1015
|
|
|
1016
|
+
# A settings object specifying account requirements for Android devices running
|
|
1017
|
+
# your app. These settings correspond to requirements on the [**account details**
|
|
1018
|
+
# field](https://developer.android.com/google/play/integrity/verdicts#account-
|
|
1019
|
+
# details-field) obtained from the Play Integrity API. See the [default
|
|
1020
|
+
# responses table](https://developer.android.com/google/play/integrity/setup#
|
|
1021
|
+
# default) for a quick summary. The default values for these settings work for
|
|
1022
|
+
# most apps, and are recommended.
|
|
1023
|
+
# Corresponds to the JSON property `accountDetails`
|
|
1024
|
+
# @return [Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAccountDetails]
|
|
1025
|
+
attr_accessor :account_details
|
|
1026
|
+
|
|
1027
|
+
# A settings object specifying application integrity requirements for Android
|
|
1028
|
+
# devices running your app. These settings correspond to requirements on the [**
|
|
1029
|
+
# application integrity** field](https://developer.android.com/google/play/
|
|
1030
|
+
# integrity/verdicts#application-integrity-field) obtained from the Play
|
|
1031
|
+
# Integrity API. See the [default responses table](https://developer.android.com/
|
|
1032
|
+
# google/play/integrity/setup#default) for a quick summary. The default values
|
|
1033
|
+
# for these settings work for most apps, and are recommended.
|
|
1034
|
+
# Corresponds to the JSON property `appIntegrity`
|
|
1035
|
+
# @return [Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAppIntegrity]
|
|
1036
|
+
attr_accessor :app_integrity
|
|
1037
|
+
|
|
1038
|
+
# A settings object specifying device integrity requirements for Android devices
|
|
1039
|
+
# running your app. These settings correspond to requirements on the [**device
|
|
1040
|
+
# integrity** field](https://developer.android.com/google/play/integrity/
|
|
1041
|
+
# verdicts#device-integrity-field) obtained from the Play Integrity API. See the
|
|
1042
|
+
# [default responses table](https://developer.android.com/google/play/integrity/
|
|
1043
|
+
# setup#default) for a quick summary. Warning: There are also [conditional](
|
|
1044
|
+
# https://developer.android.com/google/play/integrity/setup#conditional) as well
|
|
1045
|
+
# as [optional](https://developer.android.com/google/play/integrity/setup#
|
|
1046
|
+
# optional_device_information) responses that you can receive, but requires
|
|
1047
|
+
# additional explicit opt-in from you. The App Check API is **not** responsible
|
|
1048
|
+
# for any such opt-ins. The default values for these settings work for most apps,
|
|
1049
|
+
# and are recommended.
|
|
1050
|
+
# Corresponds to the JSON property `deviceIntegrity`
|
|
1051
|
+
# @return [Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigDeviceIntegrity]
|
|
1052
|
+
attr_accessor :device_integrity
|
|
1053
|
+
|
|
997
1054
|
# Required. The relative resource name of the Play Integrity configuration
|
|
998
1055
|
# object, in the format: ``` projects/`project_number`/apps/`app_id`/
|
|
999
1056
|
# playIntegrityConfig ```
|
|
@@ -1014,11 +1071,115 @@ module Google
|
|
|
1014
1071
|
|
|
1015
1072
|
# Update properties of this object
|
|
1016
1073
|
def update!(**args)
|
|
1074
|
+
@account_details = args[:account_details] if args.key?(:account_details)
|
|
1075
|
+
@app_integrity = args[:app_integrity] if args.key?(:app_integrity)
|
|
1076
|
+
@device_integrity = args[:device_integrity] if args.key?(:device_integrity)
|
|
1017
1077
|
@name = args[:name] if args.key?(:name)
|
|
1018
1078
|
@token_ttl = args[:token_ttl] if args.key?(:token_ttl)
|
|
1019
1079
|
end
|
|
1020
1080
|
end
|
|
1021
1081
|
|
|
1082
|
+
# A settings object specifying account requirements for Android devices running
|
|
1083
|
+
# your app. These settings correspond to requirements on the [**account details**
|
|
1084
|
+
# field](https://developer.android.com/google/play/integrity/verdicts#account-
|
|
1085
|
+
# details-field) obtained from the Play Integrity API. See the [default
|
|
1086
|
+
# responses table](https://developer.android.com/google/play/integrity/setup#
|
|
1087
|
+
# default) for a quick summary. The default values for these settings work for
|
|
1088
|
+
# most apps, and are recommended.
|
|
1089
|
+
class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAccountDetails
|
|
1090
|
+
include Google::Apis::Core::Hashable
|
|
1091
|
+
|
|
1092
|
+
# Specifies whether the caller must have received the [`LICENSED` verdict](https:
|
|
1093
|
+
# //developer.android.com/google/play/integrity/verdicts#account-details-field).
|
|
1094
|
+
# For additional details about scenarios where your users will receive this `
|
|
1095
|
+
# LICENSED` label, see [the default responses table](https://developer.android.
|
|
1096
|
+
# com/google/play/integrity/setup#default). If set to `true`, apps without the `
|
|
1097
|
+
# LICENSED` app licensing verdict will be rejected. If set to `false`, any app
|
|
1098
|
+
# licensing verdict is allowed. The default value is `false`.
|
|
1099
|
+
# Corresponds to the JSON property `requireLicensed`
|
|
1100
|
+
# @return [Boolean]
|
|
1101
|
+
attr_accessor :require_licensed
|
|
1102
|
+
alias_method :require_licensed?, :require_licensed
|
|
1103
|
+
|
|
1104
|
+
def initialize(**args)
|
|
1105
|
+
update!(**args)
|
|
1106
|
+
end
|
|
1107
|
+
|
|
1108
|
+
# Update properties of this object
|
|
1109
|
+
def update!(**args)
|
|
1110
|
+
@require_licensed = args[:require_licensed] if args.key?(:require_licensed)
|
|
1111
|
+
end
|
|
1112
|
+
end
|
|
1113
|
+
|
|
1114
|
+
# A settings object specifying application integrity requirements for Android
|
|
1115
|
+
# devices running your app. These settings correspond to requirements on the [**
|
|
1116
|
+
# application integrity** field](https://developer.android.com/google/play/
|
|
1117
|
+
# integrity/verdicts#application-integrity-field) obtained from the Play
|
|
1118
|
+
# Integrity API. See the [default responses table](https://developer.android.com/
|
|
1119
|
+
# google/play/integrity/setup#default) for a quick summary. The default values
|
|
1120
|
+
# for these settings work for most apps, and are recommended.
|
|
1121
|
+
class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAppIntegrity
|
|
1122
|
+
include Google::Apis::Core::Hashable
|
|
1123
|
+
|
|
1124
|
+
# Specifies whether your running app is allowed to have the `
|
|
1125
|
+
# UNRECOGNIZED_VERSION` [app recognition verdict](https://developer.android.com/
|
|
1126
|
+
# google/play/integrity/verdicts#application-integrity-field). Note that the app
|
|
1127
|
+
# recognition verdict `PLAY_RECOGNIZED` is a strong, comprehensive integrity
|
|
1128
|
+
# signal that takes into account various other signals, including conditional
|
|
1129
|
+
# and optional device integrity responses that you have opted into. If your app
|
|
1130
|
+
# is published off-Play, this field should be set to `true` to allow instances
|
|
1131
|
+
# of your app installed from off-Play sources to function. If set to `false`,
|
|
1132
|
+
# only `PLAY_RECOGNIZED` verdicts are allowed, and both `UNRECOGNIZED_VERSION`
|
|
1133
|
+
# and `UNEVALUATED` will be rejected. If set to `true`, any app recognition
|
|
1134
|
+
# verdict is allowed. The default value is `false`.
|
|
1135
|
+
# Corresponds to the JSON property `allowUnrecognizedVersion`
|
|
1136
|
+
# @return [Boolean]
|
|
1137
|
+
attr_accessor :allow_unrecognized_version
|
|
1138
|
+
alias_method :allow_unrecognized_version?, :allow_unrecognized_version
|
|
1139
|
+
|
|
1140
|
+
def initialize(**args)
|
|
1141
|
+
update!(**args)
|
|
1142
|
+
end
|
|
1143
|
+
|
|
1144
|
+
# Update properties of this object
|
|
1145
|
+
def update!(**args)
|
|
1146
|
+
@allow_unrecognized_version = args[:allow_unrecognized_version] if args.key?(:allow_unrecognized_version)
|
|
1147
|
+
end
|
|
1148
|
+
end
|
|
1149
|
+
|
|
1150
|
+
# A settings object specifying device integrity requirements for Android devices
|
|
1151
|
+
# running your app. These settings correspond to requirements on the [**device
|
|
1152
|
+
# integrity** field](https://developer.android.com/google/play/integrity/
|
|
1153
|
+
# verdicts#device-integrity-field) obtained from the Play Integrity API. See the
|
|
1154
|
+
# [default responses table](https://developer.android.com/google/play/integrity/
|
|
1155
|
+
# setup#default) for a quick summary. Warning: There are also [conditional](
|
|
1156
|
+
# https://developer.android.com/google/play/integrity/setup#conditional) as well
|
|
1157
|
+
# as [optional](https://developer.android.com/google/play/integrity/setup#
|
|
1158
|
+
# optional_device_information) responses that you can receive, but requires
|
|
1159
|
+
# additional explicit opt-in from you. The App Check API is **not** responsible
|
|
1160
|
+
# for any such opt-ins. The default values for these settings work for most apps,
|
|
1161
|
+
# and are recommended.
|
|
1162
|
+
class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigDeviceIntegrity
|
|
1163
|
+
include Google::Apis::Core::Hashable
|
|
1164
|
+
|
|
1165
|
+
# Specifies the minimum device integrity level in order for the device to be
|
|
1166
|
+
# considered valid. Any device with a device recognition verdict lower than this
|
|
1167
|
+
# level will be rejected. If this is unspecified, the default level is `
|
|
1168
|
+
# NO_INTEGRITY`.
|
|
1169
|
+
# Corresponds to the JSON property `minDeviceRecognitionLevel`
|
|
1170
|
+
# @return [String]
|
|
1171
|
+
attr_accessor :min_device_recognition_level
|
|
1172
|
+
|
|
1173
|
+
def initialize(**args)
|
|
1174
|
+
update!(**args)
|
|
1175
|
+
end
|
|
1176
|
+
|
|
1177
|
+
# Update properties of this object
|
|
1178
|
+
def update!(**args)
|
|
1179
|
+
@min_device_recognition_level = args[:min_device_recognition_level] if args.key?(:min_device_recognition_level)
|
|
1180
|
+
end
|
|
1181
|
+
end
|
|
1182
|
+
|
|
1022
1183
|
# A JWK as specified by [section 4 of RFC 7517](https://tools.ietf.org/html/
|
|
1023
1184
|
# rfc7517#section-4) and [section 6.3.1 of RFC 7518](https://tools.ietf.org/html/
|
|
1024
1185
|
# rfc7518#section-6.3.1).
|
|
@@ -1102,6 +1263,14 @@ module Google
|
|
|
1102
1263
|
class GoogleFirebaseAppcheckV1betaRecaptchaConfig
|
|
1103
1264
|
include Google::Apis::Core::Hashable
|
|
1104
1265
|
|
|
1266
|
+
# Specifies a minimum score required for a reCAPTCHA token to be considered
|
|
1267
|
+
# valid. If its score is greater than or equal to this value, it will be
|
|
1268
|
+
# accepted; otherwise, it will be rejected. The value must be between 0.0 and 1.
|
|
1269
|
+
# 0. The default value is 0.5.
|
|
1270
|
+
# Corresponds to the JSON property `minValidScore`
|
|
1271
|
+
# @return [Float]
|
|
1272
|
+
attr_accessor :min_valid_score
|
|
1273
|
+
|
|
1105
1274
|
# Required. The relative resource name of the reCAPTCHA v3 configuration object,
|
|
1106
1275
|
# in the format: ``` projects/`project_number`/apps/`app_id`/recaptchaConfig ```
|
|
1107
1276
|
# Corresponds to the JSON property `name`
|
|
@@ -1136,6 +1305,7 @@ module Google
|
|
|
1136
1305
|
|
|
1137
1306
|
# Update properties of this object
|
|
1138
1307
|
def update!(**args)
|
|
1308
|
+
@min_valid_score = args[:min_valid_score] if args.key?(:min_valid_score)
|
|
1139
1309
|
@name = args[:name] if args.key?(:name)
|
|
1140
1310
|
@site_secret = args[:site_secret] if args.key?(:site_secret)
|
|
1141
1311
|
@site_secret_set = args[:site_secret_set] if args.key?(:site_secret_set)
|
|
@@ -1157,6 +1327,16 @@ module Google
|
|
|
1157
1327
|
# @return [String]
|
|
1158
1328
|
attr_accessor :name
|
|
1159
1329
|
|
|
1330
|
+
# A settings object specifying risk tolerance and requirements for your
|
|
1331
|
+
# application. These settings correspond to requirements on the [**`riskAnalysis`
|
|
1332
|
+
# **](https://cloud.google.com/recaptcha/docs/interpret-assessment-website#
|
|
1333
|
+
# interpret_assessment) tuple in the assessment obtained from reCAPTCHA
|
|
1334
|
+
# Enterprise. The default values for these settings work for most apps, and are
|
|
1335
|
+
# recommended.
|
|
1336
|
+
# Corresponds to the JSON property `riskAnalysis`
|
|
1337
|
+
# @return [Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis]
|
|
1338
|
+
attr_accessor :risk_analysis
|
|
1339
|
+
|
|
1160
1340
|
# The score-based site key [created in reCAPTCHA Enterprise](https://cloud.
|
|
1161
1341
|
# google.com/recaptcha-enterprise/docs/create-key#creating_a_site_key) used to [
|
|
1162
1342
|
# invoke reCAPTCHA and generate the reCAPTCHA tokens](https://cloud.google.com/
|
|
@@ -1181,11 +1361,39 @@ module Google
|
|
|
1181
1361
|
# Update properties of this object
|
|
1182
1362
|
def update!(**args)
|
|
1183
1363
|
@name = args[:name] if args.key?(:name)
|
|
1364
|
+
@risk_analysis = args[:risk_analysis] if args.key?(:risk_analysis)
|
|
1184
1365
|
@site_key = args[:site_key] if args.key?(:site_key)
|
|
1185
1366
|
@token_ttl = args[:token_ttl] if args.key?(:token_ttl)
|
|
1186
1367
|
end
|
|
1187
1368
|
end
|
|
1188
1369
|
|
|
1370
|
+
# A settings object specifying risk tolerance and requirements for your
|
|
1371
|
+
# application. These settings correspond to requirements on the [**`riskAnalysis`
|
|
1372
|
+
# **](https://cloud.google.com/recaptcha/docs/interpret-assessment-website#
|
|
1373
|
+
# interpret_assessment) tuple in the assessment obtained from reCAPTCHA
|
|
1374
|
+
# Enterprise. The default values for these settings work for most apps, and are
|
|
1375
|
+
# recommended.
|
|
1376
|
+
class GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
|
|
1377
|
+
include Google::Apis::Core::Hashable
|
|
1378
|
+
|
|
1379
|
+
# Specifies a minimum score required for a reCAPTCHA token to be considered
|
|
1380
|
+
# valid. If its score is greater than or equal to this value, it will be
|
|
1381
|
+
# accepted; otherwise, it will be rejected. The value must be between 0.0 and 1.
|
|
1382
|
+
# 0. The default value is 0.5.
|
|
1383
|
+
# Corresponds to the JSON property `minValidScore`
|
|
1384
|
+
# @return [Float]
|
|
1385
|
+
attr_accessor :min_valid_score
|
|
1386
|
+
|
|
1387
|
+
def initialize(**args)
|
|
1388
|
+
update!(**args)
|
|
1389
|
+
end
|
|
1390
|
+
|
|
1391
|
+
# Update properties of this object
|
|
1392
|
+
def update!(**args)
|
|
1393
|
+
@min_valid_score = args[:min_valid_score] if args.key?(:min_valid_score)
|
|
1394
|
+
end
|
|
1395
|
+
end
|
|
1396
|
+
|
|
1189
1397
|
# An app's reCAPTCHA v3 configuration object. This configuration is used by
|
|
1190
1398
|
# ExchangeRecaptchaV3Token to validate reCAPTCHA tokens issued to apps by
|
|
1191
1399
|
# reCAPTCHA v3. It also controls certain properties of the returned `
|
|
@@ -1193,6 +1401,14 @@ module Google
|
|
|
1193
1401
|
class GoogleFirebaseAppcheckV1betaRecaptchaV3Config
|
|
1194
1402
|
include Google::Apis::Core::Hashable
|
|
1195
1403
|
|
|
1404
|
+
# Specifies a minimum score required for a reCAPTCHA token to be considered
|
|
1405
|
+
# valid. If its score is greater than or equal to this value, it will be
|
|
1406
|
+
# accepted; otherwise, it will be rejected. The value must be between 0.0 and 1.
|
|
1407
|
+
# 0. The default value is 0.5.
|
|
1408
|
+
# Corresponds to the JSON property `minValidScore`
|
|
1409
|
+
# @return [Float]
|
|
1410
|
+
attr_accessor :min_valid_score
|
|
1411
|
+
|
|
1196
1412
|
# Required. The relative resource name of the reCAPTCHA v3 configuration object,
|
|
1197
1413
|
# in the format: ``` projects/`project_number`/apps/`app_id`/recaptchaV3Config ``
|
|
1198
1414
|
# `
|
|
@@ -1228,6 +1444,7 @@ module Google
|
|
|
1228
1444
|
|
|
1229
1445
|
# Update properties of this object
|
|
1230
1446
|
def update!(**args)
|
|
1447
|
+
@min_valid_score = args[:min_valid_score] if args.key?(:min_valid_score)
|
|
1231
1448
|
@name = args[:name] if args.key?(:name)
|
|
1232
1449
|
@site_secret = args[:site_secret] if args.key?(:site_secret)
|
|
1233
1450
|
@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.
|
|
19
|
+
GEM_VERSION = "0.47.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260110"
|
|
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
|
|
|
@@ -481,6 +505,7 @@ module Google
|
|
|
481
505
|
# @private
|
|
482
506
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
483
507
|
property :custom_token, as: 'customToken'
|
|
508
|
+
property :jti, as: 'jti'
|
|
484
509
|
property :limited_use, as: 'limitedUse'
|
|
485
510
|
end
|
|
486
511
|
end
|
|
@@ -597,11 +622,38 @@ module Google
|
|
|
597
622
|
class GoogleFirebaseAppcheckV1betaPlayIntegrityConfig
|
|
598
623
|
# @private
|
|
599
624
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
625
|
+
property :account_details, as: 'accountDetails', class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAccountDetails, decorator: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAccountDetails::Representation
|
|
626
|
+
|
|
627
|
+
property :app_integrity, as: 'appIntegrity', class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAppIntegrity, decorator: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAppIntegrity::Representation
|
|
628
|
+
|
|
629
|
+
property :device_integrity, as: 'deviceIntegrity', class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigDeviceIntegrity, decorator: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPlayIntegrityConfigDeviceIntegrity::Representation
|
|
630
|
+
|
|
600
631
|
property :name, as: 'name'
|
|
601
632
|
property :token_ttl, as: 'tokenTtl'
|
|
602
633
|
end
|
|
603
634
|
end
|
|
604
635
|
|
|
636
|
+
class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAccountDetails
|
|
637
|
+
# @private
|
|
638
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
639
|
+
property :require_licensed, as: 'requireLicensed'
|
|
640
|
+
end
|
|
641
|
+
end
|
|
642
|
+
|
|
643
|
+
class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigAppIntegrity
|
|
644
|
+
# @private
|
|
645
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
646
|
+
property :allow_unrecognized_version, as: 'allowUnrecognizedVersion'
|
|
647
|
+
end
|
|
648
|
+
end
|
|
649
|
+
|
|
650
|
+
class GoogleFirebaseAppcheckV1betaPlayIntegrityConfigDeviceIntegrity
|
|
651
|
+
# @private
|
|
652
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
653
|
+
property :min_device_recognition_level, as: 'minDeviceRecognitionLevel'
|
|
654
|
+
end
|
|
655
|
+
end
|
|
656
|
+
|
|
605
657
|
class GoogleFirebaseAppcheckV1betaPublicJwk
|
|
606
658
|
# @private
|
|
607
659
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -625,6 +677,7 @@ module Google
|
|
|
625
677
|
class GoogleFirebaseAppcheckV1betaRecaptchaConfig
|
|
626
678
|
# @private
|
|
627
679
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
680
|
+
property :min_valid_score, as: 'minValidScore'
|
|
628
681
|
property :name, as: 'name'
|
|
629
682
|
property :site_secret, as: 'siteSecret'
|
|
630
683
|
property :site_secret_set, as: 'siteSecretSet'
|
|
@@ -636,14 +689,24 @@ module Google
|
|
|
636
689
|
# @private
|
|
637
690
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
638
691
|
property :name, as: 'name'
|
|
692
|
+
property :risk_analysis, as: 'riskAnalysis', class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis, decorator: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis::Representation
|
|
693
|
+
|
|
639
694
|
property :site_key, as: 'siteKey'
|
|
640
695
|
property :token_ttl, as: 'tokenTtl'
|
|
641
696
|
end
|
|
642
697
|
end
|
|
643
698
|
|
|
699
|
+
class GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfigRiskAnalysis
|
|
700
|
+
# @private
|
|
701
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
702
|
+
property :min_valid_score, as: 'minValidScore'
|
|
703
|
+
end
|
|
704
|
+
end
|
|
705
|
+
|
|
644
706
|
class GoogleFirebaseAppcheckV1betaRecaptchaV3Config
|
|
645
707
|
# @private
|
|
646
708
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
709
|
+
property :min_valid_score, as: 'minValidScore'
|
|
647
710
|
property :name, as: 'name'
|
|
648
711
|
property :site_secret, as: 'siteSecret'
|
|
649
712
|
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.
|
|
4
|
+
version: 0.47.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappcheck_v1beta/v0.47.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.
|
|
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: []
|