google-apis-recaptchaenterprise_v1 0.54.0 → 0.55.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3a812d833786b6b38a2471d74ec8e4a5d241b239e72ba2dc3272c8372cb3400
|
4
|
+
data.tar.gz: 11cc6c91850d902c583acdd39d2f4dd6cb2c22c9241e74efd180190ea8166ee1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ec59a554ee1f6628f13829abca7044de4a49d512ae4cfb7ed82460060b063cebb0a551efe6555d936e3dff50cb37a779ccf3e2e18362cc5171beb9396409549
|
7
|
+
data.tar.gz: 4ac9db22d2692dd6b117e6c0aea101fdd9272bddf0076921e4f71ff59d5d13faaa4bf8ff0f5e5aaa9e648de3eac2c1a39f2e88a528381ef64d8d7a3378077eac
|
data/CHANGELOG.md
CHANGED
@@ -455,8 +455,7 @@ module Google
|
|
455
455
|
attr_accessor :expected_action
|
456
456
|
|
457
457
|
# Optional. Flag for a reCAPTCHA express request for an assessment without a
|
458
|
-
# token. If enabled, `site_key` must reference
|
459
|
-
# to EXPRESS.
|
458
|
+
# token. If enabled, `site_key` must reference an Express site key.
|
460
459
|
# Corresponds to the JSON property `express`
|
461
460
|
# @return [Boolean]
|
462
461
|
attr_accessor :express
|
@@ -563,6 +562,19 @@ module Google
|
|
563
562
|
end
|
564
563
|
end
|
565
564
|
|
565
|
+
# Settings specific to keys that can be used for reCAPTCHA Express.
|
566
|
+
class GoogleCloudRecaptchaenterpriseV1ExpressKeySettings
|
567
|
+
include Google::Apis::Core::Hashable
|
568
|
+
|
569
|
+
def initialize(**args)
|
570
|
+
update!(**args)
|
571
|
+
end
|
572
|
+
|
573
|
+
# Update properties of this object
|
574
|
+
def update!(**args)
|
575
|
+
end
|
576
|
+
end
|
577
|
+
|
566
578
|
# An individual action. Each action represents what to do if a policy matches.
|
567
579
|
class GoogleCloudRecaptchaenterpriseV1FirewallAction
|
568
580
|
include Google::Apis::Core::Hashable
|
@@ -1072,6 +1084,11 @@ module Google
|
|
1072
1084
|
# @return [String]
|
1073
1085
|
attr_accessor :display_name
|
1074
1086
|
|
1087
|
+
# Settings specific to keys that can be used for reCAPTCHA Express.
|
1088
|
+
# Corresponds to the JSON property `expressSettings`
|
1089
|
+
# @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1ExpressKeySettings]
|
1090
|
+
attr_accessor :express_settings
|
1091
|
+
|
1075
1092
|
# Settings specific to keys that can be used by iOS apps.
|
1076
1093
|
# Corresponds to the JSON property `iosSettings`
|
1077
1094
|
# @return [Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1IosKeySettings]
|
@@ -1113,6 +1130,7 @@ module Google
|
|
1113
1130
|
@android_settings = args[:android_settings] if args.key?(:android_settings)
|
1114
1131
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1115
1132
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1133
|
+
@express_settings = args[:express_settings] if args.key?(:express_settings)
|
1116
1134
|
@ios_settings = args[:ios_settings] if args.key?(:ios_settings)
|
1117
1135
|
@labels = args[:labels] if args.key?(:labels)
|
1118
1136
|
@name = args[:name] if args.key?(:name)
|
@@ -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.55.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240825"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -100,6 +100,12 @@ module Google
|
|
100
100
|
include Google::Apis::Core::JsonObjectSupport
|
101
101
|
end
|
102
102
|
|
103
|
+
class GoogleCloudRecaptchaenterpriseV1ExpressKeySettings
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
103
109
|
class GoogleCloudRecaptchaenterpriseV1FirewallAction
|
104
110
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
111
|
|
@@ -578,6 +584,12 @@ module Google
|
|
578
584
|
end
|
579
585
|
end
|
580
586
|
|
587
|
+
class GoogleCloudRecaptchaenterpriseV1ExpressKeySettings
|
588
|
+
# @private
|
589
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
590
|
+
end
|
591
|
+
end
|
592
|
+
|
581
593
|
class GoogleCloudRecaptchaenterpriseV1FirewallAction
|
582
594
|
# @private
|
583
595
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -741,6 +753,8 @@ module Google
|
|
741
753
|
|
742
754
|
property :create_time, as: 'createTime'
|
743
755
|
property :display_name, as: 'displayName'
|
756
|
+
property :express_settings, as: 'expressSettings', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1ExpressKeySettings, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1ExpressKeySettings::Representation
|
757
|
+
|
744
758
|
property :ios_settings, as: 'iosSettings', class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1IosKeySettings, decorator: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1IosKeySettings::Representation
|
745
759
|
|
746
760
|
hash :labels, as: 'labels'
|
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.55.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: 2024-
|
11
|
+
date: 2024-09-01 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.55.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: []
|