google-apis-threatintelligence_v1beta 0.11.0 → 0.12.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: 6d5126416306105e25c0488c665e8e156cc18992bcaf35f664bd0374cfe45a44
|
|
4
|
+
data.tar.gz: 2302e4c675a7fcb49577071ef0bc9a6f8ab3183d5c23aaad20587069e283c322
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5176263eab003579eab9107ed563bda88bcf702a21eb01e692b4876f75b4fda148184628edf7460a9e72567c3380985d5146bc84fac19bba44fedb9e6e67fcf5
|
|
7
|
+
data.tar.gz: 7adb4540af94b9d42d180788d40e29d6d4f0de366961b71549acbc671c3511819962f71c70be71250f216dd9833174d289c23e52d8a573fe310bf7f240a7a04b
|
data/CHANGELOG.md
CHANGED
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ThreatintelligenceV1beta
|
|
18
18
|
# Version of the google-apis-threatintelligence_v1beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.12.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260726"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -285,6 +285,36 @@ module Google
|
|
|
285
285
|
execute_or_queue_command(command, &block)
|
|
286
286
|
end
|
|
287
287
|
|
|
288
|
+
# Get the decrypted password of an alert.
|
|
289
|
+
# @param [String] name
|
|
290
|
+
# Required. Name of the alert to get. Format: projects/`project`/alerts/`alert`
|
|
291
|
+
# @param [String] fields
|
|
292
|
+
# Selector specifying which fields to include in a partial response.
|
|
293
|
+
# @param [String] quota_user
|
|
294
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
295
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
296
|
+
# @param [Google::Apis::RequestOptions] options
|
|
297
|
+
# Request-specific options
|
|
298
|
+
#
|
|
299
|
+
# @yield [result, err] Result & error if block supplied
|
|
300
|
+
# @yieldparam result [Google::Apis::ThreatintelligenceV1beta::Alert] parsed result object
|
|
301
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
302
|
+
#
|
|
303
|
+
# @return [Google::Apis::ThreatintelligenceV1beta::Alert]
|
|
304
|
+
#
|
|
305
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
306
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
307
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
308
|
+
def get_project_alert_password(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
309
|
+
command = make_simple_command(:get, 'v1beta/{+name}:getPassword', options)
|
|
310
|
+
command.response_representation = Google::Apis::ThreatintelligenceV1beta::Alert::Representation
|
|
311
|
+
command.response_class = Google::Apis::ThreatintelligenceV1beta::Alert
|
|
312
|
+
command.params['name'] = name unless name.nil?
|
|
313
|
+
command.query['fields'] = fields unless fields.nil?
|
|
314
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
315
|
+
execute_or_queue_command(command, &block)
|
|
316
|
+
end
|
|
317
|
+
|
|
288
318
|
# Get a list of alerts that meet the filter criteria.
|
|
289
319
|
# @param [String] parent
|
|
290
320
|
# Required. Parent of the alerts. Format: projects/`project`
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-threatintelligence_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.12.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-threatintelligence_v1beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-threatintelligence_v1beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-threatintelligence_v1beta/v0.12.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-threatintelligence_v1beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|