google-apis-recaptchaenterprise_v1 0.32.0 → 0.33.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f677d8f3a339db628e75c888c656090c9104efb538c9fe680c436e2e87dec108
|
4
|
+
data.tar.gz: c2a764161a3f5071266c11426dc8649c0ea41e8a278b42d6bd7050519bc2a40e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f400f88772717cc200c2be584ec31d29abb7ffbc68f331717b1ce4b3217e0241cc14ecb5ae85fda17219cf1e6ec9f7ebdd313a9e6fc70232ea054e07b7e83c81
|
7
|
+
data.tar.gz: 0e5043247503105ccca4ee3f41b2a0913fc0765f7a260e376bce0455f03a95710e9ce8f28c3866533fc57ded9165c81cbc1c847e6caa226037f1463905074a2e
|
data/CHANGELOG.md
CHANGED
@@ -173,6 +173,39 @@ module Google
|
|
173
173
|
end
|
174
174
|
end
|
175
175
|
|
176
|
+
# Contains fields that are required to perform Apple-specific integrity checks.
|
177
|
+
class GoogleCloudRecaptchaenterpriseV1AppleDeveloperId
|
178
|
+
include Google::Apis::Core::Hashable
|
179
|
+
|
180
|
+
# Required. The Apple developer key ID (10-character string).
|
181
|
+
# Corresponds to the JSON property `keyId`
|
182
|
+
# @return [String]
|
183
|
+
attr_accessor :key_id
|
184
|
+
|
185
|
+
# Required. Input only. A private key (downloaded as a text file with a .p8 file
|
186
|
+
# extension) generated for your Apple Developer account.
|
187
|
+
# Corresponds to the JSON property `privateKey`
|
188
|
+
# @return [String]
|
189
|
+
attr_accessor :private_key
|
190
|
+
|
191
|
+
# Required. The Apple team ID (10-character string) owning the provisioning
|
192
|
+
# profile used to build your application.
|
193
|
+
# Corresponds to the JSON property `teamId`
|
194
|
+
# @return [String]
|
195
|
+
attr_accessor :team_id
|
196
|
+
|
197
|
+
def initialize(**args)
|
198
|
+
update!(**args)
|
199
|
+
end
|
200
|
+
|
201
|
+
# Update properties of this object
|
202
|
+
def update!(**args)
|
203
|
+
@key_id = args[:key_id] if args.key?(:key_id)
|
204
|
+
@private_key = args[:private_key] if args.key?(:private_key)
|
205
|
+
@team_id = args[:team_id] if args.key?(:team_id)
|
206
|
+
end
|
207
|
+
end
|
208
|
+
|
176
209
|
# A reCAPTCHA Enterprise assessment resource.
|
177
210
|
class GoogleCloudRecaptchaenterpriseV1Assessment
|
178
211
|
include Google::Apis::Core::Hashable
|
@@ -771,6 +804,11 @@ module Google
|
|
771
804
|
# @return [Array<String>]
|
772
805
|
attr_accessor :allowed_bundle_ids
|
773
806
|
|
807
|
+
# Contains fields that are required to perform Apple-specific integrity checks.
|
808
|
+
# Corresponds to the JSON property `appleDeveloperId`
|
809
|
+
# @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AppleDeveloperId]
|
810
|
+
attr_accessor :apple_developer_id
|
811
|
+
|
774
812
|
def initialize(**args)
|
775
813
|
update!(**args)
|
776
814
|
end
|
@@ -779,6 +817,7 @@ module Google
|
|
779
817
|
def update!(**args)
|
780
818
|
@allow_all_bundle_ids = args[:allow_all_bundle_ids] if args.key?(:allow_all_bundle_ids)
|
781
819
|
@allowed_bundle_ids = args[:allowed_bundle_ids] if args.key?(:allowed_bundle_ids)
|
820
|
+
@apple_developer_id = args[:apple_developer_id] if args.key?(:apple_developer_id)
|
782
821
|
end
|
783
822
|
end
|
784
823
|
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.33.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 = "
|
25
|
+
REVISION = "20230507"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,12 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class GoogleCloudRecaptchaenterpriseV1AppleDeveloperId
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
55
61
|
class GoogleCloudRecaptchaenterpriseV1Assessment
|
56
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
63
|
|
@@ -366,6 +372,15 @@ module Google
|
|
366
372
|
end
|
367
373
|
end
|
368
374
|
|
375
|
+
class GoogleCloudRecaptchaenterpriseV1AppleDeveloperId
|
376
|
+
# @private
|
377
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
378
|
+
property :key_id, as: 'keyId'
|
379
|
+
property :private_key, as: 'privateKey'
|
380
|
+
property :team_id, as: 'teamId'
|
381
|
+
end
|
382
|
+
end
|
383
|
+
|
369
384
|
class GoogleCloudRecaptchaenterpriseV1Assessment
|
370
385
|
# @private
|
371
386
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -539,6 +554,8 @@ module Google
|
|
539
554
|
class Representation < Google::Apis::Core::JsonRepresentation
|
540
555
|
property :allow_all_bundle_ids, as: 'allowAllBundleIds'
|
541
556
|
collection :allowed_bundle_ids, as: 'allowedBundleIds'
|
557
|
+
property :apple_developer_id, as: 'appleDeveloperId', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AppleDeveloperId, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1AppleDeveloperId::Representation
|
558
|
+
|
542
559
|
end
|
543
560
|
end
|
544
561
|
|
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.
|
4
|
+
version: 0.33.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
|
+
date: 2023-05-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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.33.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: []
|