google-apis-recaptchaenterprise_v1 0.66.0 → 0.67.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: 01b56586fab03c0e6a6de31c621f8587c4bb1f002c95d69550708f378737f6ef
4
- data.tar.gz: aba2cc3c81d940def0df1d51afd027beb4203ab165a5ebd746569213dca4054b
3
+ metadata.gz: e9aa1e98869dc1ab64944d2363db103ea0911e82f7e995eedf65f7207c3f8ad5
4
+ data.tar.gz: ff6ad83037c9f58f726ab96aae4c8ab0a774e094fdfd48070e3831062f36e010
5
5
  SHA512:
6
- metadata.gz: f6e042ed62b831ad69e66b261afe620f0bef0e84b6dd050d806b4d271460ad600c90ddaab761e46378b29a10f8bac60bde61209f52cbaf18c106df6226b5f6b6
7
- data.tar.gz: 44a190224cadc41de29167f87666972e8c729976413e4669879dc1347651d170d8d4da566186f4836d16e68890ef0d6d686f4836b3c5aeffde4f43603ec1d950
6
+ metadata.gz: fd30fe90aa4815836cef8bfc5b9b1a31e727c760055c2700733a4705ba7516cb4b1de3c1645d3ec3e72b719e52754b8acc78bea4dd52a2833943d70ceb48d23d
7
+ data.tar.gz: 4336fcb7bacb2c21609ae53c7c86810be7344bee727ef596007c396273154b0bfb15b05d23bada9cdd66c6dc1c886df89fd3ebc69d4f514cc77c4c7e72099645
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-recaptchaenterprise_v1
2
2
 
3
+ ### v0.67.0 (2026-03-15)
4
+
5
+ * Regenerated from discovery document revision 20260302
6
+
3
7
  ### v0.66.0 (2025-12-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20251201
@@ -26,6 +26,11 @@ module Google
26
26
  class GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessment
27
27
  include Google::Apis::Core::Hashable
28
28
 
29
+ # Account takeover risk assessment.
30
+ # Corresponds to the JSON property `accountTakeoverVerdict`
31
+ # @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTakeoverVerdict]
32
+ attr_accessor :account_takeover_verdict
33
+
29
34
  # Output only. Labels for this request.
30
35
  # Corresponds to the JSON property `labels`
31
36
  # @return [Array<String>]
@@ -37,10 +42,85 @@ module Google
37
42
 
38
43
  # Update properties of this object
39
44
  def update!(**args)
45
+ @account_takeover_verdict = args[:account_takeover_verdict] if args.key?(:account_takeover_verdict)
40
46
  @labels = args[:labels] if args.key?(:labels)
41
47
  end
42
48
  end
43
49
 
