google-apis-threatintelligence_v1beta 0.5.0 → 0.6.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: 9852715e1a673794398037beacb5d99b98b877b5b095ec4c6df019075bc26b55
|
|
4
|
+
data.tar.gz: 42f4d4d1b112df9dd27f158fa3e6afe50ba8cd0641c55a29b46936dcd8ec82c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6be6f9d93bb5b71542a9adf6a3e46337d842f8031f3f8ae4def3377476cb5be2777a69c1e554f7e98a5b73d17a6f0b5bc7a16df16439d5c6ed4aaaa3fdf63f6f
|
|
7
|
+
data.tar.gz: 7839b8bded192e9f6d246e6cc242d0f2749bec48608ae8dd5721c1a29e4ab651ad8f5a283edc1bc8c252e4901ae77ab59243c2e78a485de9a531ff741bc04d29
|
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.6.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260223"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -684,7 +684,8 @@ module Google
|
|
|
684
684
|
execute_or_queue_command(command, &block)
|
|
685
685
|
end
|
|
686
686
|
|
|
687
|
-
# Get a finding by name.
|
|
687
|
+
# Get a finding by name. The `name` field should have the format: `projects/`
|
|
688
|
+
# project`/findings/`finding``
|
|
688
689
|
# @param [String] name
|
|
689
690
|
# Required. Name of the finding to get.
|
|
690
691
|
# @param [String] fields
|
|
@@ -714,7 +715,8 @@ module Google
|
|
|
714
715
|
execute_or_queue_command(command, &block)
|
|
715
716
|
end
|
|
716
717
|
|
|
717
|
-
# Get a list of findings that meet the filter criteria.
|
|
718
|
+
# Get a list of findings that meet the filter criteria. The `parent` field in
|
|
719
|
+
# ListFindingsRequest should have the format: projects/`project`
|
|
718
720
|
# @param [String] parent
|
|
719
721
|
# Required. Parent of the findings.
|
|
720
722
|
# @param [String] filter
|
|
@@ -758,9 +760,10 @@ module Google
|
|
|
758
760
|
end
|
|
759
761
|
|
|
760
762
|
# SearchFindings is a more powerful version of ListFindings that supports
|
|
761
|
-
# complex queries like "findings for
|
|
762
|
-
#
|
|
763
|
-
#
|
|
763
|
+
# complex queries like "findings for alerts" using functions such as `has_alert`
|
|
764
|
+
# in the query string. The `parent` field in SearchFindingsRequest should have
|
|
765
|
+
# the format: projects/`project` Example to search for findings for a specific
|
|
766
|
+
# issue: `has_alert("name=\"projects/gti-12345/alerts/alert-12345\"")`
|
|
764
767
|
# @param [String] parent
|
|
765
768
|
# Required. Parent of the findings. Format: vaults/`vault`
|
|
766
769
|
# @param [String] order_by
|
|
@@ -773,9 +776,8 @@ module Google
|
|
|
773
776
|
# @param [String] query
|
|
774
777
|
# Optional. Query on what findings will be returned. This supports the same
|
|
775
778
|
# filter criteria as FindingService.ListFindings as well as the following
|
|
776
|
-
# relationship
|
|
777
|
-
#
|
|
778
|
-
# 12345/assets/asset-12345\"")
|
|
779
|
+
# relationship query `has_alert`. Example: - `has_alert("name=\"projects/gti-
|
|
780
|
+
# 12345/alerts/alert-12345\"")`
|
|
779
781
|
# @param [String] fields
|
|
780
782
|
# Selector specifying which fields to include in a partial response.
|
|
781
783
|
# @param [String] quota_user
|
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.6.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.6.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:
|