google-cloud-phishing_protection-v1beta1 0.4.0 → 0.6.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: 36bdcbb7741b42d474f0b0c9775e43cd2fae9cb05537129e0b7d6ed43018f1eb
4
- data.tar.gz: 5ee5ee761dd442dd6dc66dfd72390e98b316c5afa9e2b2f40aeb0dcfc9aa6bf3
3
+ metadata.gz: cebd5d4e8dc93729467fad75ce90111c72e60550929f90547aca6bcb0c8e9a81
4
+ data.tar.gz: e091d12a90397524ddb9074f2f6f7952410842abbacd655dca071479184853ce
5
5
  SHA512:
6
- metadata.gz: d778adcd4ee5f1fa3b772753b88d0a493d7256049d257dedac19867e50ef1b1c906413c526c496cc07695f197670ab19e214bc14fc372905018d626c87c1ccad
7
- data.tar.gz: 01e92901f5e6d98ac828a9b2f304c11da11ef8ce1b7264f392402f7529744f10dcbc593daa517984d3d0b4c576c18dddf80c948e28a6eb91335d224e83758c43
6
+ metadata.gz: 5de896dd110525a9ce6dc94ba30e2584c7e9c894122169da083975fb9a2fcc7cabcadef98867b13e0127ba214a93043d350690e45fd704d2587889a377b045da
7
+ data.tar.gz: 3adf570ed19063c51f94a36fccf5a50531999475d201e589751829080ac575afe0d288d1f9fa8abca9aae68947169cf00bea9ce7b5e9f8fe2340dd3648768774
data/AUTHENTICATION.md CHANGED
@@ -114,7 +114,7 @@ credentials are discovered.
114
114
  To configure your system for this, simply:
115
115
 
116
116
  1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
117
- 2. Authenticate using OAuth 2.0 `$ gcloud auth login`
117
+ 2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
118
118
  3. Write code as if already authenticated.
119
119
 
120
120
  **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
data/README.md CHANGED
@@ -46,8 +46,8 @@ for general usage information.
46
46
  ## Enabling Logging
47
47
 
48
48
  To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
49
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
50
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
49
+ The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
50
+ or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
51
51
  that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
52
52
  and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
53
53
 
@@ -278,9 +278,9 @@ module Google
278
278
  # * (`String`) The path to a service account key file in JSON format
279
279
  # * (`Hash`) A service account key as a Hash
280
280
  # * (`Google::Auth::Credentials`) A googleauth credentials object
281
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
281
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
282
282
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
283
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
283
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
284
284
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
285
285
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
286
286
  # * (`nil`) indicating no credentials
