google-apis-recaptchaenterprise_v1 0.23.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: db21e64ff0d315ecac71a8c884fbc23367eabd2d36adb89c47a36409a494a9a0
4
- data.tar.gz: 9a0c3a7a923d9230522f26bf6da8c93bfb576c415d403f5bf7ed7920fabba076
3
+ metadata.gz: dca361e84eed899ff1015e9bd44d19414fac6bd9b60262f1afb41f6ba08cf4d8
4
+ data.tar.gz: 78878528d862b826db80553ca8ef2e911f09f11eedacb873799bc45dae14c0b8
5
5
  SHA512:
6
- metadata.gz: 5d6d482d45a57aa3eea4b5cece5fb9475fcb778a5d8481b149035a916e9ed92d84e059dd7f5f91d795e4a1ea664c04b21168d4d3a773ecf0838cf8b6140c9a83
7
- data.tar.gz: 298ccc37255d4affff71949e9a09392b7534f22a139ff43e4f4a68fcf0023f419af590ad4c5444716a453f74a03ff087ad5b0eb0f7c2d334b1efe3bb98e7bb1d
6
+ metadata.gz: 275f424aca5f75f11938ff09712b8531c9e0835530f5c7df756cbe5e586a12a8ce89dd9a005bf03b20f4e597b4afefbb6db42f51571ec2b58c84b9dbe15cb24f
7
+ data.tar.gz: cb4e02e65062def52968ebc14d3c29a2b4519e8e83fc47864bae35fb8209af2651bedbd3188cf3f8b8b7051fc3dd76266dd540f8e3f04d418d1fff7634da11ed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.23.0 (2022-10-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20221017
@@ -789,6 +789,12 @@ module Google
789
789
  # @return [String]
790
790
  attr_accessor :action
791
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
+
792
798
  # The timestamp corresponding to the generation of the token.
793
799
  # Corresponds to the JSON property `createTime`
794
800
  # @return [String]
@@ -804,6 +810,11 @@ module Google
804
810
  # @return [String]
805
811
  attr_accessor :invalid_reason
806
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
+
807
818
  # Whether the provided user response token is valid. When valid = false, the
808
819
  # reason could be specified in invalid_reason or it could also be due to a user
809
820
  # failing to solve a challenge or a sitekey mismatch (i.e the sitekey used to
@@ -820,9 +831,11 @@ module Google
820
831
  # Update properties of this object
821
832
  def update!(**args)
822
833
  @action = args[:action] if args.key?(:action)
834
+ @android_package_name = args[:android_package_name] if args.key?(:android_package_name)
823
835
  @create_time = args[:create_time] if args.key?(:create_time)
824
836
  @hostname = args[:hostname] if args.key?(:hostname)
825
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)
826
839
  @valid = args[:valid] if args.key?(:valid)
827
840
  end
828
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.23.0"
19
+ GEM_VERSION = "0.24.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221017"
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.23.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-10-31 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
@@ -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.23.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: []