google-cloud-security_center-v1 0.9.1 → 0.10.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/lib/google/cloud/security_center/v1/security_center/client.rb +1 -0
- data/lib/google/cloud/security_center/v1/version.rb +1 -1
- data/lib/google/cloud/securitycenter/v1/resource_pb.rb +1 -0
- data/lib/google/cloud/securitycenter/v1/securitycenter_service_pb.rb +2 -0
- data/proto_docs/google/cloud/securitycenter/v1/resource.rb +3 -0
- data/proto_docs/google/cloud/securitycenter/v1/securitycenter_service.rb +7 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62320de87adec9df48ae0bd21b58951da5e2cdacea33489836e3658a181c49c7
|
|
4
|
+
data.tar.gz: 5978a0d2fc6235bb24c9f4521d525ccff037dd84043cc67b2a52009a00a1b070
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4fda275ad4e410524dbe13dd66166a72239f3b265789fdc6a6e57bf6b12ce41ec605081b39c951eaae737dbbf25f9f2c025f4ec1e1e83597efe1155d872f2ec
|
|
7
|
+
data.tar.gz: e5ada2a93b041a8f6189ee804d04e07b844b8eb1fcc1cebbaa230f4a91fa8458c047f8bb0b6618ace2c6a14340127fd6f21ab5b6ea593e54fc4b5e5f0fea5787
|
|
@@ -1697,6 +1697,7 @@ module Google
|
|
|
1697
1697
|
# * resource.project_display_name: `=`, `:`
|
|
1698
1698
|
# * resource.type: `=`, `:`
|
|
1699
1699
|
# * resource.folders.resource_folder: `=`, `:`
|
|
1700
|
+
# * resource.display_name: `=`, `:`
|
|
1700
1701
|
# @param order_by [::String]
|
|
1701
1702
|
# Expression that defines what fields and order to use for sorting. The
|
|
1702
1703
|
# string value should follow SQL syntax: comma separated list of fields. For
|
|
@@ -16,6 +16,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
16
16
|
optional :parent_display_name, :string, 5
|
|
17
17
|
optional :type, :string, 6
|
|
18
18
|
repeated :folders, :message, 7, "google.cloud.securitycenter.v1.Folder"
|
|
19
|
+
optional :display_name, :string, 8
|
|
19
20
|
end
|
|
20
21
|
end
|
|
21
22
|
end
|
|
@@ -156,7 +156,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
156
156
|
optional :project_display_name, :string, 3
|
|
157
157
|
optional :parent_name, :string, 4
|
|
158
158
|
optional :parent_display_name, :string, 5
|
|
159
|
+
optional :type, :string, 6
|
|
159
160
|
repeated :folders, :message, 7, "google.cloud.securitycenter.v1.Folder"
|
|
161
|
+
optional :display_name, :string, 8
|
|
160
162
|
end
|
|
161
163
|
add_enum "google.cloud.securitycenter.v1.ListFindingsResponse.ListFindingsResult.StateChange" do
|
|
162
164
|
value :UNUSED, 0
|
|
@@ -46,6 +46,9 @@ module Google
|
|
|
46
46
|
# Output only. Contains a Folder message for each folder in the assets ancestry.
|
|
47
47
|
# The first folder is the deepest nested folder, and the last folder is the
|
|
48
48
|
# folder directly under the Organization.
|
|
49
|
+
# @!attribute [rw] display_name
|
|
50
|
+
# @return [::String]
|
|
51
|
+
# The human readable name of the resource.
|
|
49
52
|
class Resource
|
|
50
53
|
include ::Google::Protobuf::MessageExts
|
|
51
54
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -790,6 +790,7 @@ module Google
|
|
|
790
790
|
# * resource.project_display_name: `=`, `:`
|
|
791
791
|
# * resource.type: `=`, `:`
|
|
792
792
|
# * resource.folders.resource_folder: `=`, `:`
|
|
793
|
+
# * resource.display_name: `=`, `:`
|
|
793
794
|
# @!attribute [rw] order_by
|
|
794
795
|
# @return [::String]
|
|
795
796
|
# Expression that defines what fields and order to use for sorting. The
|
|
@@ -916,11 +917,17 @@ module Google
|
|
|
916
917
|
# @!attribute [rw] parent_display_name
|
|
917
918
|
# @return [::String]
|
|
918
919
|
# The human readable name of resource's parent.
|
|
920
|
+
# @!attribute [rw] type
|
|
921
|
+
# @return [::String]
|
|
922
|
+
# The full resource type of the resource.
|
|
919
923
|
# @!attribute [rw] folders
|
|
920
924
|
# @return [::Array<::Google::Cloud::SecurityCenter::V1::Folder>]
|
|
921
925
|
# Contains a Folder message for each folder in the assets ancestry.
|
|
922
926
|
# The first folder is the deepest nested folder, and the last folder is
|
|
923
927
|
# the folder directly under the Organization.
|
|
928
|
+
# @!attribute [rw] display_name
|
|
929
|
+
# @return [::String]
|
|
930
|
+
# The human readable name of the resource.
|
|
924
931
|
class Resource
|
|
925
932
|
include ::Google::Protobuf::MessageExts
|
|
926
933
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-security_center-v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-11-
|
|
11
|
+
date: 2021-11-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|