google-apis-recaptchaenterprise_v1 0.40.0 → 0.42.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4b41163767ae9f5c6c6e6825c69ecc53786049c6aadfe63ccaf37edb0e3abe5d
4
- data.tar.gz: 74d25cbdb683c0cfe065dca40dcc5af5d27edb748ad3bf20fee91b6327415d75
3
+ metadata.gz: 4a74f4375b2602a354a2feabad4f79d9714627dbfffcfddcb07003af1d0b6c97
4
+ data.tar.gz: c17055c56466a1390f50c2b8de1f520af45431abd779c5b86228072ad393618b
5
5
  SHA512:
6
- metadata.gz: 0dff5b7d1d417f20bdc171436727d2ae2d03b14a962ccf8450c04bd222d7d33036f3073ef6427d297c92d012a9db2a78dd8ecef12da0b7d08392ae308def53e5
7
- data.tar.gz: f7ce3bda0ff13c8d1ec9fb960b14c1719cadde4d41310614c7dd50ed49b3edb6a8f00ff6141eac8d7f2c6c73ec3110ad97605dacdcbea04963b110fb4c869f71
6
+ metadata.gz: 2c1504470ac3e43d82621577031a51f524a13ad4130211c57faf1bd228200cd37c92a1ac276575840469f68d03eebd0329b154ebf75f9740c8d1f668169c48d0
7
+ data.tar.gz: afed774ac0f00b3e6d8f85de973b2f72348dd1611484569eb4ee927e4247a2c7eed5e779e73794d3cc4ccd1552ee4134866ea7b426cabf0c0b6cbeb5e8133d6f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-recaptchaenterprise_v1
2
2
 
3
+ ### v0.42.0 (2024-01-07)
4
+
5
+ * Regenerated from discovery document revision 20240101
6
+
7
+ ### v0.41.0 (2023-12-10)
8
+
9
+ * Regenerated from discovery document revision 20231202
10
+
3
11
  ### v0.40.0 (2023-11-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20231112
@@ -62,7 +62,7 @@ module Google
62
62
  attr_accessor :latest_verification_result
63
63
 
64
64
  # Username of the account that is being verified. Deprecated. Customers should
65
- # now provide the hashed account ID field in Event.
65
+ # now provide the `account_id` field in `event.user_info`.
66
66
  # Corresponds to the JSON property `username`
67
67
  # @return [String]
68
68
  attr_accessor :username
@@ -1228,9 +1228,16 @@ module Google
1228
1228
  class GoogleCloudRecaptchaenterpriseV1RelatedAccountGroupMembership
1229
1229
  include Google::Apis::Core::Hashable
1230
1230
 
1231
- # The unique stable hashed user identifier of the member. The identifier
1232
- # corresponds to a `hashed_account_id` provided in a previous `CreateAssessment`
1233
- # or `AnnotateAssessment` call.
1231
+ # The unique stable account identifier of the member. The identifier corresponds
1232
+ # to an `account_id` provided in a previous `CreateAssessment` or `
1233
+ # AnnotateAssessment` call.
1234
+ # Corresponds to the JSON property `accountId`
1235
+ # @return [String]
1236
+ attr_accessor :account_id
1237
+
1238
+ # Deprecated: use `account_id` instead. The unique stable hashed account
1239
+ # identifier of the member. The identifier corresponds to a `hashed_account_id`
1240
+ # provided in a previous `CreateAssessment` or `AnnotateAssessment` call.
1234
1241
  # Corresponds to the JSON property `hashedAccountId`
1235
1242
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
1236
1243
  # @return [String]
@@ -1249,6 +1256,7 @@ module Google
1249
1256
 
1250
1257
  # Update properties of this object
1251
1258
  def update!(**args)
1259
+ @account_id = args[:account_id] if args.key?(:account_id)
1252
1260
  @hashed_account_id = args[:hashed_account_id] if args.key?(:hashed_account_id)
1253
1261
  @name = args[:name] if args.key?(:name)
1254
1262
  end
@@ -1360,9 +1368,19 @@ module Google
1360
1368
  class GoogleCloudRecaptchaenterpriseV1SearchRelatedAccountGroupMembershipsRequest
1361
1369
  include Google::Apis::Core::Hashable
1362
1370
 
1363
- # Optional. The unique stable hashed user identifier used to search connections.
1364
- # The identifier should correspond to a `hashed_account_id` provided in a
1365
- # previous `CreateAssessment` or `AnnotateAssessment` call.
1371
+ # Optional. The unique stable account identifier used to search connections. The
1372
+ # identifier should correspond to an `account_id` provided in a previous `
1373
+ # CreateAssessment` or `AnnotateAssessment` call. Either hashed_account_id or
1374
+ # account_id must be set, but not both.
1375
+ # Corresponds to the JSON property `accountId`
1376
+ # @return [String]
1377
+ attr_accessor :account_id
1378
+
1379
+ # Optional. Deprecated: use `account_id` instead. The unique stable hashed
1380
+ # account identifier used to search connections. The identifier should
1381
+ # correspond to a `hashed_account_id` provided in a previous `CreateAssessment`
1382
+ # or `AnnotateAssessment` call. Either hashed_account_id or account_id must be
1383
+ # set, but not both.
1366
1384
  # Corresponds to the JSON property `hashedAccountId`
1367
1385
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
1368
1386
  # @return [String]
@@ -1390,6 +1408,7 @@ module Google
1390
1408
 
1391
1409
  # Update properties of this object
1392
1410
  def update!(**args)
1411
+ @account_id = args[:account_id] if args.key?(:account_id)
1393
1412
  @hashed_account_id = args[:hashed_account_id] if args.key?(:hashed_account_id)
1394
1413
  @page_size = args[:page_size] if args.key?(:page_size)
1395
1414
  @page_token = args[:page_token] if args.key?(:page_token)
@@ -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.40.0"
19
+ GEM_VERSION = "0.42.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231112"
25
+ REVISION = "20240101"
26
26
  end
27
27
  end
28
28
  end
@@ -714,6 +714,7 @@ module Google
714
714
  class GoogleCloudRecaptchaenterpriseV1RelatedAccountGroupMembership
715
715
  # @private
716
716
  class Representation < Google::Apis::Core::JsonRepresentation
717
+ property :account_id, as: 'accountId'
717
718
  property :hashed_account_id, :base64 => true, as: 'hashedAccountId'
718
719
  property :name, as: 'name'
719
720
  end
@@ -755,6 +756,7 @@ module Google
755
756
  class GoogleCloudRecaptchaenterpriseV1SearchRelatedAccountGroupMembershipsRequest
756
757
  # @private
757
758
  class Representation < Google::Apis::Core::JsonRepresentation
759
+ property :account_id, as: 'accountId'
758
760
  property :hashed_account_id, :base64 => true, as: 'hashedAccountId'
759
761
  property :page_size, as: 'pageSize'
760
762
  property :page_token, as: 'pageToken'
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.40.0
4
+ version: 0.42.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: 2023-11-19 00:00:00.000000000 Z
11
+ date: 2024-01-07 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.40.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.42.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.4.19
78
+ rubygems_version: 3.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for reCAPTCHA Enterprise API V1