google-cloud-security_center-v1p1beta1 0.4.1 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.md +188 -190
- data/README.md +66 -2
- data/lib/google/cloud/security_center/v1p1beta1.rb +3 -0
- data/lib/google/cloud/security_center/v1p1beta1/security_center/client.rb +88 -71
- data/lib/google/cloud/security_center/v1p1beta1/security_center/operations.rb +95 -10
- data/lib/google/cloud/security_center/v1p1beta1/security_center/paths.rb +175 -17
- data/lib/google/cloud/security_center/v1p1beta1/version.rb +1 -1
- data/lib/google/cloud/securitycenter/v1p1beta1/asset_pb.rb +4 -1
- data/lib/google/cloud/securitycenter/v1p1beta1/finding_pb.rb +2 -1
- data/lib/google/cloud/securitycenter/v1p1beta1/folder_pb.rb +24 -0
- data/lib/google/cloud/securitycenter/v1p1beta1/notification_config_pb.rb +1 -1
- data/lib/google/cloud/securitycenter/v1p1beta1/notification_message_pb.rb +1 -2
- data/lib/google/cloud/securitycenter/v1p1beta1/organization_settings_pb.rb +2 -1
- data/lib/google/cloud/securitycenter/v1p1beta1/resource_pb.rb +3 -0
- data/lib/google/cloud/securitycenter/v1p1beta1/run_asset_discovery_response_pb.rb +1 -1
- data/lib/google/cloud/securitycenter/v1p1beta1/security_marks_pb.rb +2 -1
- data/lib/google/cloud/securitycenter/v1p1beta1/securitycenter_service_pb.rb +2 -0
- data/lib/google/cloud/securitycenter/v1p1beta1/securitycenter_service_services_pb.rb +4 -2
- data/lib/google/cloud/securitycenter/v1p1beta1/source_pb.rb +2 -1
- data/proto_docs/google/api/field_behavior.rb +6 -0
- data/proto_docs/google/cloud/securitycenter/v1p1beta1/asset.rb +13 -2
- data/proto_docs/google/cloud/securitycenter/v1p1beta1/finding.rb +10 -1
- data/proto_docs/google/cloud/securitycenter/v1p1beta1/folder.rb +40 -0
- data/proto_docs/google/cloud/securitycenter/v1p1beta1/organization_settings.rb +4 -0
- data/proto_docs/google/cloud/securitycenter/v1p1beta1/resource.rb +5 -0
- data/proto_docs/google/cloud/securitycenter/v1p1beta1/security_marks.rb +10 -0
- data/proto_docs/google/cloud/securitycenter/v1p1beta1/securitycenter_service.rb +23 -9
- data/proto_docs/google/cloud/securitycenter/v1p1beta1/source.rb +8 -0
- data/proto_docs/google/longrunning/operations.rb +17 -3
- data/proto_docs/google/protobuf/any.rb +5 -2
- data/proto_docs/google/protobuf/timestamp.rb +10 -1
- metadata +24 -13
@@ -3,14 +3,15 @@
|
|
3
3
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
|
-
require 'google/api/annotations_pb'
|
7
6
|
require 'google/api/resource_pb'
|
7
|
+
require 'google/api/annotations_pb'
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
9
|
add_file("google/cloud/securitycenter/v1p1beta1/source.proto", :syntax => :proto3) do
|
10
10
|
add_message "google.cloud.securitycenter.v1p1beta1.Source" do
|
11
11
|
optional :name, :string, 1
|
12
12
|
optional :display_name, :string, 2
|
13
13
|
optional :description, :string, 3
|
14
|
+
optional :canonical_name, :string, 14
|
14
15
|
end
|
15
16
|
end
|
16
17
|
end
|
@@ -54,6 +54,12 @@ module Google
|
|
54
54
|
# This indicates that the field may be set once in a request to create a
|
55
55
|
# resource, but may not be changed thereafter.
|
56
56
|
IMMUTABLE = 5
|
57
|
+
|
58
|
+
# Denotes that a (repeated) field is an unordered list.
|
59
|
+
# This indicates that the service may provide the elements of the list
|
60
|
+
# in any arbitrary order, rather than the order the user originally
|
61
|
+
# provided. Additionally, the list's order may or may not be stable.
|
62
|
+
UNORDERED_LIST = 6
|
57
63
|
end
|
58
64
|
end
|
59
65
|
end
|
@@ -51,14 +51,20 @@ module Google
|
|
51
51
|
# The time at which the asset was created in Security Command Center.
|
52
52
|
# @!attribute [rw] update_time
|
53
53
|
# @return [::Google::Protobuf::Timestamp]
|
54
|
-
# The time at which the asset was last updated
|
55
|
-
# SCC.
|
54
|
+
# The time at which the asset was last updated or added in Cloud SCC.
|
56
55
|
# @!attribute [rw] iam_policy
|
57
56
|
# @return [::Google::Cloud::SecurityCenter::V1p1beta1::Asset::IamPolicy]
|
58
57
|
# Cloud IAM Policy information associated with the Google Cloud resource
|
59
58
|
# described by the Security Command Center asset. This information is managed
|
60
59
|
# and defined by the Google Cloud resource and cannot be modified by the
|
61
60
|
# user.
|
61
|
+
# @!attribute [rw] canonical_name
|
62
|
+
# @return [::String]
|
63
|
+
# The canonical name of the resource. It's either
|
64
|
+
# "organizations/\\{organization_id}/assets/\\{asset_id}",
|
65
|
+
# "folders/\\{folder_id}/assets/\\{asset_id}" or
|
66
|
+
# "projects/\\{project_number}/assets/\\{asset_id}", depending on the closest CRM
|
67
|
+
# ancestor of the resource.
|
62
68
|
class Asset
|
63
69
|
include ::Google::Protobuf::MessageExts
|
64
70
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -96,6 +102,11 @@ module Google
|
|
96
102
|
# @!attribute [rw] resource_project_display_name
|
97
103
|
# @return [::String]
|
98
104
|
# The user defined display name for the project of this resource.
|
105
|
+
# @!attribute [rw] folders
|
106
|
+
# @return [::Array<::Google::Cloud::SecurityCenter::V1p1Beta1::Folder>]
|
107
|
+
# Contains a Folder message for each folder in the assets ancestry.
|
108
|
+
# The first folder is the deepest nested folder, and the last folder is the
|
109
|
+
# folder directly under the Organization.
|
99
110
|
class SecurityCenterProperties
|
100
111
|
include ::Google::Protobuf::MessageExts
|
101
112
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -78,7 +78,8 @@ module Google
|
|
78
78
|
# occurred. For example, if the finding represents an open firewall it would
|
79
79
|
# capture the time the detector believes the firewall became open. The
|
80
80
|
# accuracy is determined by the detector. If the finding were to be resolved
|
81
|
-
# afterward, this time would reflect when the finding was resolved.
|
81
|
+
# afterward, this time would reflect when the finding was resolved. Must not
|
82
|
+
# be set to a value greater than the current timestamp.
|
82
83
|
# @!attribute [rw] create_time
|
83
84
|
# @return [::Google::Protobuf::Timestamp]
|
84
85
|
# The time at which the finding was created in Security Command Center.
|
@@ -86,6 +87,14 @@ module Google
|
|
86
87
|
# @return [::Google::Cloud::SecurityCenter::V1p1beta1::Finding::Severity]
|
87
88
|
# The severity of the finding. This field is managed by the source that
|
88
89
|
# writes the finding.
|
90
|
+
# @!attribute [rw] canonical_name
|
91
|
+
# @return [::String]
|
92
|
+
# The canonical name of the finding. It's either
|
93
|
+
# "organizations/\\{organization_id}/sources/\\{source_id}/findings/\\{finding_id}",
|
94
|
+
# "folders/\\{folder_id}/sources/\\{source_id}/findings/\\{finding_id}" or
|
95
|
+
# "projects/\\{project_number}/sources/\\{source_id}/findings/\\{finding_id}",
|
96
|
+
# depending on the closest CRM ancestor of the resource associated with the
|
97
|
+
# finding.
|
89
98
|
class Finding
|
90
99
|
include ::Google::Protobuf::MessageExts
|
91
100
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2021 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
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module SecurityCenter
|
23
|
+
module V1p1Beta1
|
24
|
+
# Message that contains the resource name and display name of a folder
|
25
|
+
# resource.
|
26
|
+
# @!attribute [rw] resource_folder
|
27
|
+
# @return [::String]
|
28
|
+
# Full resource name of this folder. See:
|
29
|
+
# https://cloud.google.com/apis/design/resource_names#full_resource_name
|
30
|
+
# @!attribute [rw] resource_folder_display_name
|
31
|
+
# @return [::String]
|
32
|
+
# The user defined display name for this folder.
|
33
|
+
class Folder
|
34
|
+
include ::Google::Protobuf::MessageExts
|
35
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -49,6 +49,10 @@ module Google
|
|
49
49
|
# @!attribute [rw] inclusion_mode
|
50
50
|
# @return [::Google::Cloud::SecurityCenter::V1p1beta1::OrganizationSettings::AssetDiscoveryConfig::InclusionMode]
|
51
51
|
# The mode to use for filtering asset discovery.
|
52
|
+
# @!attribute [rw] folder_ids
|
53
|
+
# @return [::Array<::String>]
|
54
|
+
# The folder ids to use for filtering asset discovery.
|
55
|
+
# It consists of only digits, e.g., 756619654966.
|
52
56
|
class AssetDiscoveryConfig
|
53
57
|
include ::Google::Protobuf::MessageExts
|
54
58
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -38,6 +38,11 @@ module Google
|
|
38
38
|
# @!attribute [rw] parent_display_name
|
39
39
|
# @return [::String]
|
40
40
|
# The human readable name of resource's parent.
|
41
|
+
# @!attribute [r] folders
|
42
|
+
# @return [::Array<::Google::Cloud::SecurityCenter::V1p1Beta1::Folder>]
|
43
|
+
# Output only. Contains a Folder message for each folder in the assets ancestry.
|
44
|
+
# The first folder is the deepest nested folder, and the last folder is the
|
45
|
+
# folder directly under the Organization.
|
41
46
|
class Resource
|
42
47
|
include ::Google::Protobuf::MessageExts
|
43
48
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -42,6 +42,16 @@ module Google
|
|
42
42
|
# * Keys must be letters, numbers, underscores, or dashes
|
43
43
|
# * Values have leading and trailing whitespace trimmed, remaining
|
44
44
|
# characters must be between 1 - 4096 characters (inclusive)
|
45
|
+
# @!attribute [rw] canonical_name
|
46
|
+
# @return [::String]
|
47
|
+
# The canonical name of the marks.
|
48
|
+
# Examples:
|
49
|
+
# "organizations/\\{organization_id}/assets/\\{asset_id}/securityMarks"
|
50
|
+
# "folders/\\{folder_id}/assets/\\{asset_id}/securityMarks"
|
51
|
+
# "projects/\\{project_number}/assets/\\{asset_id}/securityMarks"
|
52
|
+
# "organizations/\\{organization_id}/sources/\\{source_id}/findings/\\{finding_id}/securityMarks"
|
53
|
+
# "folders/\\{folder_id}/sources/\\{source_id}/findings/\\{finding_id}/securityMarks"
|
54
|
+
# "projects/\\{project_number}/sources/\\{source_id}/findings/\\{finding_id}/securityMarks"
|
45
55
|
class SecurityMarks
|
46
56
|
include ::Google::Protobuf::MessageExts
|
47
57
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -115,7 +115,8 @@ module Google
|
|
115
115
|
# @!attribute [rw] parent
|
116
116
|
# @return [::String]
|
117
117
|
# Required. Name of the organization to groupBy. Its format is
|
118
|
-
# "organizations/[organization_id]
|
118
|
+
# "organizations/[organization_id], folders/[folder_id], or
|
119
|
+
# projects/[project_id]".
|
119
120
|
# @!attribute [rw] filter
|
120
121
|
# @return [::String]
|
121
122
|
# Expression that defines the filter to apply across assets.
|
@@ -274,9 +275,12 @@ module Google
|
|
274
275
|
# @!attribute [rw] parent
|
275
276
|
# @return [::String]
|
276
277
|
# Required. Name of the source to groupBy. Its format is
|
277
|
-
# "organizations/[organization_id]/sources/[source_id]"
|
278
|
-
#
|
279
|
-
#
|
278
|
+
# "organizations/[organization_id]/sources/[source_id]",
|
279
|
+
# folders/[folder_id]/sources/[source_id], or
|
280
|
+
# projects/[project_id]/sources/[source_id]. To groupBy across all sources
|
281
|
+
# provide a source_id of `-`. For example:
|
282
|
+
# organizations/\\{organization_id}/sources/-, folders/\\{folder_id}/sources/-,
|
283
|
+
# or projects/\\{project_id}/sources/-
|
280
284
|
# @!attribute [rw] filter
|
281
285
|
# @return [::String]
|
282
286
|
# Expression that defines the filter to apply across findings.
|
@@ -478,7 +482,8 @@ module Google
|
|
478
482
|
# @!attribute [rw] parent
|
479
483
|
# @return [::String]
|
480
484
|
# Required. Resource name of the parent of sources to list. Its format should be
|
481
|
-
# "organizations/[organization_id]
|
485
|
+
# "organizations/[organization_id], folders/[folder_id], or
|
486
|
+
# projects/[project_id]".
|
482
487
|
# @!attribute [rw] page_token
|
483
488
|
# @return [::String]
|
484
489
|
# The value returned by the last `ListSourcesResponse`; indicates
|
@@ -510,7 +515,8 @@ module Google
|
|
510
515
|
# @!attribute [rw] parent
|
511
516
|
# @return [::String]
|
512
517
|
# Required. Name of the organization assets should belong to. Its format is
|
513
|
-
# "organizations/[organization_id]
|
518
|
+
# "organizations/[organization_id], folders/[folder_id], or
|
519
|
+
# projects/[project_id]".
|
514
520
|
# @!attribute [rw] filter
|
515
521
|
# @return [::String]
|
516
522
|
# Expression that defines the filter to apply across assets.
|
@@ -704,9 +710,12 @@ module Google
|
|
704
710
|
# @!attribute [rw] parent
|
705
711
|
# @return [::String]
|
706
712
|
# Required. Name of the source the findings belong to. Its format is
|
707
|
-
# "organizations/[organization_id]/sources/[source_id]
|
708
|
-
# sources
|
709
|
-
#
|
713
|
+
# "organizations/[organization_id]/sources/[source_id],
|
714
|
+
# folders/[folder_id]/sources/[source_id], or
|
715
|
+
# projects/[project_id]/sources/[source_id]". To list across all sources
|
716
|
+
# provide a source_id of `-`. For example:
|
717
|
+
# organizations/\\{organization_id}/sources/-, folders/\\{folder_id}/sources/- or
|
718
|
+
# projects/\\{projects_id}/sources/-
|
710
719
|
# @!attribute [rw] filter
|
711
720
|
# @return [::String]
|
712
721
|
# Expression that defines the filter to apply across findings.
|
@@ -885,6 +894,11 @@ module Google
|
|
885
894
|
# @!attribute [rw] parent_display_name
|
886
895
|
# @return [::String]
|
887
896
|
# The human readable name of resource's parent.
|
897
|
+
# @!attribute [rw] folders
|
898
|
+
# @return [::Array<::Google::Cloud::SecurityCenter::V1p1Beta1::Folder>]
|
899
|
+
# Contains a Folder message for each folder in the assets ancestry.
|
900
|
+
# The first folder is the deepest nested folder, and the last folder is
|
901
|
+
# the folder directly under the Organization.
|
888
902
|
class Resource
|
889
903
|
include ::Google::Protobuf::MessageExts
|
890
904
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -46,6 +46,14 @@ module Google
|
|
46
46
|
# scan and detect four common vulnerabilities, including cross-site-scripting
|
47
47
|
# (XSS), Flash injection, mixed content (HTTP in HTTPS), and
|
48
48
|
# outdated/insecure libraries."
|
49
|
+
# @!attribute [rw] canonical_name
|
50
|
+
# @return [::String]
|
51
|
+
# The canonical name of the finding. It's either
|
52
|
+
# "organizations/\\{organization_id}/sources/\\{source_id}",
|
53
|
+
# "folders/\\{folder_id}/sources/\\{source_id}" or
|
54
|
+
# "projects/\\{project_number}/sources/\\{source_id}",
|
55
|
+
# depending on the closest CRM ancestor of the resource associated with the
|
56
|
+
# finding.
|
49
57
|
class Source
|
50
58
|
include ::Google::Protobuf::MessageExts
|
51
59
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -25,7 +25,7 @@ module Google
|
|
25
25
|
# @return [::String]
|
26
26
|
# The server-assigned name, which is only unique within the same service that
|
27
27
|
# originally returns it. If you use the default HTTP mapping, the
|
28
|
-
# `name` should
|
28
|
+
# `name` should be a resource name ending with `operations/{unique_id}`.
|
29
29
|
# @!attribute [rw] metadata
|
30
30
|
# @return [::Google::Protobuf::Any]
|
31
31
|
# Service-specific metadata associated with the operation. It typically
|
@@ -35,7 +35,7 @@ module Google
|
|
35
35
|
# @!attribute [rw] done
|
36
36
|
# @return [::Boolean]
|
37
37
|
# If the value is `false`, it means the operation is still in progress.
|
38
|
-
# If true
|
38
|
+
# If `true`, the operation is completed, and either `error` or `response` is
|
39
39
|
# available.
|
40
40
|
# @!attribute [rw] error
|
41
41
|
# @return [::Google::Rpc::Status]
|
@@ -67,7 +67,7 @@ module Google
|
|
67
67
|
# The request message for Operations.ListOperations.
|
68
68
|
# @!attribute [rw] name
|
69
69
|
# @return [::String]
|
70
|
-
# The name of the operation
|
70
|
+
# The name of the operation's parent resource.
|
71
71
|
# @!attribute [rw] filter
|
72
72
|
# @return [::String]
|
73
73
|
# The standard list filter.
|
@@ -112,6 +112,20 @@ module Google
|
|
112
112
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
113
113
|
end
|
114
114
|
|
115
|
+
# The request message for Operations.WaitOperation.
|
116
|
+
# @!attribute [rw] name
|
117
|
+
# @return [::String]
|
118
|
+
# The name of the operation resource to wait on.
|
119
|
+
# @!attribute [rw] timeout
|
120
|
+
# @return [::Google::Protobuf::Duration]
|
121
|
+
# The maximum duration to wait before timing out. If left blank, the wait
|
122
|
+
# will be at most the time permitted by the underlying HTTP/RPC protocol.
|
123
|
+
# If RPC context deadline is also specified, the shorter one will be used.
|
124
|
+
class WaitOperationRequest
|
125
|
+
include ::Google::Protobuf::MessageExts
|
126
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
127
|
+
end
|
128
|
+
|
115
129
|
# A message representing the message types used by a long-running operation.
|
116
130
|
#
|
117
131
|
# Example:
|
@@ -57,10 +57,13 @@ module Google
|
|
57
57
|
# Example 4: Pack and unpack a message in Go
|
58
58
|
#
|
59
59
|
# foo := &pb.Foo{...}
|
60
|
-
# any, err :=
|
60
|
+
# any, err := anypb.New(foo)
|
61
|
+
# if err != nil {
|
62
|
+
# ...
|
63
|
+
# }
|
61
64
|
# ...
|
62
65
|
# foo := &pb.Foo{}
|
63
|
-
# if err :=
|
66
|
+
# if err := any.UnmarshalTo(foo); err != nil {
|
64
67
|
# ...
|
65
68
|
# }
|
66
69
|
#
|
@@ -70,7 +70,16 @@ module Google
|
|
70
70
|
# .setNanos((int) ((millis % 1000) * 1000000)).build();
|
71
71
|
#
|
72
72
|
#
|
73
|
-
# Example 5: Compute Timestamp from
|
73
|
+
# Example 5: Compute Timestamp from Java `Instant.now()`.
|
74
|
+
#
|
75
|
+
# Instant now = Instant.now();
|
76
|
+
#
|
77
|
+
# Timestamp timestamp =
|
78
|
+
# Timestamp.newBuilder().setSeconds(now.getEpochSecond())
|
79
|
+
# .setNanos(now.getNano()).build();
|
80
|
+
#
|
81
|
+
#
|
82
|
+
# Example 6: Compute Timestamp from current time in Python.
|
74
83
|
#
|
75
84
|
# timestamp = Timestamp()
|
76
85
|
# timestamp.GetCurrentTime()
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-security_center-v1p1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.5'
|
20
|
+
- - "<"
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.5'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: google-cloud-errors
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -47,7 +53,7 @@ dependencies:
|
|
47
53
|
version: 0.6.10
|
48
54
|
- - "<"
|
49
55
|
- !ruby/object:Gem::Version
|
50
|
-
version:
|
56
|
+
version: 2.a
|
51
57
|
type: :runtime
|
52
58
|
prerelease: false
|
53
59
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -57,21 +63,21 @@ dependencies:
|
|
57
63
|
version: 0.6.10
|
58
64
|
- - "<"
|
59
65
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
66
|
+
version: 2.a
|
61
67
|
- !ruby/object:Gem::Dependency
|
62
68
|
name: google-style
|
63
69
|
requirement: !ruby/object:Gem::Requirement
|
64
70
|
requirements:
|
65
71
|
- - "~>"
|
66
72
|
- !ruby/object:Gem::Version
|
67
|
-
version: 1.
|
73
|
+
version: 1.25.1
|
68
74
|
type: :development
|
69
75
|
prerelease: false
|
70
76
|
version_requirements: !ruby/object:Gem::Requirement
|
71
77
|
requirements:
|
72
78
|
- - "~>"
|
73
79
|
- !ruby/object:Gem::Version
|
74
|
-
version: 1.
|
80
|
+
version: 1.25.1
|
75
81
|
- !ruby/object:Gem::Dependency
|
76
82
|
name: minitest
|
77
83
|
requirement: !ruby/object:Gem::Requirement
|
@@ -171,7 +177,10 @@ dependencies:
|
|
171
177
|
- !ruby/object:Gem::Version
|
172
178
|
version: '0.9'
|
173
179
|
description: Security Command Center API provides access to temporal views of assets
|
174
|
-
and findings within an organization.
|
180
|
+
and findings within an organization. Note that google-cloud-security_center-v1p1beta1
|
181
|
+
is a version-specific client library. For most uses, we recommend installing the
|
182
|
+
main client library google-cloud-security_center instead. See the readme for more
|
183
|
+
details.
|
175
184
|
email: googleapis-packages@google.com
|
176
185
|
executables: []
|
177
186
|
extensions: []
|
@@ -191,6 +200,7 @@ files:
|
|
191
200
|
- lib/google/cloud/security_center/v1p1beta1/version.rb
|
192
201
|
- lib/google/cloud/securitycenter/v1p1beta1/asset_pb.rb
|
193
202
|
- lib/google/cloud/securitycenter/v1p1beta1/finding_pb.rb
|
203
|
+
- lib/google/cloud/securitycenter/v1p1beta1/folder_pb.rb
|
194
204
|
- lib/google/cloud/securitycenter/v1p1beta1/notification_config_pb.rb
|
195
205
|
- lib/google/cloud/securitycenter/v1p1beta1/notification_message_pb.rb
|
196
206
|
- lib/google/cloud/securitycenter/v1p1beta1/organization_settings_pb.rb
|
@@ -205,6 +215,7 @@ files:
|
|
205
215
|
- proto_docs/google/api/resource.rb
|
206
216
|
- proto_docs/google/cloud/securitycenter/v1p1beta1/asset.rb
|
207
217
|
- proto_docs/google/cloud/securitycenter/v1p1beta1/finding.rb
|
218
|
+
- proto_docs/google/cloud/securitycenter/v1p1beta1/folder.rb
|
208
219
|
- proto_docs/google/cloud/securitycenter/v1p1beta1/notification_config.rb
|
209
220
|
- proto_docs/google/cloud/securitycenter/v1p1beta1/notification_message.rb
|
210
221
|
- proto_docs/google/cloud/securitycenter/v1p1beta1/organization_settings.rb
|
@@ -237,14 +248,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
237
248
|
requirements:
|
238
249
|
- - ">="
|
239
250
|
- !ruby/object:Gem::Version
|
240
|
-
version: '2.
|
251
|
+
version: '2.5'
|
241
252
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
242
253
|
requirements:
|
243
254
|
- - ">="
|
244
255
|
- !ruby/object:Gem::Version
|
245
256
|
version: '0'
|
246
257
|
requirements: []
|
247
|
-
rubygems_version: 3.
|
258
|
+
rubygems_version: 3.2.17
|
248
259
|
signing_key:
|
249
260
|
specification_version: 4
|
250
261
|
summary: API Client library for the Cloud Security Command Center V1p1beta1 API
|