google-apis-recaptchaenterprise_v1 0.11.0 → 0.14.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: 7ae76836b1eb6fa61aa62c05f8db62eb7c36db5440c12c04df6c8cad76dc4988
4
- data.tar.gz: '0380f69aaf5e6d5012ac4cfb700a4e6766345c3a0b31ade16180b69d4f949ffd'
3
+ metadata.gz: 5bec9c269f94534e15a45e02f13365933f4caf5908f9adeff5a4334245c32e2c
4
+ data.tar.gz: efbe562cec9434b31f0b5dceba7aeab7726d7d06d9afa7c8375e202facd1697a
5
5
  SHA512:
6
- metadata.gz: cba1e7cbce2d02ba6106c57a05b42a19b60baff070199560ebc230ebca1ee8f390e927a4b60d582d254de4f41005f985914420fe13b095f4ea392977df210478
7
- data.tar.gz: e125aa308a1ee596ff56f2b6887b0e8ec0eefbace8125c8bc03925a80feab6dbb9de7ef496e4a4b61fc75c6df4a57f3d483cd9b9d1dcdba3a09b7ebc80ff5f60
6
+ metadata.gz: 26fc41316219f4a9c6550f3529062f9e8c021cf9ef3b65c78082d04da9284385b18231c294eb033d14e7e21f5c7c16eadbc7bfae4b8b12da8f69c990e77f1a07
7
+ data.tar.gz: 32c66ea50477191ea746ae834f6213a67b0759dce031b230229183917a5b5fe368a632ed76767f7a16bff1bc40a0057eec649228a382b77ed15eddb6d128a0eb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-recaptchaenterprise_v1
2
2
 
3
+ ### v0.14.0 (2022-03-22)
4
+
5
+ * Regenerated from discovery document revision 20220319
6
+
7
+ ### v0.13.0 (2022-02-01)
8
+
9
+ * Regenerated from discovery document revision 20220129
10
+ * Regenerated using generator version 0.4.1
11
+
12
+ ### v0.12.0 (2022-01-11)
13
+
14
+ * Regenerated from discovery document revision 20220107
15
+
3
16
  ### v0.11.0 (2021-12-14)
4
17
 
5
18
  * Regenerated from discovery document revision 20211211
@@ -31,11 +31,6 @@ module Google
31
31
  # @return [Array<String>]
32
32
  attr_accessor :labels
33
33
 
34
- # Recommended action after this request.
35
- # Corresponds to the JSON property `recommendedAction`
36
- # @return [String]
37
- attr_accessor :recommended_action
38
-
39
34
  def initialize(**args)
40
35
  update!(**args)
41
36
  end
@@ -43,7 +38,6 @@ module Google
43
38
  # Update properties of this object
44
39
  def update!(**args)
45
40
  @labels = args[:labels] if args.key?(:labels)
46
- @recommended_action = args[:recommended_action] if args.key?(:recommended_action)
47
41
  end
48
42
  end
49
43
 
@@ -221,6 +215,13 @@ module Google
221
215
  # @return [String]
222
216
  attr_accessor :expected_action
223
217
 
218
+ # Optional. Optional unique stable hashed user identifier for the request. The
219
+ # identifier should ideally be hashed using sha256 with stable secret.
220
+ # Corresponds to the JSON property `hashedAccountId`
221
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
222
+ # @return [String]
223
+ attr_accessor :hashed_account_id
224
+
224
225
  # Optional. The site key that was used to invoke reCAPTCHA on your site and
225
226
  # generate the token.
226
227
  # Corresponds to the JSON property `siteKey`
@@ -252,6 +253,7 @@ module Google
252
253
  # Update properties of this object
253
254
  def update!(**args)
254
255
  @expected_action = args[:expected_action] if args.key?(:expected_action)
256
+ @hashed_account_id = args[:hashed_account_id] if args.key?(:hashed_account_id)
255
257
  @site_key = args[:site_key] if args.key?(:site_key)
256
258
  @token = args[:token] if args.key?(:token)
257
259
  @user_agent = args[:user_agent] if args.key?(:user_agent)
@@ -829,8 +831,7 @@ module Google
829
831
  # A generic empty message that you can re-use to avoid defining duplicated empty
830
832
  # messages in your APIs. A typical example is to use it as the request or the
831
833
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
832
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
833
- # `Empty` is empty JSON object ````.
834
+ # protobuf.Empty) returns (google.protobuf.Empty); `
834
835
  class GoogleProtobufEmpty
835
836
  include Google::Apis::Core::Hashable
836
837
 
@@ -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.11.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211211"
25
+ REVISION = "20220319"
26
26
  end
27
27
  end
28
28
  end
@@ -182,7 +182,6 @@ module Google
182
182
  # @private
183
183
  class Representation < Google::Apis::Core::JsonRepresentation
184
184
  collection :labels, as: 'labels'
185
- property :recommended_action, as: 'recommendedAction'
186
185
  end
187
186
  end
188
187
 
@@ -238,6 +237,7 @@ module Google
238
237
  # @private
239
238
  class Representation < Google::Apis::Core::JsonRepresentation
240
239
  property :expected_action, as: 'expectedAction'
240
+ property :hashed_account_id, :base64 => true, as: 'hashedAccountId'
241
241
  property :site_key, as: 'siteKey'
242
242
  property :token, as: 'token'
243
243
  property :user_agent, as: 'userAgent'
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.11.0
4
+ version: 0.14.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-01-10 00:00:00.000000000 Z
11
+ date: 2022-03-28 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.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.14.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for reCAPTCHA Enterprise API V1