@@ -0,0 +1,355 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "google/cloud/errors"
20
+ require "google/cloud/phishingprotection/v1beta1/phishingprotection_pb"
21
+ require "google/cloud/phishing_protection/v1beta1/phishing_protection_service/rest/service_stub"
22
+
23
+ module Google
24
+ module Cloud
25
+ module PhishingProtection
26
+ module V1beta1
27
+ module PhishingProtectionService
28
+ module Rest
29
+ ##
30
+ # REST client for the PhishingProtectionService service.
31
+ #
32
+ # Service to report phishing URIs.
33
+ #
34
+ class Client
35
+ include Paths
36
+
37
+ # @private
38
+ attr_reader :phishing_protection_service_stub
39
+
40
+ ##
41
+ # Configure the PhishingProtectionService Client class.
42
+ #
43
+ # See {::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::Client::Configuration}
44
+ # for a description of the configuration fields.
45
+ #
46
+ # @example
47
+ #
48
+ # # Modify the configuration for all PhishingProtectionService clients
49
+ # ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::Client.configure do |config|
50
+ # config.timeout = 10.0
51
+ # end
52
+ #
53
+ # @yield [config] Configure the Client client.
54
+ # @yieldparam config [Client::Configuration]
55
+ #
56
+ # @return [Client::Configuration]
57
+ #
58
+ def self.configure
59
+ @configure ||= begin
60
+ namespace = ["Google", "Cloud", "PhishingProtection", "V1beta1"]
61
+ parent_config = while namespace.any?
62
+ parent_name = namespace.join "::"
63
+ parent_const = const_get parent_name
64
+ break parent_const.configure if parent_const.respond_to? :configure
65
+ namespace.pop
66
+ end
67
+ default_config = Client::Configuration.new parent_config
68
+
69
+ default_config.rpcs.report_phishing.timeout = 600.0
70
+
71
+ default_config
72
+ end
73
+ yield @configure if block_given?
74
+ @configure
75
+ end
76
+
77
+ ##
78
+ # Configure the PhishingProtectionService Client instance.
79
+ #
80
+ # The configuration is set to the derived mode, meaning that values can be changed,
81
+ # but structural changes (adding new fields, etc.) are not allowed. Structural changes
82
+ # should be made on {Client.configure}.
83
+ #
84
+ # See {::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::Client::Configuration}
85
+ # for a description of the configuration fields.
86
+ #
87
+ # @yield [config] Configure the Client client.
88
+ # @yieldparam config [Client::Configuration]
89
+ #
90
+ # @return [Client::Configuration]
91
+ #
92
+ def configure
93
+ yield @config if block_given?
94
+ @config
95
+ end
96
+
97
+ ##
98
+ # Create a new PhishingProtectionService REST client object.
99
+ #
100
+ # @example
101
+ #
102
+ # # Create a client using the default configuration
103
+ # client = ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::Client.new
104
+ #
105
+ # # Create a client using a custom configuration
106
+ # client = ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::Client.new do |config|
107
+ # config.timeout = 10.0
108
+ # end
109
+ #
110
+ # @yield [config] Configure the PhishingProtectionService client.
111
+ # @yieldparam config [Client::Configuration]
112
+ #
113
+ def initialize
114
+ # Create the configuration object
115
+ @config = Configuration.new Client.configure
116
+
117
+ # Yield the configuration if needed
118
+ yield @config if block_given?
119
+
120
+ # Create credentials
121
+ credentials = @config.credentials
122
+ # Use self-signed JWT if the endpoint is unchanged from default,
123
+ # but only if the default endpoint does not have a region prefix.
124
+ enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
125
+ !@config.endpoint.split(".").first.include?("-")
126
+ credentials ||= Credentials.default scope: @config.scope,
127
+ enable_self_signed_jwt: enable_self_signed_jwt
128
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
129
+ credentials = Credentials.new credentials, scope: @config.scope
130
+ end
131
+
132
+ @quota_project_id = @config.quota_project
133
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
134
+
135
+ @phishing_protection_service_stub = ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::ServiceStub.new endpoint: @config.endpoint, credentials: credentials
136
+ end
137
+
138
+ # Service calls
139
+
140
+ ##
141
+ # Reports a URI suspected of containing phishing content to be reviewed. Once
142
+ # the report review is complete, its result can be found in the Cloud
143
+ # Security Command Center findings dashboard for Phishing Protection. If the
144
+ # result verifies the existence of malicious phishing content, the site will
145
+ # be added the to [Google's Social Engineering
146
+ # lists](https://support.google.com/webmasters/answer/6350487/) in order to
147
+ # protect users that could get exposed to this threat in the future.
148
+ #
149
+ # @overload report_phishing(request, options = nil)
150
+ # Pass arguments to `report_phishing` via a request object, either of type
151
+ # {::Google::Cloud::PhishingProtection::V1beta1::ReportPhishingRequest} or an equivalent Hash.
152
+ #
153
+ # @param request [::Google::Cloud::PhishingProtection::V1beta1::ReportPhishingRequest, ::Hash]
154
+ # A request object representing the call parameters. Required. To specify no
155
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
156
+ # @param options [::Gapic::CallOptions, ::Hash]
157
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
158
+ #
159
+ # @overload report_phishing(parent: nil, uri: nil)
160
+ # Pass arguments to `report_phishing` via keyword arguments. Note that at
161
+ # least one keyword argument is required. To specify no parameters, or to keep all
162
+ # the default parameter values, pass an empty Hash as a request object (see above).
163
+ #
164
+ # @param parent [::String]
165
+ # Required. The name of the project for which the report will be created,
166
+ # in the format "projects/\\{project_number}".
167
+ # @param uri [::String]
168
+ # Required. The URI that is being reported for phishing content to be analyzed.
169
+ # @yield [result, operation] Access the result along with the TransportOperation object
170
+ # @yieldparam result [::Google::Cloud::PhishingProtection::V1beta1::ReportPhishingResponse]
171
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
172
+ #
173
+ # @return [::Google::Cloud::PhishingProtection::V1beta1::ReportPhishingResponse]
174
+ #
175
+ # @raise [::Google::Cloud::Error] if the REST call is aborted.
176
+ def report_phishing request, options = nil
177
+ raise ::ArgumentError, "request must be provided" if request.nil?
178
+
179
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::PhishingProtection::V1beta1::ReportPhishingRequest
180
+
181
+ # Converts hash and nil to an options object
182
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
183
+
184
+ # Customize the options with defaults
185
+ call_metadata = @config.rpcs.report_phishing.metadata.to_h
186
+
187
+ # Set x-goog-api-client and x-goog-user-project headers
188
+ call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
189
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
190
+ gapic_version: ::Google::Cloud::PhishingProtection::V1beta1::VERSION,
191
+ transports_version_send: [:rest]
192
+
193
+ call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
194
+
195
+ options.apply_defaults timeout: @config.rpcs.report_phishing.timeout,
196
+ metadata: call_metadata,
197
+ retry_policy: @config.rpcs.report_phishing.retry_policy
198
+
199
+ options.apply_defaults timeout: @config.timeout,
200
+ metadata: @config.metadata,
201
+ retry_policy: @config.retry_policy
202
+
203
+ @phishing_protection_service_stub.report_phishing request, options do |result, operation|
204
+ yield result, operation if block_given?
205
+ return result
206
+ end
207
+ rescue ::Gapic::Rest::Error => e
208
+ raise ::Google::Cloud::Error.from_error(e)
209
+ end
210
+
211
+ ##
212
+ # Configuration class for the PhishingProtectionService REST API.
213
+ #
214
+ # This class represents the configuration for PhishingProtectionService REST,
215
+ # providing control over timeouts, retry behavior, logging, transport
216
+ # parameters, and other low-level controls. Certain parameters can also be
217
+ # applied individually to specific RPCs. See
218
+ # {::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::Client::Configuration::Rpcs}
219
+ # for a list of RPCs that can be configured independently.
220
+ #
221
+ # Configuration can be applied globally to all clients, or to a single client
222
+ # on construction.
223
+ #
224
+ # @example
225
+ #
226
+ # # Modify the global config, setting the timeout for
227
+ # # report_phishing to 20 seconds,
228
+ # # and all remaining timeouts to 10 seconds.
229
+ # ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::Client.configure do |config|
230
+ # config.timeout = 10.0
231
+ # config.rpcs.report_phishing.timeout = 20.0
232
+ # end
233
+ #
234
+ # # Apply the above configuration only to a new client.
235
+ # client = ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::Client.new do |config|
236
+ # config.timeout = 10.0
237
+ # config.rpcs.report_phishing.timeout = 20.0
238
+ # end
239
+ #
240
+ # @!attribute [rw] endpoint
241
+ # The hostname or hostname:port of the service endpoint.
242
+ # Defaults to `"phishingprotection.googleapis.com"`.
243
+ # @return [::String]
244
+ # @!attribute [rw] credentials
245
+ # Credentials to send with calls. You may provide any of the following types:
246
+ # * (`String`) The path to a service account key file in JSON format
247
+ # * (`Hash`) A service account key as a Hash
248
+ # * (`Google::Auth::Credentials`) A googleauth credentials object
249
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
250
+ # * (`Signet::OAuth2::Client`) A signet oauth2 client object
251
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
252
+ # * (`nil`) indicating no credentials
253
+ # @return [::Object]
254
+ # @!attribute [rw] scope
255
+ # The OAuth scopes
256
+ # @return [::Array<::String>]
257
+ # @!attribute [rw] lib_name
258
+ # The library name as recorded in instrumentation and logging
259
+ # @return [::String]
260
+ # @!attribute [rw] lib_version
261
+ # The library version as recorded in instrumentation and logging
262
+ # @return [::String]
263
+ # @!attribute [rw] timeout
264
+ # The call timeout in seconds.
265
+ # @return [::Numeric]
266
+ # @!attribute [rw] metadata
267
+ # Additional headers to be sent with the call.
268
+ # @return [::Hash{::Symbol=>::String}]
269
+ # @!attribute [rw] retry_policy
270
+ # The retry policy. The value is a hash with the following keys:
271
+ # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
272
+ # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
273
+ # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
274
+ # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
275
+ # trigger a retry.
276
+ # @return [::Hash]
277
+ # @!attribute [rw] quota_project
278
+ # A separate project against which to charge quota.
279
+ # @return [::String]
280
+ #
281
+ class Configuration
282
+ extend ::Gapic::Config
283
+
284
+ config_attr :endpoint, "phishingprotection.googleapis.com", ::String
285
+ config_attr :credentials, nil do |value|
286
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
287
+ allowed.any? { |klass| klass === value }
288
+ end
289
+ config_attr :scope, nil, ::String, ::Array, nil
290
+ config_attr :lib_name, nil, ::String, nil
291
+ config_attr :lib_version, nil, ::String, nil
292
+ config_attr :timeout, nil, ::Numeric, nil
293
+ config_attr :metadata, nil, ::Hash, nil
294
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
295
+ config_attr :quota_project, nil, ::String, nil
296
+
297
+ # @private
298
+ def initialize parent_config = nil
299
+ @parent_config = parent_config unless parent_config.nil?
300
+
301
+ yield self if block_given?
302
+ end
303
+
304
+ ##
305
+ # Configurations for individual RPCs
306
+ # @return [Rpcs]
307
+ #
308
+ def rpcs
309
+ @rpcs ||= begin
310
+ parent_rpcs = nil
311
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
312
+ Rpcs.new parent_rpcs
313
+ end
314
+ end
315
+
316
+ ##
317
+ # Configuration RPC class for the PhishingProtectionService API.
318
+ #
319
+ # Includes fields providing the configuration for each RPC in this service.
320
+ # Each configuration object is of type `Gapic::Config::Method` and includes
321
+ # the following configuration fields:
322
+ #
323
+ # * `timeout` (*type:* `Numeric`) - The call timeout in seconds
324
+ # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
325
+ # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
326
+ # include the following keys:
327
+ # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
328
+ # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
329
+ # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
330
+ # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
331
+ # trigger a retry.
332
+ #
333
+ class Rpcs
334
+ ##
335
+ # RPC-specific configuration for `report_phishing`
336
+ # @return [::Gapic::Config::Method]
337
+ #
338
+ attr_reader :report_phishing
339
+
340
+ # @private
341
+ def initialize parent_rpcs = nil
342
+ report_phishing_config = parent_rpcs.report_phishing if parent_rpcs.respond_to? :report_phishing
343
+ @report_phishing = ::Gapic::Config::Method.new report_phishing_config
344
+
345
+ yield self if block_given?
346
+ end
347
+ end
348
+ end
349
+ end
350
+ end
351
+ end
352
+ end
353
+ end
354
+ end
355
+ end
@@ -0,0 +1,108 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "google/cloud/phishingprotection/v1beta1/phishingprotection_pb"
20
+
21
+ module Google
22
+ module Cloud
23
+ module PhishingProtection
24
+ module V1beta1
25
+ module PhishingProtectionService
26
+ module Rest
27
+ ##
28
+ # REST service stub for the PhishingProtectionService service.
29
+ # Service stub contains baseline method implementations
30
+ # including transcoding, making the REST call, and deserialing the response.
31
+ #
32
+ class ServiceStub
33
+ def initialize endpoint:, credentials:
34
+ # These require statements are intentionally placed here to initialize
35
+ # the REST modules only when it's required.
36
+ require "gapic/rest"
37
+
38
+ @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials,
39
+ numeric_enums: true,
40
+ raise_faraday_errors: false
41
+ end
42
+
43
+ ##
44
+ # Baseline implementation for the report_phishing REST call
45
+ #
46
+ # @param request_pb [::Google::Cloud::PhishingProtection::V1beta1::ReportPhishingRequest]
47
+ # A request object representing the call parameters. Required.
48
+ # @param options [::Gapic::CallOptions]
49
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
50
+ #
51
+ # @yield [result, operation] Access the result along with the TransportOperation object
52
+ # @yieldparam result [::Google::Cloud::PhishingProtection::V1beta1::ReportPhishingResponse]
53
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
54
+ #
55
+ # @return [::Google::Cloud::PhishingProtection::V1beta1::ReportPhishingResponse]
56
+ # A result object deserialized from the server's reply
57
+ def report_phishing request_pb, options = nil
58
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
59
+
60
+ verb, uri, query_string_params, body = ServiceStub.transcode_report_phishing_request request_pb
61
+ query_string_params = if query_string_params.any?
62
+ query_string_params.to_h { |p| p.split("=", 2) }
63
+ else
64
+ {}
65
+ end
66
+
67
+ response = @client_stub.make_http_request(
68
+ verb,
69
+ uri: uri,
70
+ body: body || "",
71
+ params: query_string_params,
72
+ options: options
73
+ )
74
+ operation = ::Gapic::Rest::TransportOperation.new response
75
+ result = ::Google::Cloud::PhishingProtection::V1beta1::ReportPhishingResponse.decode_json response.body, ignore_unknown_fields: true
76
+
77
+ yield result, operation if block_given?
78
+ result
79
+ end
80
+
81
+ ##
82
+ # @private
83
+ #
84
+ # GRPC transcoding helper method for the report_phishing REST call
85
+ #
86
+ # @param request_pb [::Google::Cloud::PhishingProtection::V1beta1::ReportPhishingRequest]
87
+ # A request object representing the call parameters. Required.
88
+ # @return [Array(String, [String, nil], Hash{String => String})]
89
+ # Uri, Body, Query string parameters
90
+ def self.transcode_report_phishing_request request_pb
91
+ transcoder = Gapic::Rest::GrpcTranscoder.new
92
+ .with_bindings(
93
+ uri_method: :post,
94
+ uri_template: "/v1beta1/{parent}/phishing:report",
95
+ body: "*",
96
+ matches: [
97
+ ["parent", %r{^projects/[^/]+/?$}, false]
98
+ ]
99
+ )
100
+ transcoder.transcode request_pb
101
+ end
102
+ end
103
+ end
104
+ end
105
+ end
106
+ end
107
+ end
108
+ end
@@ -0,0 +1,52 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "gapic/rest"
20
+ require "gapic/config"
21
+ require "gapic/config/method"
22
+
23
+ require "google/cloud/phishing_protection/v1beta1/version"
24
+
25
+ require "google/cloud/phishing_protection/v1beta1/phishing_protection_service/credentials"
26
+ require "google/cloud/phishing_protection/v1beta1/phishing_protection_service/paths"
27
+ require "google/cloud/phishing_protection/v1beta1/phishing_protection_service/rest/client"
28
+
29
+ module Google
30
+ module Cloud
31
+ module PhishingProtection
32
+ module V1beta1
33
+ ##
34
+ # Service to report phishing URIs.
35
+ #
36
+ # To load this service and instantiate a REST client:
37
+ #
38
+ # require "google/cloud/phishing_protection/v1beta1/phishing_protection_service/rest"
39
+ # client = ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::Client.new
40
+ #
41
+ module PhishingProtectionService
42
+ # Client for the REST transport
43
+ module Rest
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
50
+
51
+ helper_path = ::File.join __dir__, "rest", "helpers.rb"
52
+ require "google/cloud/phishing_protection/v1beta1/phishing_protection_service/rest/helpers" if ::File.file? helper_path
@@ -25,6 +25,7 @@ require "google/cloud/phishing_protection/v1beta1/version"
25
25
  require "google/cloud/phishing_protection/v1beta1/phishing_protection_service/credentials"
