google-apis-recaptchaenterprise_v1 0.22.0 → 0.24.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: bb2951b5b47d2a76b61dc294522d52958aab84e5563a83ddb1176bf430435a5b
4
- data.tar.gz: 5458111da29440fac315c50265ad8fc7470479d367e7d5fbe1a52326eccc770e
3
+ metadata.gz: dca361e84eed899ff1015e9bd44d19414fac6bd9b60262f1afb41f6ba08cf4d8
4
+ data.tar.gz: 78878528d862b826db80553ca8ef2e911f09f11eedacb873799bc45dae14c0b8
5
5
  SHA512:
6
- metadata.gz: 8a14940ca753773943cd2194f802473d55bb34f9492a1ea49f662725b58bb45705bdc3052949e6a7f69c22417c2729966122b492571c4e4cb499fc7f968bf4cb
7
- data.tar.gz: 2b2d0e55974f017468ec6341ff1a4844fbfb6be855c637b386809e6204c1e0e3aada589eda1dd503e38fd32e83d009f7a43a260aca241009eb5d1e9defa06c69
6
+ metadata.gz: 275f424aca5f75f11938ff09712b8531c9e0835530f5c7df756cbe5e586a12a8ce89dd9a005bf03b20f4e597b4afefbb6db42f51571ec2b58c84b9dbe15cb24f
7
+ data.tar.gz: cb4e02e65062def52968ebc14d3c29a2b4519e8e83fc47864bae35fb8209af2651bedbd3188cf3f8b8b7051fc3dd76266dd540f8e3f04d418d1fff7634da11ed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-recaptchaenterprise_v1
2
2
 
3
+ ### v0.24.0 (2022-11-12)
4
+
5
+ * Regenerated from discovery document revision 20221106
6
+
7
+ ### v0.23.0 (2022-10-28)
8
+
9
+ * Regenerated from discovery document revision 20221017
10
+ * Regenerated using generator version 0.11.0
11
+
3
12
  ### v0.22.0 (2022-09-21)
4
13
 
5
14
  * Regenerated from discovery document revision 20220916
@@ -665,8 +665,7 @@ module Google
665
665
  include Google::Apis::Core::Hashable
666
666
 
667
667
  # Action-based metrics. The map key is the action name which specified by the
668
- # site owners at time of the "execute" client-side call. Populated only for
669
- # SCORE keys.
668
+ # site owners at time of the "execute" client-side call.
670
669
  # Corresponds to the JSON property `actionMetrics`
671
670
  # @return [Hash<String,Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1ScoreDistribution>]
672
671
  attr_accessor :action_metrics
@@ -790,6 +789,12 @@ module Google
790
789
  # @return [String]
791
790
  attr_accessor :action
792
791
 
792
+ # The name of the Android package with which the token was generated (Android
793
+ # keys only).
794
+ # Corresponds to the JSON property `androidPackageName`
795
+ # @return [String]
796
+ attr_accessor :android_package_name
797
+
793
798
  # The timestamp corresponding to the generation of the token.
794
799
  # Corresponds to the JSON property `createTime`
795
800
  # @return [String]
@@ -805,6 +810,11 @@ module Google
805
810
  # @return [String]
806
811
  attr_accessor :invalid_reason
807
812
 
813
+ # The ID of the iOS bundle with which the token was generated (iOS keys only).
814
+ # Corresponds to the JSON property `iosBundleId`
815
+ # @return [String]
816
+ attr_accessor :ios_bundle_id
817
+
808
818
  # Whether the provided user response token is valid. When valid = false, the
809
819
  # reason could be specified in invalid_reason or it could also be due to a user
810
820
  # failing to solve a challenge or a sitekey mismatch (i.e the sitekey used to
@@ -821,9 +831,11 @@ module Google
821
831
  # Update properties of this object
822
832
  def update!(**args)
823
833
  @action = args[:action] if args.key?(:action)
834
+ @android_package_name = args[:android_package_name] if args.key?(:android_package_name)
824
835
  @create_time = args[:create_time] if args.key?(:create_time)
825
836
  @hostname = args[:hostname] if args.key?(:hostname)
826
837
  @invalid_reason = args[:invalid_reason] if args.key?(:invalid_reason)
838
+ @ios_bundle_id = args[:ios_bundle_id] if args.key?(:ios_bundle_id)
827
839
  @valid = args[:valid] if args.key?(:valid)
828
840
  end
829
841
  end
@@ -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.22.0"
19
+ GEM_VERSION = "0.24.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220916"
25
+ REVISION = "20221106"
26
26
  end
27
27
  end
28
28
  end
@@ -419,9 +419,11 @@ module Google
419
419
  # @private
420
420
  class Representation < Google::Apis::Core::JsonRepresentation
421
421
  property :action, as: 'action'
422
+ property :android_package_name, as: 'androidPackageName'
422
423
  property :create_time, as: 'createTime'
423
424
  property :hostname, as: 'hostname'
424
425
  property :invalid_reason, as: 'invalidReason'
426
+ property :ios_bundle_id, as: 'iosBundleId'
425
427
  property :valid, as: 'valid'
426
428
  end
427
429
  end
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.22.0
4
+ version: 0.24.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: 2022-09-26 00:00:00.000000000 Z
11
+ date: 2022-11-14 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.9.0
19
+ version: 0.9.1
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.9.0
29
+ version: 0.9.1
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.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.24.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: []