google-apis-recaptchaenterprise_v1 0.51.0 → 0.52.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: e5b86b64b55218836a3efb8d52d5689088765e64104585d51b37ab0d2fe219a4
4
- data.tar.gz: 8a0fac359d6e2bf556fa7c6b757b3d80251f38ef94dc658e5443b8fac702a08a
3
+ metadata.gz: eabda2bae72ba1b1692f2f0a00cc062a13159f1eb8864418379423fd2aee21ae
4
+ data.tar.gz: af1beb3945c0a3580f0b6e3ba077bfad2c346dfec59056a6153cd278c17c4f76
5
5
  SHA512:
6
- metadata.gz: 5513868133c5357bc804326c8c25ee65057c5253777c6c2d503bc99b72e1b57609b070de60947b07b02625abe0f20bc396aab6f3e0554920d06c1d9844a91cde
7
- data.tar.gz: 10d4d045a4aa61333d7c71612cb420711e0ba5f2c88cef52bbb4b8b44a5161aed4ea0b1a5f2225942a190dd4220bee4e83f99597024e5a881e6649c5b5ebec26
6
+ metadata.gz: 50872634a53cec89dc0861a1747c707f92c0f9ba997adb7451ec10e43fb43cb90e64468a73b46dbc95d20f61937e39d228a397bfec768f4974d380e50ca74bc7
7
+ data.tar.gz: ad29ea9b4a3412f12bd908c53d8cc529a1b27e4b31cb58925438cdfff299eb389067c4345fb0a4cab83a522c063fc678593d992a3c7165961351d46d7cecf6f2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-recaptchaenterprise_v1
2
2
 
3
+ ### v0.52.0 (2024-08-04)
4
+
5
+ * Regenerated from discovery document revision 20240728
6
+ * Regenerated using generator version 0.15.1
7
+
3
8
  ### v0.51.0 (2024-07-25)
4
9
 
5
10
  * Regenerated from discovery document revision 20240721
@@ -259,6 +259,12 @@ module Google
259
259
  # @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo]
260
260
  attr_accessor :account_verification
261
261
 
262
+ # The environment creating the assessment. This describes your environment (the
263
+ # system invoking CreateAssessment), NOT the environment of your user.
264
+ # Corresponds to the JSON property `assessmentEnvironment`
265
+ # @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment]
266
+ attr_accessor :assessment_environment
267
+
262
268
  # The event being assessed.
263
269
  # Corresponds to the JSON property `event`
264
270
  # @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1Event]
@@ -313,6 +319,7 @@ module Google
313
319
  def update!(**args)
314
320
  @account_defender_assessment = args[:account_defender_assessment] if args.key?(:account_defender_assessment)
315
321
  @account_verification = args[:account_verification] if args.key?(:account_verification)
322
+ @assessment_environment = args[:assessment_environment] if args.key?(:assessment_environment)
316
323
  @event = args[:event] if args.key?(:event)
317
324
  @firewall_policy_assessment = args[:firewall_policy_assessment] if args.key?(:firewall_policy_assessment)
318
325
  @fraud_prevention_assessment = args[:fraud_prevention_assessment] if args.key?(:fraud_prevention_assessment)
@@ -325,6 +332,37 @@ module Google
325
332
  end
326
333
  end
327
334
 
335
+ # The environment creating the assessment. This describes your environment (the
336
+ # system invoking CreateAssessment), NOT the environment of your user.
337
+ class GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment
338
+ include Google::Apis::Core::Hashable
339
+
340
+ # Optional. Identifies the client module initiating the CreateAssessment request.
341
+ # This can be the link to the client module's project. Examples include: - "
342
+ # github.com/GoogleCloudPlatform/recaptcha-enterprise-google-tag-manager" - "
343
+ # cloud.google.com/recaptcha/docs/implement-waf-akamai" - "cloud.google.com/
344
+ # recaptcha/docs/implement-waf-cloudflare" - "wordpress.org/plugins/recaptcha-
345
+ # something"
346
+ # Corresponds to the JSON property `client`
347
+ # @return [String]
348
+ attr_accessor :client
349
+
350
+ # Optional. The version of the client module. For example, "1.0.0".
351
+ # Corresponds to the JSON property `version`
352
+ # @return [String]
353
+ attr_accessor :version
354
+
355
+ def initialize(**args)
356
+ update!(**args)
357
+ end
358
+
359
+ # Update properties of this object
360
+ def update!(**args)
361
+ @client = args[:client] if args.key?(:client)
362
+ @version = args[:version] if args.key?(:version)
363
+ end
364
+ end
365
+
328
366
  # Metrics related to challenges.
329
367
  class GoogleCloudRecaptchaenterpriseV1ChallengeMetrics
330
368
  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.51.0"
19
+ GEM_VERSION = "0.52.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240721"
25
+ REVISION = "20240728"
26
26
  end
27
27
  end
28
28
  end
@@ -76,6 +76,12 @@ module Google
76
76
  include Google::Apis::Core::JsonObjectSupport
77
77
  end
78
78
 
79
+ class GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
79
85
  class GoogleCloudRecaptchaenterpriseV1ChallengeMetrics
80
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
87
 
@@ -487,6 +493,8 @@ module Google
487
493
 
488
494
  property :account_verification, as: 'accountVerification', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo::Representation
489
495
 
496
+ property :assessment_environment, as: 'assessmentEnvironment', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment::Representation
497
+
490
498
  property :event, as: 'event', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1Event, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1Event::Representation
491
499
 
492
500
  property :firewall_policy_assessment, as: 'firewallPolicyAssessment', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1FirewallPolicyAssessment, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1FirewallPolicyAssessment::Representation
@@ -507,6 +515,14 @@ module Google
507
515
  end
508
516
  end
509
517
 
518
+ class GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment
519
+ # @private
520
+ class Representation < Google::Apis::Core::JsonRepresentation
521
+ property :client, as: 'client'
522
+ property :version, as: 'version'
523
+ end
524
+ end
525
+
510
526
  class GoogleCloudRecaptchaenterpriseV1ChallengeMetrics
511
527
  # @private
512
528
  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.51.0
4
+ version: 0.52.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-07-25 00:00:00.000000000 Z
11
+ date: 2024-08-04 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-recaptchaenterprise_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.52.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: []