google-apis-recaptchaenterprise_v1 0.47.0 → 0.48.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9247c4f20439bc7d57fe02ab1982155be6ba7fc2ffbdf7fdf925816356fef665
4
- data.tar.gz: 958fb3052089a58d922ed14ccf35bf219f15f1d526d82986db7085652bd52619
3
+ metadata.gz: 73a55e12ca8eb7716329e66e2d3355f8d558c55ac13461cd0b58fa7b425bf319
4
+ data.tar.gz: bcbe2a7e6526cb6c643b027684544fb954284586b5a50daf002d602e5e5e5dd7
5
5
  SHA512:
6
- metadata.gz: 8e6db949c6045b69aed6e8391b2d6bbaedbbef20e53f99defd402003a8959949af57e3c746885b19571c94eec501356c3da88c1240f881a57b8bb38a1851d3a0
7
- data.tar.gz: 7f861bbbd355ab2d3845c5540571038f2ef6f6028289ef0c8db3f1c95f1cb39d7c4d555eb1843e94e709edb55d5434ee3fb6480156fe71d2681b6f454aae1480
6
+ metadata.gz: 5b0201017a12949730288465c4864c9e2e8487ebf2232b5a7c735732877c35e37768bd9ce32255383705fc9c14a6e267f838dffbe0a2200599c943699a724eae
7
+ data.tar.gz: 4eb5643e7b2001ab4c6dc0a7b0b9e6183f1a2164e80cb0b0e58f7aa44d4c4b26f6f4df50c69f93e0c7be6146f9b9def6ae1324b42b1742d2a3ba093723b3b92f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-recaptchaenterprise_v1
2
2
 
3
+ ### v0.48.0 (2024-05-26)
4
+
5
+ * Regenerated from discovery document revision 20240518
6
+ * Regenerated using generator version 0.15.0
7
+
3
8
  ### v0.47.0 (2024-03-31)
4
9
 
5
10
  * Regenerated from discovery document revision 20240324
@@ -253,6 +253,11 @@ module Google
253
253
  # @return [String]
254
254
  attr_accessor :name
255
255
 
256
+ # Assessment for Phone Fraud
257
+ # Corresponds to the JSON property `phoneFraudAssessment`
258
+ # @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1PhoneFraudAssessment]
259
+ attr_accessor :phone_fraud_assessment
260
+
256
261
  # Private password leak verification info.
257
262
  # Corresponds to the JSON property `privatePasswordLeakVerification`
258
263
  # @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1PrivatePasswordLeakVerification]
@@ -281,6 +286,7 @@ module Google
281
286
  @fraud_prevention_assessment = args[:fraud_prevention_assessment] if args.key?(:fraud_prevention_assessment)
282
287
  @fraud_signals = args[:fraud_signals] if args.key?(:fraud_signals)
283
288
  @name = args[:name] if args.key?(:name)
289
+ @phone_fraud_assessment = args[:phone_fraud_assessment] if args.key?(:phone_fraud_assessment)
284
290
  @private_password_leak_verification = args[:private_password_leak_verification] if args.key?(:private_password_leak_verification)
285
291
  @risk_analysis = args[:risk_analysis] if args.key?(:risk_analysis)
286
292
  @token_properties = args[:token_properties] if args.key?(:token_properties)
@@ -1189,6 +1195,25 @@ module Google
1189
1195
  end
1190
1196
  end
1191
1197
 
1198
+ # Assessment for Phone Fraud
1199
+ class GoogleCloudRecaptchaenterpriseV1PhoneFraudAssessment
1200
+ include Google::Apis::Core::Hashable
1201
+
1202
+ # Information about sms toll fraud
1203
+ # Corresponds to the JSON property `smsTollFraudVerdict`
1204
+ # @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1SmsTollFraudVerdict]
1205
+ attr_accessor :sms_toll_fraud_verdict
1206
+
1207
+ def initialize(**args)
1208
+ update!(**args)
1209
+ end
1210
+
1211
+ # Update properties of this object
1212
+ def update!(**args)
1213
+ @sms_toll_fraud_verdict = args[:sms_toll_fraud_verdict] if args.key?(:sms_toll_fraud_verdict)
1214
+ end
1215
+ end
1216
+
1192
1217
  # Private password leak verification info.
1193
1218
  class GoogleCloudRecaptchaenterpriseV1PrivatePasswordLeakVerification
1194
1219
  include Google::Apis::Core::Hashable