50
+ # Risk explainability reasons for account defender.
51
+ class GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountRiskReason
52
+ include Google::Apis::Core::Hashable
53
+
54
+ # Output only. A risk reason associated with this request.
55
+ # Corresponds to the JSON property `reason`
56
+ # @return [String]
57
+ attr_accessor :reason
58
+
59
+ def initialize(**args)
60
+ update!(**args)
61
+ end
62
+
63
+ # Update properties of this object
64
+ def update!(**args)
65
+ @reason = args[:reason] if args.key?(:reason)
66
+ end
67
+ end
68
+
69
+ # Account takeover risk assessment.
70
+ class GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTakeoverVerdict
71
+ include Google::Apis::Core::Hashable
72
+
73
+ # Output only. Account takeover attempt probability. Values are from 0.0 (lowest
74
+ # risk) to 1.0 (highest risk).
75
+ # Corresponds to the JSON property `risk`
76
+ # @return [Float]
77
+ attr_accessor :risk
78
+
79
+ # Output only. Unordered list. Reasons why the request appears risky. Risk
80
+ # reasons can be returned even if the risk is low, as trustworthy requests can
81
+ # still have some risk signals.
82
+ # Corresponds to the JSON property `riskReasons`
83
+ # @return [Array<Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountRiskReason>]
84
+ attr_accessor :risk_reasons
85
+
86
+ # Output only. Unordered list. Reasons why the request appears trustworthy.
87
+ # Trust reasons can be returned even if the risk is high, as risky requests can
88
+ # still have some trust signals.
89
+ # Corresponds to the JSON property `trustReasons`
90
+ # @return [Array<Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTrustReason>]
91
+ attr_accessor :trust_reasons
92
+
93
+ def initialize(**args)
94
+ update!(**args)
95
+ end
96
+
97
+ # Update properties of this object
98
+ def update!(**args)
99
+ @risk = args[:risk] if args.key?(:risk)
100
+ @risk_reasons = args[:risk_reasons] if args.key?(:risk_reasons)
101
+ @trust_reasons = args[:trust_reasons] if args.key?(:trust_reasons)
102
+ end
103
+ end
104
+
105
+ # Trust explainability reasons for account defender.
106
+ class GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTrustReason
107
+ include Google::Apis::Core::Hashable
108
+
109
+ # Output only. A trust reason associated with this request.
110
+ # Corresponds to the JSON property `reason`
111
+ # @return [String]
112
+ attr_accessor :reason
113
+
114
+ def initialize(**args)
115
+ update!(**args)
116
+ end
117
+
118
+ # Update properties of this object
119
+ def update!(**args)
120
+ @reason = args[:reason] if args.key?(:reason)
121
+ end
122
+ end
123
+
44
124
  # Information about account verification, used for identity verification.
45
125
  class GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo
46
126
  include Google::Apis::Core::Hashable
@@ -1659,8 +1739,9 @@ module Google
1659
1739
  # @return [String]
1660
1740
  attr_accessor :challenge
1661
1741
 
1662
- # Output only. Extended verdict reasons to be used for experimentation only. The
1663
- # set of possible reasons is subject to change.
1742
+ # Output only. Advanced reasons contributing to the risk analysis verdict. These
1743
+ # reasons are available to Enterprise tier projects only. Contact sales for more
1744
+ # information. The set of possible reasons is subject to change.
1664
1745
  # Corresponds to the JSON property `extendedVerdictReasons`
1665
1746
  # @return [Array<String>]
1666
1747
  attr_accessor :extended_verdict_reasons
@@ -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.66.0"
19
+ GEM_VERSION = "0.67.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 = "20251201"
25
+ REVISION = "20260302"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,24 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountRiskReason
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
37
+ class GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTakeoverVerdict
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
43
+ class GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTrustReason
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
31
49
  class GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo
32
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
51
 
@@ -469,10 +487,37 @@ module Google
469
487
  class GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessment
470
488
  # @private
471
489
  class Representation < Google::Apis::Core::JsonRepresentation
490
+ property :account_takeover_verdict, as: 'accountTakeoverVerdict', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTakeoverVerdict, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTakeoverVerdict::Representation
491
+
472
492
  collection :labels, as: 'labels'
473
493
  end
474
494
  end
475
495
 
496
+ class GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountRiskReason
497
+ # @private
498
+ class Representation < Google::Apis::Core::JsonRepresentation
499
+ property :reason, as: 'reason'
500
+ end
501
+ end
502
+
503
+ class GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTakeoverVerdict
504
+ # @private
505
+ class Representation < Google::Apis::Core::JsonRepresentation
506
+ property :risk, as: 'risk'
507
+ collection :risk_reasons, as: 'riskReasons', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountRiskReason, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountRiskReason::Representation
508
+
509
+ collection :trust_reasons, as: 'trustReasons', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTrustReason, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTrustReason::Representation
510
+
511
+ end
512
+ end
513
+
514
+ class GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessmentAccountTrustReason
515
+ # @private
516
+ class Representation < Google::Apis::Core::JsonRepresentation
517
+ property :reason, as: 'reason'
518
+ end
519
+ end
520
+
476
521
  class GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo
477
522
  # @private
478
523
  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.66.0
4
+ version: 0.67.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.66.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.67.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: