google-apis-recaptchaenterprise_v1 0.6.0 → 0.7.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: 138e58ad2c7f174dd6e33f3f2e1ea354017115802211c820371bff82eb634559
4
- data.tar.gz: 99c301ce5f50f7d6dd851efab25f9f681fdf071aca1a6d6470f816fe3c46d8f1
3
+ metadata.gz: 661eb80a24e3f822b6f1be1e529f82c846fd0a6d16a68e1dbf00d39ea988bb7c
4
+ data.tar.gz: 582267f04b2d881daac11214f232ac36a5cbeff1472e8768efb775340fc7145e
5
5
  SHA512:
6
- metadata.gz: c0a3c03de836be7ded7bb968d7f52ce37b8486964a47e5f5ceeeafb4470b56b190e1f4e9fc4b32f1e120920ab48ef540494be0cf4f87f3807bb276c9820ebce7
7
- data.tar.gz: 6e83194eb38eb9a2ae694e79e364f054789582080776e00829cc6290e3c66b0bdbdb7aa87ed452ca2a61047c0ff7c7be3b50f22c7263d1e54dd60be3c07a5a3d
6
+ metadata.gz: 3d85e9ae4c504c9dde1460fd5f271a8209810917a4d3a0afca56db02189b946953ac991c8cb1b87d176d17f4d8a9d562ea41c33ad5dd49efc145f24183ee701f
7
+ data.tar.gz: d11d56f251aea82ab2f0cc71d383605d77c7e45ad8e90af4b048f517ef3f0c11b2a519eb4765ee64e63ffb7f28798219799e6c25c07acc94838a9a79af8cfdc9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-recaptchaenterprise_v1
2
2
 
3
+ ### v0.7.0 (2021-09-07)
4
+
5
+ * Regenerated from discovery document revision 20210903
6
+
3
7
  ### v0.6.0 (2021-09-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20210806
@@ -26,6 +26,12 @@ module Google
26
26
  class GoogleCloudRecaptchaenterpriseV1AndroidKeySettings
27
27
  include Google::Apis::Core::Hashable
28
28
 
29
+ # If set to true, it means allowed_package_names will not be enforced.
30
+ # Corresponds to the JSON property `allowAllPackageNames`
31
+ # @return [Boolean]
32
+ attr_accessor :allow_all_package_names
33
+ alias_method :allow_all_package_names?, :allow_all_package_names
34
+
29
35
  # Android package names of apps allowed to use the key. Example: 'com.
30
36
  # companyname.appname'
31
37
  # Corresponds to the JSON property `allowedPackageNames`
@@ -38,6 +44,7 @@ module Google
38
44
 
39
45
  # Update properties of this object
40
46
  def update!(**args)
47
+ @allow_all_package_names = args[:allow_all_package_names] if args.key?(:allow_all_package_names)
41
48
  @allowed_package_names = args[:allowed_package_names] if args.key?(:allowed_package_names)
42
49
  end
43
50
  end
@@ -214,6 +221,12 @@ module Google
214
221
  class GoogleCloudRecaptchaenterpriseV1IosKeySettings
215
222
  include Google::Apis::Core::Hashable
216
223
 
224
+ # If set to true, it means allowed_bundle_ids will not be enforced.
225
+ # Corresponds to the JSON property `allowAllBundleIds`
226
+ # @return [Boolean]
227
+ attr_accessor :allow_all_bundle_ids
228
+ alias_method :allow_all_bundle_ids?, :allow_all_bundle_ids
229
+
217
230
  # iOS bundle ids of apps allowed to use the key. Example: 'com.companyname.
218
231
  # productname.appname'
219
232
  # Corresponds to the JSON property `allowedBundleIds`
@@ -226,6 +239,7 @@ module Google
226
239
 
227
240
  # Update properties of this object
228
241
  def update!(**args)
242
+ @allow_all_bundle_ids = args[:allow_all_bundle_ids] if args.key?(:allow_all_bundle_ids)
229
243
  @allowed_bundle_ids = args[:allowed_bundle_ids] if args.key?(:allowed_bundle_ids)
230
244
  end
231
245
  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.6.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210806"
25
+ REVISION = "20210903"
26
26
  end
27
27
  end
28
28
  end
@@ -133,6 +133,7 @@ module Google
133
133
  class GoogleCloudRecaptchaenterpriseV1AndroidKeySettings
134
134
  # @private
135
135
  class Representation < Google::Apis::Core::JsonRepresentation
136
+ property :allow_all_package_names, as: 'allowAllPackageNames'
136
137
  collection :allowed_package_names, as: 'allowedPackageNames'
137
138
  end
138
139
  end
@@ -188,6 +189,7 @@ module Google
188
189
  class GoogleCloudRecaptchaenterpriseV1IosKeySettings
189
190
  # @private
190
191
  class Representation < Google::Apis::Core::JsonRepresentation
192
+ property :allow_all_bundle_ids, as: 'allowAllBundleIds'
191
193
  collection :allowed_bundle_ids, as: 'allowedBundleIds'
192
194
  end
193
195
  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.6.0
4
+ version: 0.7.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: 2021-09-06 00:00:00.000000000 Z
11
+ date: 2021-09-13 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/master/generated/google-apis-recaptchaenterprise_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-recaptchaenterprise_v1/v0.7.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-recaptchaenterprise_v1
63
63
  post_install_message:
64
64
  rdoc_options: []