google-apis-recaptchaenterprise_v1 0.62.0 → 0.64.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: 93c893281d3dbd1c8f26e9ec96161dba4ecb6e5011c19144d3e00589990859c6
|
|
4
|
+
data.tar.gz: fb8a15cf57d18c410567292719dd3d76b8c78ab0f665a76a6634e7b9241914a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a82fcddc4c833efc0b3436edcc9ed951592671a410e2aebfbc9f9f03f6ba053e88d54626564411f858ec1e7c6d07bb1492cd4cf9b1cc292b2a67115fd1f91a0
|
|
7
|
+
data.tar.gz: 0f4b8a2bdee43f9bd78b9ec4a09245c5da87ef12fae159f8c6e67d55517ea50bf5026c670bbe710bc3c340f0dbe7ed47ecb81b64029676259138f37522728a5b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-recaptchaenterprise_v1
|
|
2
2
|
|
|
3
|
+
### v0.64.0 (2025-10-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251006
|
|
6
|
+
|
|
7
|
+
### v0.63.0 (2025-10-05)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250928
|
|
10
|
+
|
|
3
11
|
### v0.62.0 (2025-07-13)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250706
|
|
@@ -174,6 +174,11 @@ module Google
|
|
|
174
174
|
# @return [String]
|
|
175
175
|
attr_accessor :hashed_account_id
|
|
176
176
|
|
|
177
|
+
# Details on a phone authentication event
|
|
178
|
+
# Corresponds to the JSON property `phoneAuthenticationEvent`
|
|
179
|
+
# @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1PhoneAuthenticationEvent]
|
|
180
|
+
attr_accessor :phone_authentication_event
|
|
181
|
+
|
|
177
182
|
# Optional. Reasons for the annotation that are assigned to the event.
|
|
178
183
|
# Corresponds to the JSON property `reasons`
|
|
179
184
|
# @return [Array<String>]
|
|
@@ -193,6 +198,7 @@ module Google
|
|
|
193
198
|
@account_id = args[:account_id] if args.key?(:account_id)
|
|
194
199
|
@annotation = args[:annotation] if args.key?(:annotation)
|
|
195
200
|
@hashed_account_id = args[:hashed_account_id] if args.key?(:hashed_account_id)
|
|
201
|
+
@phone_authentication_event = args[:phone_authentication_event] if args.key?(:phone_authentication_event)
|
|
196
202
|
@reasons = args[:reasons] if args.key?(:reasons)
|
|
197
203
|
@transaction_event = args[:transaction_event] if args.key?(:transaction_event)
|
|
198
204
|
end
|
|
@@ -564,8 +570,9 @@ module Google
|
|
|
564
570
|
# @return [String]
|
|
565
571
|
attr_accessor :user_ip_address
|
|
566
572
|
|
|
567
|
-
# Optional. Flag for running WAF token assessment. If
|
|
568
|
-
# specified, and have been created by a WAF-enabled
|
|
573
|
+
# Optional. Flag for running Web Application Firewall (WAF) token assessment. If
|
|
574
|
+
# enabled, the token must be specified, and have been created by a WAF-enabled
|
|
575
|
+
# key.
|
|
569
576
|
# Corresponds to the JSON property `wafTokenAssessment`
|
|
570
577
|
# @return [Boolean]
|
|
571
578
|
attr_accessor :waf_token_assessment
|
|
@@ -1397,6 +1404,33 @@ module Google
|
|
|
1397
1404
|
end
|
|
1398
1405
|
end
|
|
1399
1406
|
|
|
1407
|
+
# Details on a phone authentication event
|
|
1408
|
+
class GoogleCloudRecaptchaenterpriseV1PhoneAuthenticationEvent
|
|
1409
|
+
include Google::Apis::Core::Hashable
|
|
1410
|
+
|
|
1411
|
+
# Optional. The time at which the multi-factor authentication event (challenge
|
|
1412
|
+
# or verification) occurred.
|
|
1413
|
+
# Corresponds to the JSON property `eventTime`
|
|
1414
|
+
# @return [String]
|
|
1415
|
+
attr_accessor :event_time
|
|
1416
|
+
|
|
1417
|
+
# Required. Phone number in E.164 format for which a multi-factor authentication
|
|
1418
|
+
# challenge was initiated, succeeded, or failed.
|
|
1419
|
+
# Corresponds to the JSON property `phoneNumber`
|
|
1420
|
+
# @return [String]
|
|
1421
|
+
attr_accessor :phone_number
|
|
1422
|
+
|
|
1423
|
+
def initialize(**args)
|
|
1424
|
+
update!(**args)
|
|
1425
|
+
end
|
|
1426
|
+
|
|
1427
|
+
# Update properties of this object
|
|
1428
|
+
def update!(**args)
|
|
1429
|
+
@event_time = args[:event_time] if args.key?(:event_time)
|
|
1430
|
+
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
|
1431
|
+
end
|
|
1432
|
+
end
|
|
1433
|
+
|
|
1400
1434
|
# Assessment for Phone Fraud
|
|
1401
1435
|
class GoogleCloudRecaptchaenterpriseV1PhoneFraudAssessment
|
|
1402
1436
|
include Google::Apis::Core::Hashable
|
|
@@ -1614,7 +1648,7 @@ module Google
|
|
|
1614
1648
|
include Google::Apis::Core::Hashable
|
|
1615
1649
|
|
|
1616
1650
|
# Output only. Challenge information for POLICY_BASED_CHALLENGE and INVISIBLE
|
|
1617
|
-
# keys
|
|
1651
|
+
# keys.
|
|
1618
1652
|
# Corresponds to the JSON property `challenge`
|
|
1619
1653
|
# @return [String]
|
|
1620
1654
|
attr_accessor :challenge
|
|
@@ -2297,12 +2331,13 @@ module Google
|
|
|
2297
2331
|
class GoogleCloudRecaptchaenterpriseV1WafSettings
|
|
2298
2332
|
include Google::Apis::Core::Hashable
|
|
2299
2333
|
|
|
2300
|
-
# Required. The WAF feature for which this key is
|
|
2334
|
+
# Required. The Web Application Firewall (WAF) feature for which this key is
|
|
2335
|
+
# enabled.
|
|
2301
2336
|
# Corresponds to the JSON property `wafFeature`
|
|
2302
2337
|
# @return [String]
|
|
2303
2338
|
attr_accessor :waf_feature
|
|
2304
2339
|
|
|
2305
|
-
# Required. The WAF service that uses this key.
|
|
2340
|
+
# Required. The Web Application Firewall (WAF) service that uses this key.
|
|
2306
2341
|
# Corresponds to the JSON property `wafService`
|
|
2307
2342
|
# @return [String]
|
|
2308
2343
|
attr_accessor :waf_service
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module RecaptchaenterpriseV1
|
|
18
18
|
# Version of the google-apis-recaptchaenterprise_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.64.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 = "
|
|
25
|
+
REVISION = "20251006"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -274,6 +274,12 @@ module Google
|
|
|
274
274
|
include Google::Apis::Core::JsonObjectSupport
|
|
275
275
|
end
|
|
276
276
|
|
|
277
|
+
class GoogleCloudRecaptchaenterpriseV1PhoneAuthenticationEvent
|
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
279
|
+
|
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
281
|
+
end
|
|
282
|
+
|
|
277
283
|
class GoogleCloudRecaptchaenterpriseV1PhoneFraudAssessment
|
|
278
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
279
285
|
|
|
@@ -507,6 +513,8 @@ module Google
|
|
|
507
513
|
property :account_id, as: 'accountId'
|
|
508
514
|
property :annotation, as: 'annotation'
|
|
509
515
|
property :hashed_account_id, :base64 => true, as: 'hashedAccountId'
|
|
516
|
+
property :phone_authentication_event, as: 'phoneAuthenticationEvent', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1PhoneAuthenticationEvent, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1PhoneAuthenticationEvent::Representation
|
|
517
|
+
|
|
510
518
|
collection :reasons, as: 'reasons'
|
|
511
519
|
property :transaction_event, as: 'transactionEvent', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1TransactionEvent, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1TransactionEvent::Representation
|
|
512
520
|
|
|
@@ -874,6 +882,14 @@ module Google
|
|
|
874
882
|
end
|
|
875
883
|
end
|
|
876
884
|
|
|
885
|
+
class GoogleCloudRecaptchaenterpriseV1PhoneAuthenticationEvent
|
|
886
|
+
# @private
|
|
887
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
888
|
+
property :event_time, as: 'eventTime'
|
|
889
|
+
property :phone_number, as: 'phoneNumber'
|
|
890
|
+
end
|
|
891
|
+
end
|
|
892
|
+
|
|
877
893
|
class GoogleCloudRecaptchaenterpriseV1PhoneFraudAssessment
|
|
878
894
|
# @private
|
|
879
895
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-recaptchaenterprise_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.64.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-recaptchaenterprise_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.64.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-recaptchaenterprise_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|