google-cloud-security_center-v1 0.10.0 → 0.11.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 +4 -4
- data/README.md +2 -2
- data/lib/google/cloud/security_center/v1/security_center/client.rb +849 -28
- data/lib/google/cloud/security_center/v1/security_center/paths.rb +116 -0
- data/lib/google/cloud/security_center/v1/version.rb +1 -1
- data/lib/google/cloud/securitycenter/v1/external_system_pb.rb +29 -0
- data/lib/google/cloud/securitycenter/v1/finding_pb.rb +12 -0
- data/lib/google/cloud/securitycenter/v1/mute_config_pb.rb +32 -0
- data/lib/google/cloud/securitycenter/v1/securitycenter_service_pb.rb +51 -0
- data/lib/google/cloud/securitycenter/v1/securitycenter_service_services_pb.rb +18 -0
- data/proto_docs/google/cloud/securitycenter/v1/external_system.rb +52 -0
- data/proto_docs/google/cloud/securitycenter/v1/finding.rb +40 -0
- data/proto_docs/google/cloud/securitycenter/v1/mute_config.rb +82 -0
- data/proto_docs/google/cloud/securitycenter/v1/securitycenter_service.rb +174 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57582de51ed152a867a60446cd78a28b70e9671e8dcf9733bae8ff46dcb681f1
|
4
|
+
data.tar.gz: 542e85b769bfaafc5c19b806ee57f2cb14e7ef89c1bda956f41e1b197207643e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e451dbf2fff79d9a2f9488ae9c2252651457c1ba0015e27a18ddfb0b6b2d647383c2b6e0089be8903780d2c7443fd24020da861c946f9af6fb2f8fd15ceb3035
|
7
|
+
data.tar.gz: 3214fbc61f75a6115a0d95a4739ee257e1bd6fcd13a7b5122c71790dc90e31074021232d31873624ec82acaa98f1df2cb8293535da3ea0b98d118338fff1bc15
|
data/README.md
CHANGED
@@ -33,8 +33,8 @@ In order to use this library, you first need to go through the following steps:
|
|
33
33
|
require "google/cloud/security_center/v1"
|
34
34
|
|
35
35
|
client = ::Google::Cloud::SecurityCenter::V1::SecurityCenter::Client.new
|
36
|
-
request = ::Google::Cloud::SecurityCenter::V1::
|
37
|
-
response = client.
|
36
|
+
request = ::Google::Cloud::SecurityCenter::V1::BulkMuteFindingsRequest.new # (request fields as keyword arguments...)
|
37
|
+
response = client.bulk_mute_findings request
|
38
38
|
```
|
39
39
|
|
40
40
|
View the [Client Library Documentation](https://googleapis.dev/ruby/google-cloud-security_center-v1/latest)
|