google-cloud-recaptcha_enterprise-v1 0.1.1 → 0.2.4

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: b91a5ef6dfd69b1de193e958e54fcc2aaeaa805b95795c1a8b656b910b27af36
4
- data.tar.gz: 1bb7f435b8f30d440b4e6ff2a6b6471a94b90d92c57142b99c26a40003dd3e52
3
+ metadata.gz: 87b2f0e641d219937cbb8cbd55883bfedfbc541878254b53fac9738d0b1c1c49
4
+ data.tar.gz: 02bdd953a86d37e494c1f2f22cac0ca600f10431fab68ba43ecac673488baab9
5
5
  SHA512:
6
- metadata.gz: d7fd5655e90dcc75139cda3f6e89bd2b034899d2f831b4ccd1b43c28f7661008ad3e072a0cb13d19ee521203b587851ef69f2913981d143d8c8a61583b6602ce
7
- data.tar.gz: 629decdc3f3fe9847a242ccbb5f735e2919708b48d1bba79ee25dd5c2458cb2ecc6a4e8f38a4d60d9f911200454df1e341c35d28f792432a0f69945690a4c1c2
6
+ metadata.gz: 7cad1c491a3a7d0807498f36855eda300462600c13f4263ce83daaf0d54681aa7340392fc7e911aab71a749c3d4174016ea193ae0c27cb1ef81a66d3ec68b958
7
+ data.tar.gz: fb02887669ee6b2eeb24dfdb612023b8c296d61c5e818f7344f37eea4cbd15f560e74dba6645a2e5c80df05c20e27516d20c22c285103a53014d59aca19db4e0
data/README.md CHANGED
@@ -18,6 +18,7 @@ In order to use this library, you first need to go through the following steps:
18
18
 
19
19
  1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
20
20
  1. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
21
+ 1. [Enable the API.](https://console.cloud.google.com/apis/library/recaptchaenterprise.googleapis.com)
21
22
  1. {file:AUTHENTICATION.md Set up authentication.}
22
23
 
23
24
  ## Quick Start
@@ -33,6 +34,9 @@ response = client.create_assessment request
33
34
  View the [Client Library Documentation](https://googleapis.dev/ruby/google-cloud-recaptcha_enterprise-v1/latest)
34
35
  for class and method documentation.
35
36
 
37
+ See also the [Product Documentation](https://cloud.google.com/recaptcha-enterprise)
38
+ for general usage information.
39
+
36
40
  ## Enabling Logging
37
41
 
38
42
  To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
@@ -144,7 +144,8 @@ module Google
144
144
  if credentials.is_a?(String) || credentials.is_a?(Hash)
145
145
  credentials = Credentials.new credentials, scope: @config.scope
146
146
  end
147
- @quota_project_id = credentials.respond_to?(:quota_project_id) ? credentials.quota_project_id : nil
147
+ @quota_project_id = @config.quota_project
148
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
148
149
 
149
150
  @recaptcha_enterprise_service_stub = ::Gapic::ServiceStub.new(
150
151
  ::Google::Cloud::RecaptchaEnterprise::V1::RecaptchaEnterpriseService::Stub,
@@ -718,24 +719,28 @@ module Google
718
719
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
719
720
  # trigger a retry.
720
721
  # @return [::Hash]
722
+ # @!attribute [rw] quota_project
723
+ # A separate project against which to charge quota.
724
+ # @return [::String]
721
725
  #
722
726
  class Configuration
723
727
  extend ::Gapic::Config
724
728
 
725
- config_attr :endpoint, "recaptchaenterprise.googleapis.com", String
726
- config_attr :credentials, nil do |value|
727
- allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
729
+ config_attr :endpoint, "recaptchaenterprise.googleapis.com", ::String
730
+ config_attr :credentials, nil do |value|
731
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
728
732
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
729
733
  allowed.any? { |klass| klass === value }
730
734
  end
731
- config_attr :scope, nil, ::String, ::Array, nil
732
- config_attr :lib_name, nil, ::String, nil
733
- config_attr :lib_version, nil, ::String, nil
734
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
735
- config_attr :interceptors, nil, ::Array, nil
736
- config_attr :timeout, nil, ::Numeric, nil
737
- config_attr :metadata, nil, ::Hash, nil
738
- config_attr :retry_policy, nil, ::Hash, Proc, nil
735
+ config_attr :scope, nil, ::String, ::Array, nil
736
+ config_attr :lib_name, nil, ::String, nil
737
+ config_attr :lib_version, nil, ::String, nil
738
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
739
+ config_attr :interceptors, nil, ::Array, nil
740
+ config_attr :timeout, nil, ::Numeric, nil
741
+ config_attr :metadata, nil, ::Hash, nil
742
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
743
+ config_attr :quota_project, nil, ::String, nil
739
744
 
740
745
  # @private
741
746
  def initialize parent_config = nil
@@ -751,7 +756,7 @@ module Google
751
756
  def rpcs
752
757
  @rpcs ||= begin
753
758
  parent_rpcs = nil
754
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
759
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
755
760
  Rpcs.new parent_rpcs
756
761
  end
757
762
  end
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module RecaptchaEnterprise
23
23
  module V1
24
- VERSION = "0.1.1"
24
+ VERSION = "0.2.4"
25
25
  end
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-recaptcha_enterprise-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-05 00:00:00.000000000 Z
11
+ date: 2020-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.2'
19
+ version: '0.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.2'
26
+ version: '0.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: google-cloud-errors
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -58,14 +58,42 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '5.10'
61
+ version: '5.14'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '5.10'
68
+ version: '5.14'
69
+ - !ruby/object:Gem::Dependency
70
+ name: minitest-focus
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.1'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.1'
83
+ - !ruby/object:Gem::Dependency
84
+ name: minitest-rg
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '5.2'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '5.2'
69
97
  - !ruby/object:Gem::Dependency
70
98
  name: rake
71
99
  requirement: !ruby/object:Gem::Requirement
@@ -134,7 +162,6 @@ files:
134
162
  - LICENSE.md
135
163
  - README.md
136
164
  - lib/google-cloud-recaptcha_enterprise-v1.rb
137
- - lib/google/cloud/common_resources_pb.rb
138
165
  - lib/google/cloud/recaptcha_enterprise/v1.rb
139
166
  - lib/google/cloud/recaptcha_enterprise/v1/recaptcha_enterprise_service.rb
140
167
  - lib/google/cloud/recaptcha_enterprise/v1/recaptcha_enterprise_service/client.rb
@@ -169,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
169
196
  - !ruby/object:Gem::Version
170
197
  version: '0'
171
198
  requirements: []
172
- rubygems_version: 3.0.6
199
+ rubygems_version: 3.1.3
173
200
  signing_key:
174
201
  specification_version: 4
175
202
  summary: API Client library for the reCAPTCHA Enterprise V1 API
@@ -1,15 +0,0 @@
1
- # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # source: google/cloud/common_resources.proto
3
-
4
- require 'google/protobuf'
5
-
6
- require 'google/api/resource_pb'
7
- Google::Protobuf::DescriptorPool.generated_pool.build do
8
- add_file("google/cloud/common_resources.proto", :syntax => :proto3) do
9
- end
10
- end
11
-
12
- module Google
13
- module Cloud
14
- end
15
- end