google-apis-firebaseappcheck_v1beta 0.26.0 → 0.27.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: d08101c78c4d515bec5a78f17b4ef39a1251a1278c9ab9fd26b5ecbadbfad0f9
|
|
4
|
+
data.tar.gz: ae576a3e50337c28d93182a34785cc1ae7b247f9a046a9742d06483aa11221d5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9fc8d26c6cc1e8eb4da203a3d4816bba3280a9a401380bb7b23940391c1dab3960a0ddb243947d3180d8ac7153d9e968a38145a1de50d0dafbf51c1d3879eb4
|
|
7
|
+
data.tar.gz: 61a8c6fa5ccd2f609118b7c24aad7650e93342957486a6fde86c2965a87ce509879c073988e32235d074f9827aad4ec104aa97a129a7cac730ece4131e45d35a
|
data/CHANGELOG.md
CHANGED
|
@@ -1161,7 +1161,8 @@ module Google
|
|
|
1161
1161
|
class GoogleFirebaseAppcheckV1betaVerifyAppCheckTokenRequest
|
|
1162
1162
|
include Google::Apis::Core::Hashable
|
|
1163
1163
|
|
|
1164
|
-
# Required. The App Check token to verify.
|
|
1164
|
+
# Required. The App Check token to verify. App Check tokens exchanged from the
|
|
1165
|
+
# SafetyNet provider are not supported; an HTTP 400 error will be returned.
|
|
1165
1166
|
# Corresponds to the JSON property `appCheckToken`
|
|
1166
1167
|
# @return [String]
|
|
1167
1168
|
attr_accessor :app_check_token
|
|
@@ -1181,11 +1182,12 @@ module Google
|
|
|
1181
1182
|
include Google::Apis::Core::Hashable
|
|
1182
1183
|
|
|
1183
1184
|
# Whether this token was already consumed. If this is the first time this method
|
|
1184
|
-
# has seen the given App Check token, this field will
|
|
1185
|
-
# The given token will then be marked as `already_consumed`
|
|
1186
|
-
# invocations of this method for that token. Note that if
|
|
1187
|
-
# token is invalid, an HTTP 403 error is returned instead of
|
|
1188
|
-
# containing this field, regardless whether the token was already
|
|
1185
|
+
# has seen the given App Check token, this field will be omitted from the
|
|
1186
|
+
# response. The given token will then be marked as `already_consumed` (set to `
|
|
1187
|
+
# true`) for all future invocations of this method for that token. Note that if
|
|
1188
|
+
# the given App Check token is invalid, an HTTP 403 error is returned instead of
|
|
1189
|
+
# a response containing this field, regardless whether the token was already
|
|
1190
|
+
# consumed.
|
|
1189
1191
|
# Corresponds to the JSON property `alreadyConsumed`
|
|
1190
1192
|
# @return [Boolean]
|
|
1191
1193
|
attr_accessor :already_consumed
|
|
@@ -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.27.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230515"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -93,13 +93,18 @@ module Google
|
|
|
93
93
|
# unsupported provider will cause an HTTP 400 error to be returned. Returns
|
|
94
94
|
# whether this token was already consumed before this call. If this is the first
|
|
95
95
|
# time this method has seen the given App Check token, the field `
|
|
96
|
-
# already_consumed`
|
|
97
|
-
# marked as `already_consumed` for all future invocations of
|
|
98
|
-
# that token. Note that if the given App Check token is invalid,
|
|
99
|
-
# error is returned instead of a response object, regardless whether
|
|
100
|
-
# was already consumed. Currently, when evaluating whether an App
|
|
101
|
-
# was already consumed, only calls to this exact method are counted.
|
|
102
|
-
# App Check token elsewhere will not mark the token as being already
|
|
96
|
+
# already_consumed` in the response will be absent. The given token will then be
|
|
97
|
+
# marked as `already_consumed` (set to `true`) for all future invocations of
|
|
98
|
+
# this method for that token. Note that if the given App Check token is invalid,
|
|
99
|
+
# an HTTP 403 error is returned instead of a response object, regardless whether
|
|
100
|
+
# the token was already consumed. Currently, when evaluating whether an App
|
|
101
|
+
# Check token was already consumed, only calls to this exact method are counted.
|
|
102
|
+
# Use of the App Check token elsewhere will not mark the token as being already
|
|
103
|
+
# consumed. The caller must have the [`firebaseappcheck.appCheckTokens.verify`](
|
|
104
|
+
# https://firebase.google.com/docs/projects/iam/permissions#app-check)
|
|
105
|
+
# permission to call this method. This permission is part of the [Firebase App
|
|
106
|
+
# Check Token Verifier role](https://firebase.google.com/docs/projects/iam/roles-
|
|
107
|
+
# predefined-product#app-check).
|
|
103
108
|
# @param [String] project
|
|
104
109
|
# Required. The relative resource name of the project for which the token was
|
|
105
110
|
# minted, in the format: ``` projects/`project_number` ``` If necessary, the `
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.27.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: 2023-05-
|
|
11
|
+
date: 2023-05-21 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-firebaseappcheck_v1beta/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappcheck_v1beta/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappcheck_v1beta/v0.27.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappcheck_v1beta
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|