google-cloud-security_center-v1p1beta1 0.3.3 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +64 -0
- data/lib/google/cloud/security_center/v1p1beta1.rb +3 -0
- data/lib/google/cloud/security_center/v1p1beta1/security_center/client.rb +42 -39
- data/lib/google/cloud/security_center/v1p1beta1/security_center/operations.rb +90 -5
- data/lib/google/cloud/security_center/v1p1beta1/version.rb +1 -1
- data/lib/google/cloud/securitycenter/v1p1beta1/finding_pb.rb +9 -0
- data/lib/google/cloud/securitycenter/v1p1beta1/securitycenter_service_pb.rb +1 -0
- data/lib/google/cloud/securitycenter/v1p1beta1/securitycenter_service_services_pb.rb +23 -25
- data/proto_docs/google/api/field_behavior.rb +6 -0
- data/proto_docs/google/api/resource.rb +50 -14
- data/proto_docs/google/cloud/securitycenter/v1p1beta1/finding.rb +28 -3
- data/proto_docs/google/cloud/securitycenter/v1p1beta1/securitycenter_service.rb +34 -37
- 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 +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0a8f4aed513fe1f1d62e80edf22346568eae3090570d99814a13b3b5055bdfd
|
4
|
+
data.tar.gz: ed0bf8fcba98e292f05082a42c15bfbc4493e8acda1532afa05f0b1f6a919230
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8c0f8579fb29274e88b32b912b4fd48cfd39c8116656f89109567e05530b4879817fa27704888ad66804b5ac40f2e6a3cec5b4a8d8e88898095ef00ccac520d
|
7
|
+
data.tar.gz: f538ae5e90e592e7e182d7b3407addbb6244110c235507ad15d147b942f52c69c5ddd3e146e0a8e8f60865d6178e10d14e6838223ccf004cd1aaa239aa8b4030
|
data/README.md
CHANGED
@@ -6,6 +6,12 @@ Security Command Center API provides access to temporal views of assets and find
|
|
6
6
|
|
7
7
|
https://github.com/googleapis/google-cloud-ruby
|
8
8
|
|
9
|
+
This gem is a _versioned_ client. It provides basic client classes for a
|
10
|
+
specific version of the Cloud Security Command Center V1p1beta1 API. Most users should consider using
|
11
|
+
the main client gem,
|
12
|
+
[google-cloud-security_center](https://rubygems.org/gems/google-cloud-security_center).
|
13
|
+
See the section below titled *Which client should I use?* for more information.
|
14
|
+
|
9
15
|
## Installation
|
10
16
|
|
11
17
|
```
|
@@ -73,3 +79,61 @@ in security maintenance, and not end of life. Currently, this means Ruby 2.4
|
|
73
79
|
and later. Older versions of Ruby _may_ still work, but are unsupported and not
|
74
80
|
recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
|
75
81
|
about the Ruby support schedule.
|
82
|
+
|
83
|
+
## Which client should I use?
|
84
|
+
|
85
|
+
Most modern Ruby client libraries for Google APIs come in two flavors: the main
|
86
|
+
client library with a name such as `google-cloud-security_center`,
|
87
|
+
and lower-level _versioned_ client libraries with names such as
|
88
|
+
`google-cloud-security_center-v1p1beta1`.
|
89
|
+
_In most cases, you should install the main client._
|
90
|
+
|
91
|
+
### What's the difference between the main client and a versioned client?
|
92
|
+
|
93
|
+
A _versioned client_ provides a basic set of data types and client classes for
|
94
|
+
a _single version_ of a specific service. (That is, for a service with multiple
|
95
|
+
versions, there might be a separate versioned client for each service version.)
|
96
|
+
Most versioned clients are written and maintained by a code generator.
|
97
|
+
|
98
|
+
The _main client_ is designed to provide you with the _recommended_ client
|
99
|
+
interfaces for the service. There will be only one main client for any given
|
100
|
+
service, even a service with multiple versions. The main client includes
|
101
|
+
factory methods for constructing the client objects we recommend for most
|
102
|
+
users. In some cases, those will be classes provided by an underlying versioned
|
103
|
+
client; in other cases, they will be handwritten higher-level client objects
|
104
|
+
with additional capabilities, convenience methods, or best practices built in.
|
105
|
+
Generally, the main client will default to a recommended service version,
|
106
|
+
although in some cases you can override this if you need to talk to a specific
|
107
|
+
service version.
|
108
|
+
|
109
|
+
### Why would I want to use the main client?
|
110
|
+
|
111
|
+
We recommend that most users install the main client gem for a service. You can
|
112
|
+
identify this gem as the one _without_ a version in its name, e.g.
|
113
|
+
`google-cloud-security_center`.
|
114
|
+
The main client is recommended because it will embody the best practices for
|
115
|
+
accessing the service, and may also provide more convenient interfaces or
|
116
|
+
tighter integration into frameworks and third-party libraries. In addition, the
|
117
|
+
documentation and samples published by Google will generally demonstrate use of
|
118
|
+
the main client.
|
119
|
+
|
120
|
+
### Why would I want to use a versioned client?
|
121
|
+
|
122
|
+
You can use a versioned client if you are content with a possibly lower-level
|
123
|
+
class interface, you explicitly want to avoid features provided by the main
|
124
|
+
client, or you want to access a specific service version not be covered by the
|
125
|
+
main client. You can identify versioned client gems because the service version
|
126
|
+
is part of the name, e.g. `google-cloud-security_center-v1p1beta1`.
|
127
|
+
|
128
|
+
### What about the google-apis-<name> clients?
|
129
|
+
|
130
|
+
Client library gems with names that begin with `google-apis-` are based on an
|
131
|
+
older code generation technology. They talk to a REST/JSON backend (whereas
|
132
|
+
most modern clients talk to a [gRPC](https://grpc.io/) backend) and they may
|
133
|
+
not offer the same performance, features, and ease of use provided by more
|
134
|
+
modern clients.
|
135
|
+
|
136
|
+
The `google-apis-` clients have wide coverage across Google services, so you
|
137
|
+
might need to use one if there is no modern client available for the service.
|
138
|
+
However, if a modern client is available, we generally recommend it over the
|
139
|
+
older `google-apis-` clients.
|
@@ -238,7 +238,13 @@ module Google
|
|
238
238
|
|
239
239
|
# Create credentials
|
240
240
|
credentials = @config.credentials
|
241
|
-
|
241
|
+
# Use self-signed JWT if the scope and endpoint are unchanged from default,
|
242
|
+
# but only if the default endpoint does not have a region prefix.
|
243
|
+
enable_self_signed_jwt = @config.scope == Client.configure.scope &&
|
244
|
+
@config.endpoint == Client.configure.endpoint &&
|
245
|
+
!@config.endpoint.split(".").first.include?("-")
|
246
|
+
credentials ||= Credentials.default scope: @config.scope,
|
247
|
+
enable_self_signed_jwt: enable_self_signed_jwt
|
242
248
|
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
243
249
|
credentials = Credentials.new credentials, scope: @config.scope
|
244
250
|
end
|
@@ -290,8 +296,8 @@ module Google
|
|
290
296
|
# Required. Resource name of the new source's parent. Its format should be
|
291
297
|
# "organizations/[organization_id]".
|
292
298
|
# @param source [::Google::Cloud::SecurityCenter::V1p1beta1::Source, ::Hash]
|
293
|
-
# Required. The Source being created, only the display_name and description
|
294
|
-
#
|
299
|
+
# Required. The Source being created, only the display_name and description will be
|
300
|
+
# used. All other fields will be ignored.
|
295
301
|
#
|
296
302
|
# @yield [response, operation] Access the result along with the RPC operation
|
297
303
|
# @yieldparam response [::Google::Cloud::SecurityCenter::V1p1beta1::Source]
|
@@ -362,11 +368,9 @@ module Google
|
|
362
368
|
# "organizations/[organization_id]/sources/[source_id]".
|
363
369
|
# @param finding_id [::String]
|
364
370
|
# Required. Unique identifier provided by the client within the parent scope.
|
365
|
-
# It must be alphanumeric and less than or equal to 32 characters and
|
366
|
-
# greater than 0 characters in length.
|
367
371
|
# @param finding [::Google::Cloud::SecurityCenter::V1p1beta1::Finding, ::Hash]
|
368
|
-
# Required. The Finding being created. The name and security_marks will be
|
369
|
-
#
|
372
|
+
# Required. The Finding being created. The name and security_marks will be ignored as
|
373
|
+
# they are both output only fields on this resource.
|
370
374
|
#
|
371
375
|
# @yield [response, operation] Access the result along with the RPC operation
|
372
376
|
# @yieldparam response [::Google::Cloud::SecurityCenter::V1p1beta1::Finding]
|
@@ -432,17 +436,15 @@ module Google
|
|
432
436
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
433
437
|
#
|
434
438
|
# @param parent [::String]
|
435
|
-
# Required. Resource name of the new notification config's parent. Its format
|
436
|
-
#
|
439
|
+
# Required. Resource name of the new notification config's parent. Its format is
|
440
|
+
# "organizations/[organization_id]".
|
437
441
|
# @param config_id [::String]
|
438
|
-
# Required.
|
439
|
-
# Unique identifier provided by the client within the parent scope.
|
442
|
+
# Required. Unique identifier provided by the client within the parent scope.
|
440
443
|
# It must be between 1 and 128 characters, and contains alphanumeric
|
441
444
|
# characters, underscores or hyphens only.
|
442
445
|
# @param notification_config [::Google::Cloud::SecurityCenter::V1p1beta1::NotificationConfig, ::Hash]
|
443
|
-
# Required. The notification config being created. The name and the service
|
444
|
-
#
|
445
|
-
# resource.
|
446
|
+
# Required. The notification config being created. The name and the service account
|
447
|
+
# will be ignored as they are both output only fields on this resource.
|
446
448
|
#
|
447
449
|
# @yield [response, operation] Access the result along with the RPC operation
|
448
450
|
# @yieldparam response [::Google::Cloud::SecurityCenter::V1p1beta1::NotificationConfig]
|
@@ -712,8 +714,8 @@ module Google
|
|
712
714
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
713
715
|
#
|
714
716
|
# @param name [::String]
|
715
|
-
# Required. Name of the organization to get organization settings for. Its
|
716
|
-
#
|
717
|
+
# Required. Name of the organization to get organization settings for. Its format is
|
718
|
+
# "organizations/[organization_id]/organizationSettings".
|
717
719
|
#
|
718
720
|
# @yield [response, operation] Access the result along with the RPC operation
|
719
721
|
# @yieldparam response [::Google::Cloud::SecurityCenter::V1p1beta1::OrganizationSettings]
|
@@ -913,9 +915,9 @@ module Google
|
|
913
915
|
# Use a negated partial match on the empty string to filter based on a
|
914
916
|
# property not existing: `-resource_properties.my_property : ""`
|
915
917
|
# @param group_by [::String]
|
916
|
-
# Required. Expression that defines what assets fields to use for grouping.
|
917
|
-
#
|
918
|
-
#
|
918
|
+
# Required. Expression that defines what assets fields to use for grouping. The string
|
919
|
+
# value should follow SQL syntax: comma separated list of fields. For
|
920
|
+
# example:
|
919
921
|
# "security_center_properties.resource_project,security_center_properties.project".
|
920
922
|
#
|
921
923
|
# The following fields are supported when compare_duration is not set:
|
@@ -1079,6 +1081,7 @@ module Google
|
|
1079
1081
|
# * category: `=`, `:`
|
1080
1082
|
# * external_uri: `=`, `:`
|
1081
1083
|
# * event_time: `=`, `>`, `<`, `>=`, `<=`
|
1084
|
+
# * severity: `=`, `:`
|
1082
1085
|
#
|
1083
1086
|
# Usage: This should be milliseconds since epoch or an RFC3339 string.
|
1084
1087
|
# Examples:
|
@@ -1096,9 +1099,9 @@ module Google
|
|
1096
1099
|
# Use a negated partial match on the empty string to filter based on a
|
1097
1100
|
# property not existing: `-source_properties.my_property : ""`
|
1098
1101
|
# @param group_by [::String]
|
1099
|
-
# Required. Expression that defines what assets fields to use for grouping
|
1100
|
-
#
|
1101
|
-
#
|
1102
|
+
# Required. Expression that defines what assets fields to use for grouping (including
|
1103
|
+
# `state_change`). The string value should follow SQL syntax: comma separated
|
1104
|
+
# list of fields. For example: "parent,resource_name".
|
1102
1105
|
#
|
1103
1106
|
# The following fields are supported:
|
1104
1107
|
#
|
@@ -1106,6 +1109,7 @@ module Google
|
|
1106
1109
|
# * category
|
1107
1110
|
# * state
|
1108
1111
|
# * parent
|
1112
|
+
# * severity
|
1109
1113
|
#
|
1110
1114
|
# The following fields are supported when compare_duration is set:
|
1111
1115
|
#
|
@@ -1339,7 +1343,6 @@ module Google
|
|
1339
1343
|
# is "UNUSED", which will be the state_change set for all assets present at
|
1340
1344
|
# read_time.
|
1341
1345
|
# @param field_mask [::Google::Protobuf::FieldMask, ::Hash]
|
1342
|
-
# Optional.
|
1343
1346
|
# A field mask to specify the ListAssetsResult fields to be listed in the
|
1344
1347
|
# response.
|
1345
1348
|
# An empty field mask will list all fields.
|
@@ -1450,13 +1453,14 @@ module Google
|
|
1450
1453
|
#
|
1451
1454
|
# The following field and operator combinations are supported:
|
1452
1455
|
#
|
1453
|
-
# name: `=`
|
1454
|
-
# parent: `=`, `:`
|
1455
|
-
# resource_name: `=`, `:`
|
1456
|
-
# state: `=`, `:`
|
1457
|
-
# category: `=`, `:`
|
1458
|
-
# external_uri: `=`, `:`
|
1459
|
-
# event_time: `=`, `>`, `<`, `>=`, `<=`
|
1456
|
+
# * name: `=`
|
1457
|
+
# * parent: `=`, `:`
|
1458
|
+
# * resource_name: `=`, `:`
|
1459
|
+
# * state: `=`, `:`
|
1460
|
+
# * category: `=`, `:`
|
1461
|
+
# * external_uri: `=`, `:`
|
1462
|
+
# * event_time: `=`, `>`, `<`, `>=`, `<=`
|
1463
|
+
# * severity: `=`, `:`
|
1460
1464
|
#
|
1461
1465
|
# Usage: This should be milliseconds since epoch or an RFC3339 string.
|
1462
1466
|
# Examples:
|
@@ -1529,7 +1533,6 @@ module Google
|
|
1529
1533
|
# is "UNUSED", which will be the state_change set for all findings present at
|
1530
1534
|
# read_time.
|
1531
1535
|
# @param field_mask [::Google::Protobuf::FieldMask, ::Hash]
|
1532
|
-
# Optional.
|
1533
1536
|
# A field mask to specify the Finding fields to be listed in the response.
|
1534
1537
|
# An empty field mask will list all fields.
|
1535
1538
|
# @param page_token [::String]
|
@@ -1680,8 +1683,8 @@ module Google
|
|
1680
1683
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
1681
1684
|
#
|
1682
1685
|
# @param parent [::String]
|
1683
|
-
# Required. Resource name of the parent of sources to list. Its format should
|
1684
|
-
#
|
1686
|
+
# Required. Resource name of the parent of sources to list. Its format should be
|
1687
|
+
# "organizations/[organization_id]".
|
1685
1688
|
# @param page_token [::String]
|
1686
1689
|
# The value returned by the last `ListSourcesResponse`; indicates
|
1687
1690
|
# that this is a continuation of a prior `ListSources` call, and
|
@@ -1760,8 +1763,8 @@ module Google
|
|
1760
1763
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
1761
1764
|
#
|
1762
1765
|
# @param parent [::String]
|
1763
|
-
# Required. Name of the organization to run asset discovery for. Its format
|
1764
|
-
#
|
1766
|
+
# Required. Name of the organization to run asset discovery for. Its format is
|
1767
|
+
# "organizations/[organization_id]".
|
1765
1768
|
#
|
1766
1769
|
# @yield [response, operation] Access the result along with the RPC operation
|
1767
1770
|
# @yieldparam response [::Gapic::Operation]
|
@@ -2046,8 +2049,8 @@ module Google
|
|
2046
2049
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
2047
2050
|
#
|
2048
2051
|
# @param finding [::Google::Cloud::SecurityCenter::V1p1beta1::Finding, ::Hash]
|
2049
|
-
# Required. The finding resource to update or create if it does not already
|
2050
|
-
#
|
2052
|
+
# Required. The finding resource to update or create if it does not already exist.
|
2053
|
+
# parent, security_marks, and update_time will be ignored.
|
2051
2054
|
#
|
2052
2055
|
# In the case of creation, the finding id portion of the name must be
|
2053
2056
|
# alphanumeric and less than or equal to 32 characters and greater than 0
|
@@ -2478,7 +2481,7 @@ module Google
|
|
2478
2481
|
|
2479
2482
|
config_attr :endpoint, "securitycenter.googleapis.com", ::String
|
2480
2483
|
config_attr :credentials, nil do |value|
|
2481
|
-
allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
2484
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
2482
2485
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
2483
2486
|
allowed.any? { |klass| klass === value }
|
2484
2487
|
end
|
@@ -2518,7 +2521,7 @@ module Google
|
|
2518
2521
|
# Each configuration object is of type `Gapic::Config::Method` and includes
|
2519
2522
|
# the following configuration fields:
|
2520
2523
|
#
|
2521
|
-
# * `timeout` (*type:* `Numeric`) - The call timeout in
|
2524
|
+
# * `timeout` (*type:* `Numeric`) - The call timeout in seconds
|
2522
2525
|
# * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
|
2523
2526
|
# * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
|
2524
2527
|
# include the following keys:
|
@@ -103,8 +103,13 @@ module Google
|
|
103
103
|
# Lists operations that match the specified filter in the request. If the
|
104
104
|
# server doesn't support this method, it returns `UNIMPLEMENTED`.
|
105
105
|
#
|
106
|
-
# NOTE: the `name` binding
|
107
|
-
# to use different resource name schemes, such as `users/*/operations`.
|
106
|
+
# NOTE: the `name` binding allows API services to override the binding
|
107
|
+
# to use different resource name schemes, such as `users/*/operations`. To
|
108
|
+
# override the binding, API services can add a binding such as
|
109
|
+
# `"/v1/{name=users/*}/operations"` to their service configuration.
|
110
|
+
# For backwards compatibility, the default name includes the operations
|
111
|
+
# collection id, however overriding users must ensure the name binding
|
112
|
+
# is the parent resource, without the operations collection id.
|
108
113
|
#
|
109
114
|
# @overload list_operations(request, options = nil)
|
110
115
|
# Pass arguments to `list_operations` via a request object, either of type
|
@@ -122,7 +127,7 @@ module Google
|
|
122
127
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
123
128
|
#
|
124
129
|
# @param name [::String]
|
125
|
-
# The name of the operation
|
130
|
+
# The name of the operation's parent resource.
|
126
131
|
# @param filter [::String]
|
127
132
|
# The standard list filter.
|
128
133
|
# @param page_size [::Integer]
|
@@ -390,6 +395,79 @@ module Google
|
|
390
395
|
raise ::Google::Cloud::Error.from_error(e)
|
391
396
|
end
|
392
397
|
|
398
|
+
##
|
399
|
+
# Waits for the specified long-running operation until it is done or reaches
|
400
|
+
# at most a specified timeout, returning the latest state. If the operation
|
401
|
+
# is already done, the latest state is immediately returned. If the timeout
|
402
|
+
# specified is greater than the default HTTP/RPC timeout, the HTTP/RPC
|
403
|
+
# timeout is used. If the server does not support this method, it returns
|
404
|
+
# `google.rpc.Code.UNIMPLEMENTED`.
|
405
|
+
# Note that this method is on a best-effort basis. It may return the latest
|
406
|
+
# state before the specified timeout (including immediately), meaning even an
|
407
|
+
# immediate response is no guarantee that the operation is done.
|
408
|
+
#
|
409
|
+
# @overload wait_operation(request, options = nil)
|
410
|
+
# Pass arguments to `wait_operation` via a request object, either of type
|
411
|
+
# {::Google::Longrunning::WaitOperationRequest} or an equivalent Hash.
|
412
|
+
#
|
413
|
+
# @param request [::Google::Longrunning::WaitOperationRequest, ::Hash]
|
414
|
+
# A request object representing the call parameters. Required. To specify no
|
415
|
+
# parameters, or to keep all the default parameter values, pass an empty Hash.
|
416
|
+
# @param options [::Gapic::CallOptions, ::Hash]
|
417
|
+
# Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
|
418
|
+
#
|
419
|
+
# @overload wait_operation(name: nil, timeout: nil)
|
420
|
+
# Pass arguments to `wait_operation` via keyword arguments. Note that at
|
421
|
+
# least one keyword argument is required. To specify no parameters, or to keep all
|
422
|
+
# the default parameter values, pass an empty Hash as a request object (see above).
|
423
|
+
#
|
424
|
+
# @param name [::String]
|
425
|
+
# The name of the operation resource to wait on.
|
426
|
+
# @param timeout [::Google::Protobuf::Duration, ::Hash]
|
427
|
+
# The maximum duration to wait before timing out. If left blank, the wait
|
428
|
+
# will be at most the time permitted by the underlying HTTP/RPC protocol.
|
429
|
+
# If RPC context deadline is also specified, the shorter one will be used.
|
430
|
+
#
|
431
|
+
# @yield [response, operation] Access the result along with the RPC operation
|
432
|
+
# @yieldparam response [::Gapic::Operation]
|
433
|
+
# @yieldparam operation [::GRPC::ActiveCall::Operation]
|
434
|
+
#
|
435
|
+
# @return [::Gapic::Operation]
|
436
|
+
#
|
437
|
+
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
438
|
+
#
|
439
|
+
def wait_operation request, options = nil
|
440
|
+
raise ::ArgumentError, "request must be provided" if request.nil?
|
441
|
+
|
442
|
+
request = ::Gapic::Protobuf.coerce request, to: ::Google::Longrunning::WaitOperationRequest
|
443
|
+
|
444
|
+
# Converts hash and nil to an options object
|
445
|
+
options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
|
446
|
+
|
447
|
+
# Customize the options with defaults
|
448
|
+
metadata = @config.rpcs.wait_operation.metadata.to_h
|
449
|
+
|
450
|
+
# Set x-goog-api-client and x-goog-user-project headers
|
451
|
+
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
452
|
+
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
453
|
+
gapic_version: ::Google::Cloud::SecurityCenter::V1p1beta1::VERSION
|
454
|
+
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
455
|
+
|
456
|
+
options.apply_defaults timeout: @config.rpcs.wait_operation.timeout,
|
457
|
+
metadata: metadata,
|
458
|
+
retry_policy: @config.rpcs.wait_operation.retry_policy
|
459
|
+
options.apply_defaults metadata: @config.metadata,
|
460
|
+
retry_policy: @config.retry_policy
|
461
|
+
|
462
|
+
@operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
|
463
|
+
response = ::Gapic::Operation.new response, @operations_client, options: options
|
464
|
+
yield response, operation if block_given?
|
465
|
+
return response
|
466
|
+
end
|
467
|
+
rescue ::GRPC::BadStatus => e
|
468
|
+
raise ::Google::Cloud::Error.from_error(e)
|
469
|
+
end
|
470
|
+
|
393
471
|
##
|
394
472
|
# Configuration class for the Operations API.
|
395
473
|
#
|
@@ -475,7 +553,7 @@ module Google
|
|
475
553
|
|
476
554
|
config_attr :endpoint, "securitycenter.googleapis.com", ::String
|
477
555
|
config_attr :credentials, nil do |value|
|
478
|
-
allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
556
|
+
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
479
557
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
480
558
|
allowed.any? { |klass| klass === value }
|
481
559
|
end
|
@@ -515,7 +593,7 @@ module Google
|
|
515
593
|
# Each configuration object is of type `Gapic::Config::Method` and includes
|
516
594
|
# the following configuration fields:
|
517
595
|
#
|
518
|
-
# * `timeout` (*type:* `Numeric`) - The call timeout in
|
596
|
+
# * `timeout` (*type:* `Numeric`) - The call timeout in seconds
|
519
597
|
# * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
|
520
598
|
# * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
|
521
599
|
# include the following keys:
|
@@ -546,6 +624,11 @@ module Google
|
|
546
624
|
# @return [::Gapic::Config::Method]
|
547
625
|
#
|
548
626
|
attr_reader :cancel_operation
|
627
|
+
##
|
628
|
+
# RPC-specific configuration for `wait_operation`
|
629
|
+
# @return [::Gapic::Config::Method]
|
630
|
+
#
|
631
|
+
attr_reader :wait_operation
|
549
632
|
|
550
633
|
# @private
|
551
634
|
def initialize parent_rpcs = nil
|
@@ -557,6 +640,8 @@ module Google
|
|
557
640
|
@delete_operation = ::Gapic::Config::Method.new delete_operation_config
|
558
641
|
cancel_operation_config = parent_rpcs&.cancel_operation if parent_rpcs&.respond_to? :cancel_operation
|
559
642
|
@cancel_operation = ::Gapic::Config::Method.new cancel_operation_config
|
643
|
+
wait_operation_config = parent_rpcs&.wait_operation if parent_rpcs&.respond_to? :wait_operation
|
644
|
+
@wait_operation = ::Gapic::Config::Method.new wait_operation_config
|
560
645
|
|
561
646
|
yield self if block_given?
|
562
647
|
end
|
@@ -22,12 +22,20 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
22
22
|
optional :security_marks, :message, 8, "google.cloud.securitycenter.v1p1beta1.SecurityMarks"
|
23
23
|
optional :event_time, :message, 9, "google.protobuf.Timestamp"
|
24
24
|
optional :create_time, :message, 10, "google.protobuf.Timestamp"
|
25
|
+
optional :severity, :enum, 13, "google.cloud.securitycenter.v1p1beta1.Finding.Severity"
|
25
26
|
end
|
26
27
|
add_enum "google.cloud.securitycenter.v1p1beta1.Finding.State" do
|
27
28
|
value :STATE_UNSPECIFIED, 0
|
28
29
|
value :ACTIVE, 1
|
29
30
|
value :INACTIVE, 2
|
30
31
|
end
|
32
|
+
add_enum "google.cloud.securitycenter.v1p1beta1.Finding.Severity" do
|
33
|
+
value :SEVERITY_UNSPECIFIED, 0
|
34
|
+
value :CRITICAL, 1
|
35
|
+
value :HIGH, 2
|
36
|
+
value :MEDIUM, 3
|
37
|
+
value :LOW, 4
|
38
|
+
end
|
31
39
|
end
|
32
40
|
end
|
33
41
|
|
@@ -37,6 +45,7 @@ module Google
|
|
37
45
|
module V1p1beta1
|
38
46
|
Finding = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.securitycenter.v1p1beta1.Finding").msgclass
|
39
47
|
Finding::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.securitycenter.v1p1beta1.Finding.State").enummodule
|
48
|
+
Finding::Severity = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.securitycenter.v1p1beta1.Finding.Severity").enummodule
|
40
49
|
end
|
41
50
|
end
|
42
51
|
end
|
@@ -34,69 +34,67 @@ module Google
|
|
34
34
|
self.service_name = 'google.cloud.securitycenter.v1p1beta1.SecurityCenter'
|
35
35
|
|
36
36
|
# Creates a source.
|
37
|
-
rpc :CreateSource, Google::Cloud::SecurityCenter::V1p1beta1::CreateSourceRequest, Google::Cloud::SecurityCenter::V1p1beta1::Source
|
38
|
-
#
|
37
|
+
rpc :CreateSource, ::Google::Cloud::SecurityCenter::V1p1beta1::CreateSourceRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::Source
|
39
38
|
# Creates a finding. The corresponding source must exist for finding
|
40
39
|
# creation to succeed.
|
41
|
-
rpc :CreateFinding, Google::Cloud::SecurityCenter::V1p1beta1::CreateFindingRequest, Google::Cloud::SecurityCenter::V1p1beta1::Finding
|
40
|
+
rpc :CreateFinding, ::Google::Cloud::SecurityCenter::V1p1beta1::CreateFindingRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::Finding
|
42
41
|
# Creates a notification config.
|
43
|
-
rpc :CreateNotificationConfig, Google::Cloud::SecurityCenter::V1p1beta1::CreateNotificationConfigRequest, Google::Cloud::SecurityCenter::V1p1beta1::NotificationConfig
|
42
|
+
rpc :CreateNotificationConfig, ::Google::Cloud::SecurityCenter::V1p1beta1::CreateNotificationConfigRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::NotificationConfig
|
44
43
|
# Deletes a notification config.
|
45
|
-
rpc :DeleteNotificationConfig, Google::Cloud::SecurityCenter::V1p1beta1::DeleteNotificationConfigRequest, Google::Protobuf::Empty
|
44
|
+
rpc :DeleteNotificationConfig, ::Google::Cloud::SecurityCenter::V1p1beta1::DeleteNotificationConfigRequest, ::Google::Protobuf::Empty
|
46
45
|
# Gets the access control policy on the specified Source.
|
47
|
-
rpc :GetIamPolicy, Google::Iam::V1::GetIamPolicyRequest, Google::Iam::V1::Policy
|
46
|
+
rpc :GetIamPolicy, ::Google::Iam::V1::GetIamPolicyRequest, ::Google::Iam::V1::Policy
|
48
47
|
# Gets a notification config.
|
49
|
-
rpc :GetNotificationConfig, Google::Cloud::SecurityCenter::V1p1beta1::GetNotificationConfigRequest, Google::Cloud::SecurityCenter::V1p1beta1::NotificationConfig
|
48
|
+
rpc :GetNotificationConfig, ::Google::Cloud::SecurityCenter::V1p1beta1::GetNotificationConfigRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::NotificationConfig
|
50
49
|
# Gets the settings for an organization.
|
51
|
-
rpc :GetOrganizationSettings, Google::Cloud::SecurityCenter::V1p1beta1::GetOrganizationSettingsRequest, Google::Cloud::SecurityCenter::V1p1beta1::OrganizationSettings
|
50
|
+
rpc :GetOrganizationSettings, ::Google::Cloud::SecurityCenter::V1p1beta1::GetOrganizationSettingsRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::OrganizationSettings
|
52
51
|
# Gets a source.
|
53
|
-
rpc :GetSource, Google::Cloud::SecurityCenter::V1p1beta1::GetSourceRequest, Google::Cloud::SecurityCenter::V1p1beta1::Source
|
52
|
+
rpc :GetSource, ::Google::Cloud::SecurityCenter::V1p1beta1::GetSourceRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::Source
|
54
53
|
# Filters an organization's assets and groups them by their specified
|
55
54
|
# properties.
|
56
|
-
rpc :GroupAssets, Google::Cloud::SecurityCenter::V1p1beta1::GroupAssetsRequest, Google::Cloud::SecurityCenter::V1p1beta1::GroupAssetsResponse
|
55
|
+
rpc :GroupAssets, ::Google::Cloud::SecurityCenter::V1p1beta1::GroupAssetsRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::GroupAssetsResponse
|
57
56
|
# Filters an organization or source's findings and groups them by their
|
58
57
|
# specified properties.
|
59
58
|
#
|
60
59
|
# To group across all sources provide a `-` as the source id.
|
61
60
|
# Example: /v1p1beta1/organizations/{organization_id}/sources/-/findings
|
62
|
-
rpc :GroupFindings, Google::Cloud::SecurityCenter::V1p1beta1::GroupFindingsRequest, Google::Cloud::SecurityCenter::V1p1beta1::GroupFindingsResponse
|
61
|
+
rpc :GroupFindings, ::Google::Cloud::SecurityCenter::V1p1beta1::GroupFindingsRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::GroupFindingsResponse
|
63
62
|
# Lists an organization's assets.
|
64
|
-
rpc :ListAssets, Google::Cloud::SecurityCenter::V1p1beta1::ListAssetsRequest, Google::Cloud::SecurityCenter::V1p1beta1::ListAssetsResponse
|
63
|
+
rpc :ListAssets, ::Google::Cloud::SecurityCenter::V1p1beta1::ListAssetsRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::ListAssetsResponse
|
65
64
|
# Lists an organization or source's findings.
|
66
65
|
#
|
67
66
|
# To list across all sources provide a `-` as the source id.
|
68
67
|
# Example: /v1p1beta1/organizations/{organization_id}/sources/-/findings
|
69
|
-
rpc :ListFindings, Google::Cloud::SecurityCenter::V1p1beta1::ListFindingsRequest, Google::Cloud::SecurityCenter::V1p1beta1::ListFindingsResponse
|
68
|
+
rpc :ListFindings, ::Google::Cloud::SecurityCenter::V1p1beta1::ListFindingsRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::ListFindingsResponse
|
70
69
|
# Lists notification configs.
|
71
|
-
rpc :ListNotificationConfigs, Google::Cloud::SecurityCenter::V1p1beta1::ListNotificationConfigsRequest, Google::Cloud::SecurityCenter::V1p1beta1::ListNotificationConfigsResponse
|
70
|
+
rpc :ListNotificationConfigs, ::Google::Cloud::SecurityCenter::V1p1beta1::ListNotificationConfigsRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::ListNotificationConfigsResponse
|
72
71
|
# Lists all sources belonging to an organization.
|
73
|
-
rpc :ListSources, Google::Cloud::SecurityCenter::V1p1beta1::ListSourcesRequest, Google::Cloud::SecurityCenter::V1p1beta1::ListSourcesResponse
|
72
|
+
rpc :ListSources, ::Google::Cloud::SecurityCenter::V1p1beta1::ListSourcesRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::ListSourcesResponse
|
74
73
|
# Runs asset discovery. The discovery is tracked with a long-running
|
75
74
|
# operation.
|
76
75
|
#
|
77
76
|
# This API can only be called with limited frequency for an organization. If
|
78
77
|
# it is called too frequently the caller will receive a TOO_MANY_REQUESTS
|
79
78
|
# error.
|
80
|
-
rpc :RunAssetDiscovery, Google::Cloud::SecurityCenter::V1p1beta1::RunAssetDiscoveryRequest, Google::Longrunning::Operation
|
81
|
-
#
|
79
|
+
rpc :RunAssetDiscovery, ::Google::Cloud::SecurityCenter::V1p1beta1::RunAssetDiscoveryRequest, ::Google::Longrunning::Operation
|
82
80
|
# Updates the state of a finding.
|
83
|
-
rpc :SetFindingState, Google::Cloud::SecurityCenter::V1p1beta1::SetFindingStateRequest, Google::Cloud::SecurityCenter::V1p1beta1::Finding
|
81
|
+
rpc :SetFindingState, ::Google::Cloud::SecurityCenter::V1p1beta1::SetFindingStateRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::Finding
|
84
82
|
# Sets the access control policy on the specified Source.
|
85
|
-
rpc :SetIamPolicy, Google::Iam::V1::SetIamPolicyRequest, Google::Iam::V1::Policy
|
83
|
+
rpc :SetIamPolicy, ::Google::Iam::V1::SetIamPolicyRequest, ::Google::Iam::V1::Policy
|
86
84
|
# Returns the permissions that a caller has on the specified source.
|
87
|
-
rpc :TestIamPermissions, Google::Iam::V1::TestIamPermissionsRequest, Google::Iam::V1::TestIamPermissionsResponse
|
85
|
+
rpc :TestIamPermissions, ::Google::Iam::V1::TestIamPermissionsRequest, ::Google::Iam::V1::TestIamPermissionsResponse
|
88
86
|
# Creates or updates a finding. The corresponding source must exist for a
|
89
87
|
# finding creation to succeed.
|
90
|
-
rpc :UpdateFinding, Google::Cloud::SecurityCenter::V1p1beta1::UpdateFindingRequest, Google::Cloud::SecurityCenter::V1p1beta1::Finding
|
88
|
+
rpc :UpdateFinding, ::Google::Cloud::SecurityCenter::V1p1beta1::UpdateFindingRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::Finding
|
91
89
|
# Updates a notification config. The following update
|
92
90
|
# fields are allowed: description, pubsub_topic, streaming_config.filter
|
93
|
-
rpc :UpdateNotificationConfig, Google::Cloud::SecurityCenter::V1p1beta1::UpdateNotificationConfigRequest, Google::Cloud::SecurityCenter::V1p1beta1::NotificationConfig
|
91
|
+
rpc :UpdateNotificationConfig, ::Google::Cloud::SecurityCenter::V1p1beta1::UpdateNotificationConfigRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::NotificationConfig
|
94
92
|
# Updates an organization's settings.
|
95
|
-
rpc :UpdateOrganizationSettings, Google::Cloud::SecurityCenter::V1p1beta1::UpdateOrganizationSettingsRequest, Google::Cloud::SecurityCenter::V1p1beta1::OrganizationSettings
|
93
|
+
rpc :UpdateOrganizationSettings, ::Google::Cloud::SecurityCenter::V1p1beta1::UpdateOrganizationSettingsRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::OrganizationSettings
|
96
94
|
# Updates a source.
|
97
|
-
rpc :UpdateSource, Google::Cloud::SecurityCenter::V1p1beta1::UpdateSourceRequest, Google::Cloud::SecurityCenter::V1p1beta1::Source
|
95
|
+
rpc :UpdateSource, ::Google::Cloud::SecurityCenter::V1p1beta1::UpdateSourceRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::Source
|
98
96
|
# Updates security marks.
|
99
|
-
rpc :UpdateSecurityMarks, Google::Cloud::SecurityCenter::V1p1beta1::UpdateSecurityMarksRequest, Google::Cloud::SecurityCenter::V1p1beta1::SecurityMarks
|
97
|
+
rpc :UpdateSecurityMarks, ::Google::Cloud::SecurityCenter::V1p1beta1::UpdateSecurityMarksRequest, ::Google::Cloud::SecurityCenter::V1p1beta1::SecurityMarks
|
100
98
|
end
|
101
99
|
|
102
100
|
Stub = Service.rpc_stub_class
|
@@ -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
|
@@ -43,12 +43,12 @@ module Google
|
|
43
43
|
#
|
44
44
|
# The ResourceDescriptor Yaml config will look like:
|
45
45
|
#
|
46
|
-
#
|
47
|
-
#
|
48
|
-
#
|
49
|
-
#
|
50
|
-
#
|
51
|
-
#
|
46
|
+
# resources:
|
47
|
+
# - type: "pubsub.googleapis.com/Topic"
|
48
|
+
# name_descriptor:
|
49
|
+
# - pattern: "projects/{project}/topics/{topic}"
|
50
|
+
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
51
|
+
# parent_name_extractor: "projects/{project}"
|
52
52
|
#
|
53
53
|
# Sometimes, resources have multiple patterns, typically because they can
|
54
54
|
# live under multiple parents.
|
@@ -183,15 +183,24 @@ module Google
|
|
183
183
|
# }
|
184
184
|
# @!attribute [rw] plural
|
185
185
|
# @return [::String]
|
186
|
-
# The plural name used in the resource name, such as
|
187
|
-
# the name of 'projects/\\{project}'
|
188
|
-
#
|
186
|
+
# The plural name used in the resource name and permission names, such as
|
187
|
+
# 'projects' for the resource name of 'projects/\\{project}' and the permission
|
188
|
+
# name of 'cloudresourcemanager.googleapis.com/projects.get'. It is the same
|
189
|
+
# concept of the `plural` field in k8s CRD spec
|
189
190
|
# https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/
|
191
|
+
#
|
192
|
+
# Note: The plural form is required even for singleton resources. See
|
193
|
+
# https://aip.dev/156
|
190
194
|
# @!attribute [rw] singular
|
191
195
|
# @return [::String]
|
192
196
|
# The same concept of the `singular` field in k8s CRD spec
|
193
197
|
# https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/
|
194
198
|
# Such as "project" for the `resourcemanager.googleapis.com/Project` type.
|
199
|
+
# @!attribute [rw] style
|
200
|
+
# @return [::Array<::Google::Api::ResourceDescriptor::Style>]
|
201
|
+
# Style flag(s) for this resource.
|
202
|
+
# These indicate that a resource is expected to conform to a given
|
203
|
+
# style. See the specific style flags for additional information.
|
195
204
|
class ResourceDescriptor
|
196
205
|
include ::Google::Protobuf::MessageExts
|
197
206
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -211,6 +220,22 @@ module Google
|
|
211
220
|
# that from being necessary once there are multiple patterns.)
|
212
221
|
FUTURE_MULTI_PATTERN = 2
|
213
222
|
end
|
223
|
+
|
224
|
+
# A flag representing a specific style that a resource claims to conform to.
|
225
|
+
module Style
|
226
|
+
# The unspecified value. Do not use.
|
227
|
+
STYLE_UNSPECIFIED = 0
|
228
|
+
|
229
|
+
# This resource is intended to be "declarative-friendly".
|
230
|
+
#
|
231
|
+
# Declarative-friendly resources must be more strictly consistent, and
|
232
|
+
# setting this to true communicates to tools that this resource should
|
233
|
+
# adhere to declarative-friendly expectations.
|
234
|
+
#
|
235
|
+
# Note: This is used by the API linter (linter.aip.dev) to enable
|
236
|
+
# additional checks.
|
237
|
+
DECLARATIVE_FRIENDLY = 1
|
238
|
+
end
|
214
239
|
end
|
215
240
|
|
216
241
|
# Defines a proto annotation that describes a string field that refers to
|
@@ -226,6 +251,17 @@ module Google
|
|
226
251
|
# type: "pubsub.googleapis.com/Topic"
|
227
252
|
# }];
|
228
253
|
# }
|
254
|
+
#
|
255
|
+
# Occasionally, a field may reference an arbitrary resource. In this case,
|
256
|
+
# APIs use the special value * in their resource reference.
|
257
|
+
#
|
258
|
+
# Example:
|
259
|
+
#
|
260
|
+
# message GetIamPolicyRequest {
|
261
|
+
# string resource = 2 [(google.api.resource_reference) = {
|
262
|
+
# type: "*"
|
263
|
+
# }];
|
264
|
+
# }
|
229
265
|
# @!attribute [rw] child_type
|
230
266
|
# @return [::String]
|
231
267
|
# The resource type of a child collection that the annotated field
|
@@ -234,11 +270,11 @@ module Google
|
|
234
270
|
#
|
235
271
|
# Example:
|
236
272
|
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
241
|
-
#
|
273
|
+
# message ListLogEntriesRequest {
|
274
|
+
# string parent = 1 [(google.api.resource_reference) = {
|
275
|
+
# child_type: "logging.googleapis.com/LogEntry"
|
276
|
+
# };
|
277
|
+
# }
|
242
278
|
class ResourceReference
|
243
279
|
include ::Google::Protobuf::MessageExts
|
244
280
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -74,12 +74,18 @@ module Google
|
|
74
74
|
# to the finding.
|
75
75
|
# @!attribute [rw] event_time
|
76
76
|
# @return [::Google::Protobuf::Timestamp]
|
77
|
-
# The time at which the event took place
|
78
|
-
# represents an open firewall it would
|
79
|
-
# the firewall became open. The
|
77
|
+
# The time at which the event took place, or when an update to the finding
|
78
|
+
# occurred. For example, if the finding represents an open firewall it would
|
79
|
+
# capture the time the detector believes the firewall became open. The
|
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.
|
80
82
|
# @!attribute [rw] create_time
|
81
83
|
# @return [::Google::Protobuf::Timestamp]
|
82
84
|
# The time at which the finding was created in Security Command Center.
|
85
|
+
# @!attribute [rw] severity
|
86
|
+
# @return [::Google::Cloud::SecurityCenter::V1p1beta1::Finding::Severity]
|
87
|
+
# The severity of the finding. This field is managed by the source that
|
88
|
+
# writes the finding.
|
83
89
|
class Finding
|
84
90
|
include ::Google::Protobuf::MessageExts
|
85
91
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -105,6 +111,25 @@ module Google
|
|
105
111
|
# and is no longer active.
|
106
112
|
INACTIVE = 2
|
107
113
|
end
|
114
|
+
|
115
|
+
# The severity of the finding. This field is managed by the source that
|
116
|
+
# writes the finding.
|
117
|
+
module Severity
|
118
|
+
# No severity specified. The default value.
|
119
|
+
SEVERITY_UNSPECIFIED = 0
|
120
|
+
|
121
|
+
# Critical severity.
|
122
|
+
CRITICAL = 1
|
123
|
+
|
124
|
+
# High severity.
|
125
|
+
HIGH = 2
|
126
|
+
|
127
|
+
# Medium severity.
|
128
|
+
MEDIUM = 3
|
129
|
+
|
130
|
+
# Low severity.
|
131
|
+
LOW = 4
|
132
|
+
end
|
108
133
|
end
|
109
134
|
end
|
110
135
|
end
|
@@ -29,12 +29,10 @@ module Google
|
|
29
29
|
# @!attribute [rw] finding_id
|
30
30
|
# @return [::String]
|
31
31
|
# Required. Unique identifier provided by the client within the parent scope.
|
32
|
-
# It must be alphanumeric and less than or equal to 32 characters and
|
33
|
-
# greater than 0 characters in length.
|
34
32
|
# @!attribute [rw] finding
|
35
33
|
# @return [::Google::Cloud::SecurityCenter::V1p1beta1::Finding]
|
36
|
-
# Required. The Finding being created. The name and security_marks will be
|
37
|
-
#
|
34
|
+
# Required. The Finding being created. The name and security_marks will be ignored as
|
35
|
+
# they are both output only fields on this resource.
|
38
36
|
class CreateFindingRequest
|
39
37
|
include ::Google::Protobuf::MessageExts
|
40
38
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -43,19 +41,17 @@ module Google
|
|
43
41
|
# Request message for creating a notification config.
|
44
42
|
# @!attribute [rw] parent
|
45
43
|
# @return [::String]
|
46
|
-
# Required. Resource name of the new notification config's parent. Its format
|
47
|
-
#
|
44
|
+
# Required. Resource name of the new notification config's parent. Its format is
|
45
|
+
# "organizations/[organization_id]".
|
48
46
|
# @!attribute [rw] config_id
|
49
47
|
# @return [::String]
|
50
|
-
# Required.
|
51
|
-
# Unique identifier provided by the client within the parent scope.
|
48
|
+
# Required. Unique identifier provided by the client within the parent scope.
|
52
49
|
# It must be between 1 and 128 characters, and contains alphanumeric
|
53
50
|
# characters, underscores or hyphens only.
|
54
51
|
# @!attribute [rw] notification_config
|
55
52
|
# @return [::Google::Cloud::SecurityCenter::V1p1beta1::NotificationConfig]
|
56
|
-
# Required. The notification config being created. The name and the service
|
57
|
-
#
|
58
|
-
# resource.
|
53
|
+
# Required. The notification config being created. The name and the service account
|
54
|
+
# will be ignored as they are both output only fields on this resource.
|
59
55
|
class CreateNotificationConfigRequest
|
60
56
|
include ::Google::Protobuf::MessageExts
|
61
57
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -68,8 +64,8 @@ module Google
|
|
68
64
|
# "organizations/[organization_id]".
|
69
65
|
# @!attribute [rw] source
|
70
66
|
# @return [::Google::Cloud::SecurityCenter::V1p1beta1::Source]
|
71
|
-
# Required. The Source being created, only the display_name and description
|
72
|
-
#
|
67
|
+
# Required. The Source being created, only the display_name and description will be
|
68
|
+
# used. All other fields will be ignored.
|
73
69
|
class CreateSourceRequest
|
74
70
|
include ::Google::Protobuf::MessageExts
|
75
71
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -98,8 +94,8 @@ module Google
|
|
98
94
|
# Request message for getting organization settings.
|
99
95
|
# @!attribute [rw] name
|
100
96
|
# @return [::String]
|
101
|
-
# Required. Name of the organization to get organization settings for. Its
|
102
|
-
#
|
97
|
+
# Required. Name of the organization to get organization settings for. Its format is
|
98
|
+
# "organizations/[organization_id]/organizationSettings".
|
103
99
|
class GetOrganizationSettingsRequest
|
104
100
|
include ::Google::Protobuf::MessageExts
|
105
101
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -186,9 +182,9 @@ module Google
|
|
186
182
|
# property not existing: `-resource_properties.my_property : ""`
|
187
183
|
# @!attribute [rw] group_by
|
188
184
|
# @return [::String]
|
189
|
-
# Required. Expression that defines what assets fields to use for grouping.
|
190
|
-
#
|
191
|
-
#
|
185
|
+
# Required. Expression that defines what assets fields to use for grouping. The string
|
186
|
+
# value should follow SQL syntax: comma separated list of fields. For
|
187
|
+
# example:
|
192
188
|
# "security_center_properties.resource_project,security_center_properties.project".
|
193
189
|
#
|
194
190
|
# The following fields are supported when compare_duration is not set:
|
@@ -316,6 +312,7 @@ module Google
|
|
316
312
|
# * category: `=`, `:`
|
317
313
|
# * external_uri: `=`, `:`
|
318
314
|
# * event_time: `=`, `>`, `<`, `>=`, `<=`
|
315
|
+
# * severity: `=`, `:`
|
319
316
|
#
|
320
317
|
# Usage: This should be milliseconds since epoch or an RFC3339 string.
|
321
318
|
# Examples:
|
@@ -334,9 +331,9 @@ module Google
|
|
334
331
|
# property not existing: `-source_properties.my_property : ""`
|
335
332
|
# @!attribute [rw] group_by
|
336
333
|
# @return [::String]
|
337
|
-
# Required. Expression that defines what assets fields to use for grouping
|
338
|
-
#
|
339
|
-
#
|
334
|
+
# Required. Expression that defines what assets fields to use for grouping (including
|
335
|
+
# `state_change`). The string value should follow SQL syntax: comma separated
|
336
|
+
# list of fields. For example: "parent,resource_name".
|
340
337
|
#
|
341
338
|
# The following fields are supported:
|
342
339
|
#
|
@@ -344,6 +341,7 @@ module Google
|
|
344
341
|
# * category
|
345
342
|
# * state
|
346
343
|
# * parent
|
344
|
+
# * severity
|
347
345
|
#
|
348
346
|
# The following fields are supported when compare_duration is set:
|
349
347
|
#
|
@@ -479,8 +477,8 @@ module Google
|
|
479
477
|
# Request message for listing sources.
|
480
478
|
# @!attribute [rw] parent
|
481
479
|
# @return [::String]
|
482
|
-
# Required. Resource name of the parent of sources to list. Its format should
|
483
|
-
#
|
480
|
+
# Required. Resource name of the parent of sources to list. Its format should be
|
481
|
+
# "organizations/[organization_id]".
|
484
482
|
# @!attribute [rw] page_token
|
485
483
|
# @return [::String]
|
486
484
|
# The value returned by the last `ListSourcesResponse`; indicates
|
@@ -634,7 +632,6 @@ module Google
|
|
634
632
|
# read_time.
|
635
633
|
# @!attribute [rw] field_mask
|
636
634
|
# @return [::Google::Protobuf::FieldMask]
|
637
|
-
# Optional.
|
638
635
|
# A field mask to specify the ListAssetsResult fields to be listed in the
|
639
636
|
# response.
|
640
637
|
# An empty field mask will list all fields.
|
@@ -738,13 +735,14 @@ module Google
|
|
738
735
|
#
|
739
736
|
# The following field and operator combinations are supported:
|
740
737
|
#
|
741
|
-
# name: `=`
|
742
|
-
# parent: `=`, `:`
|
743
|
-
# resource_name: `=`, `:`
|
744
|
-
# state: `=`, `:`
|
745
|
-
# category: `=`, `:`
|
746
|
-
# external_uri: `=`, `:`
|
747
|
-
# event_time: `=`, `>`, `<`, `>=`, `<=`
|
738
|
+
# * name: `=`
|
739
|
+
# * parent: `=`, `:`
|
740
|
+
# * resource_name: `=`, `:`
|
741
|
+
# * state: `=`, `:`
|
742
|
+
# * category: `=`, `:`
|
743
|
+
# * external_uri: `=`, `:`
|
744
|
+
# * event_time: `=`, `>`, `<`, `>=`, `<=`
|
745
|
+
# * severity: `=`, `:`
|
748
746
|
#
|
749
747
|
# Usage: This should be milliseconds since epoch or an RFC3339 string.
|
750
748
|
# Examples:
|
@@ -821,7 +819,6 @@ module Google
|
|
821
819
|
# read_time.
|
822
820
|
# @!attribute [rw] field_mask
|
823
821
|
# @return [::Google::Protobuf::FieldMask]
|
824
|
-
# Optional.
|
825
822
|
# A field mask to specify the Finding fields to be listed in the response.
|
826
823
|
# An empty field mask will list all fields.
|
827
824
|
# @!attribute [rw] page_token
|
@@ -863,7 +860,7 @@ module Google
|
|
863
860
|
# @!attribute [rw] state_change
|
864
861
|
# @return [::Google::Cloud::SecurityCenter::V1p1beta1::ListFindingsResponse::ListFindingsResult::StateChange]
|
865
862
|
# State change of the finding between the points in time.
|
866
|
-
# @!attribute [
|
863
|
+
# @!attribute [r] resource
|
867
864
|
# @return [::Google::Cloud::SecurityCenter::V1p1beta1::ListFindingsResponse::ListFindingsResult::Resource]
|
868
865
|
# Output only. Resource that is associated with this finding.
|
869
866
|
class ListFindingsResult
|
@@ -944,8 +941,8 @@ module Google
|
|
944
941
|
# Request message for running asset discovery for an organization.
|
945
942
|
# @!attribute [rw] parent
|
946
943
|
# @return [::String]
|
947
|
-
# Required. Name of the organization to run asset discovery for. Its format
|
948
|
-
#
|
944
|
+
# Required. Name of the organization to run asset discovery for. Its format is
|
945
|
+
# "organizations/[organization_id]".
|
949
946
|
class RunAssetDiscoveryRequest
|
950
947
|
include ::Google::Protobuf::MessageExts
|
951
948
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -954,8 +951,8 @@ module Google
|
|
954
951
|
# Request message for updating or creating a finding.
|
955
952
|
# @!attribute [rw] finding
|
956
953
|
# @return [::Google::Cloud::SecurityCenter::V1p1beta1::Finding]
|
957
|
-
# Required. The finding resource to update or create if it does not already
|
958
|
-
#
|
954
|
+
# Required. The finding resource to update or create if it does not already exist.
|
955
|
+
# parent, security_marks, and update_time will be ignored.
|
959
956
|
#
|
960
957
|
# In the case of creation, the finding id portion of the name must be
|
961
958
|
# alphanumeric and less than or equal to 32 characters and greater than 0
|
@@ -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,14 +1,14 @@
|
|
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.5.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:
|
11
|
+
date: 2021-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -171,7 +171,10 @@ dependencies:
|
|
171
171
|
- !ruby/object:Gem::Version
|
172
172
|
version: '0.9'
|
173
173
|
description: Security Command Center API provides access to temporal views of assets
|
174
|
-
and findings within an organization.
|
174
|
+
and findings within an organization. Note that google-cloud-security_center-v1p1beta1
|
175
|
+
is a version-specific client library. For most uses, we recommend installing the
|
176
|
+
main client library google-cloud-security_center instead. See the readme for more
|
177
|
+
details.
|
175
178
|
email: googleapis-packages@google.com
|
176
179
|
executables: []
|
177
180
|
extensions: []
|
@@ -244,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
244
247
|
- !ruby/object:Gem::Version
|
245
248
|
version: '0'
|
246
249
|
requirements: []
|
247
|
-
rubygems_version: 3.
|
250
|
+
rubygems_version: 3.2.6
|
248
251
|
signing_key:
|
249
252
|
specification_version: 4
|
250
253
|
summary: API Client library for the Cloud Security Command Center V1p1beta1 API
|