@@ -1507,6 +1532,32 @@ module Google
1507
1532
  end
1508
1533
  end
1509
1534
 
1535
+ # Information about sms toll fraud
1536
+ class GoogleCloudRecaptchaenterpriseV1SmsTollFraudVerdict
1537
+ include Google::Apis::Core::Hashable
1538
+
1539
+ # Output only. Reasons contributing to the SMS toll fraud verdict.
1540
+ # Corresponds to the JSON property `reasons`
1541
+ # @return [Array<String>]
1542
+ attr_accessor :reasons
1543
+
1544
+ # Output only. Probability of an sms event being fraudulent. Values are from 0.0
1545
+ # (lowest) to 1.0 (highest).
1546
+ # Corresponds to the JSON property `risk`
1547
+ # @return [Float]
1548
+ attr_accessor :risk
1549
+
1550
+ def initialize(**args)
1551
+ update!(**args)
1552
+ end
1553
+
1554
+ # Update properties of this object
1555
+ def update!(**args)
1556
+ @reasons = args[:reasons] if args.key?(:reasons)
1557
+ @risk = args[:risk] if args.key?(:risk)
1558
+ end
1559
+ end
1560
+
1510
1561
  # Options for user acceptance testing.
1511
1562
  class GoogleCloudRecaptchaenterpriseV1TestingOptions
1512
1563
  include Google::Apis::Core::Hashable
@@ -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.47.0"
19
+ GEM_VERSION = "0.48.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240324"
25
+ REVISION = "20240518"
26
26
  end
27
27
  end
28
28
  end
@@ -226,6 +226,12 @@ module Google
226
226
  include Google::Apis::Core::JsonObjectSupport
227
227
  end
228
228
 
229
+ class GoogleCloudRecaptchaenterpriseV1PhoneFraudAssessment
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
229
235
  class GoogleCloudRecaptchaenterpriseV1PrivatePasswordLeakVerification
230
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
237
 
@@ -292,6 +298,12 @@ module Google
292
298
  include Google::Apis::Core::JsonObjectSupport
293
299
  end
294
300
 
301
+ class GoogleCloudRecaptchaenterpriseV1SmsTollFraudVerdict
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
295
307
  class GoogleCloudRecaptchaenterpriseV1TestingOptions
296
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
297
309
 
@@ -446,6 +458,8 @@ module Google
446
458
  property :fraud_signals, as: 'fraudSignals', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1FraudSignals, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1FraudSignals::Representation
447
459
 
448
460
  property :name, as: 'name'
461
+ property :phone_fraud_assessment, as: 'phoneFraudAssessment', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1PhoneFraudAssessment, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1PhoneFraudAssessment::Representation
462
+
449
463
  property :private_password_leak_verification, as: 'privatePasswordLeakVerification', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1PrivatePasswordLeakVerification, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1PrivatePasswordLeakVerification::Representation
450
464
 
451
465
  property :risk_analysis, as: 'riskAnalysis', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1RiskAnalysis, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1RiskAnalysis::Representation
@@ -721,6 +735,14 @@ module Google
721
735
  end
722
736
  end
723
737
 
738
+ class GoogleCloudRecaptchaenterpriseV1PhoneFraudAssessment
739
+ # @private
740
+ class Representation < Google::Apis::Core::JsonRepresentation
741
+ property :sms_toll_fraud_verdict, as: 'smsTollFraudVerdict', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1SmsTollFraudVerdict, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1SmsTollFraudVerdict::Representation
742
+
743
+ end
744
+ end
745
+
724
746
  class GoogleCloudRecaptchaenterpriseV1PrivatePasswordLeakVerification
725
747
  # @private
726
748
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -812,6 +834,14 @@ module Google
812
834
  end
813
835
  end
814
836
 
837
+ class GoogleCloudRecaptchaenterpriseV1SmsTollFraudVerdict
838
+ # @private
839
+ class Representation < Google::Apis::Core::JsonRepresentation
840
+ collection :reasons, as: 'reasons'
841
+ property :risk, as: 'risk'
842
+ end
843
+ end
844
+
815
845
  class GoogleCloudRecaptchaenterpriseV1TestingOptions
816
846
  # @private
817
847
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-recaptchaenterprise_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.47.0
4
+ version: 0.48.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: 2024-03-31 00:00:00.000000000 Z
11
+ date: 2024-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-recaptchaenterprise_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.47.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.48.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-recaptchaenterprise_v1
63
63
  post_install_message:
64
64
  rdoc_options: []