26
26
  require "google/cloud/phishing_protection/v1beta1/phishing_protection_service/paths"
27
27
  require "google/cloud/phishing_protection/v1beta1/phishing_protection_service/client"
28
+ require "google/cloud/phishing_protection/v1beta1/phishing_protection_service/rest"
28
29
 
29
30
  module Google
30
31
  module Cloud
@@ -33,11 +34,16 @@ module Google
33
34
  ##
34
35
  # Service to report phishing URIs.
35
36
  #
36
- # To load this service and instantiate a client:
37
+ # @example Load this service and instantiate a gRPC client
37
38
  #
38
39
  # require "google/cloud/phishing_protection/v1beta1/phishing_protection_service"
39
40
  # client = ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Client.new
40
41
  #
42
+ # @example Load this service and instantiate a REST client
43
+ #
44
+ # require "google/cloud/phishing_protection/v1beta1/phishing_protection_service/rest"
45
+ # client = ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::Client.new
46
+ #
41
47
  module PhishingProtectionService
42
48
  end
43
49
  end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "google/cloud/phishing_protection/v1beta1/phishing_protection_service/rest"
20
+ require "google/cloud/phishing_protection/v1beta1/version"
21
+
22
+ module Google
23
+ module Cloud
24
+ module PhishingProtection
25
+ ##
26
+ # To load just the REST part of this package, including all its services, and instantiate a REST client:
27
+ #
28
+ # @example
29
+ #
30
+ # require "google/cloud/phishing_protection/v1beta1/rest"
31
+ # client = ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::Client.new
32
+ #
33
+ module V1beta1
34
+ end
35
+ end
36
+ end
37
+ end
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module PhishingProtection
23
23
  module V1beta1
24
- VERSION = "0.4.0"
24
+ VERSION = "0.6.0"
25
25
  end
26
26
  end
27
27
  end
@@ -23,13 +23,18 @@ module Google
23
23
  module Cloud
24
24
  module PhishingProtection
25
25
  ##
26
- # To load this package, including all its services, and instantiate a client:
26
+ # API client module.
27
27
  #
28
- # @example
28
+ # @example Load this package, including all its services, and instantiate a gRPC client
29
29
  #
30
30
  # require "google/cloud/phishing_protection/v1beta1"
31
31
  # client = ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Client.new
32
32
  #
33
+ # @example Load this package, including all its services, and instantiate a REST client
34
+ #
35
+ # require "google/cloud/phishing_protection/v1beta1"
36
+ # client = ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Rest::Client.new
37
+ #
33
38
  module V1beta1
34
39
  end
35
40
  end