Class: Google::Apis::SecuritycenterV1::BulkMuteFindingsRequest
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::BulkMuteFindingsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1/classes.rb,
lib/google/apis/securitycenter_v1/representations.rb,
lib/google/apis/securitycenter_v1/representations.rb
Overview
Request message for bulk findings update. Note: 1. If multiple bulk update requests match the same resource, the order in which they get executed is not defined. 2. Once a bulk operation is started, there is no way to stop it.
Instance Attribute Summary collapse
-
#filter ⇒ String
Expression that identifies findings that should be updated.
-
#mute_annotation ⇒ String
This can be a mute configuration name or any identifier for mute/unmute of findings based on the filter.
-
#mute_state ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BulkMuteFindingsRequest
constructor
A new instance of BulkMuteFindingsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BulkMuteFindingsRequest
Returns a new instance of BulkMuteFindingsRequest.
1206 1207 1208 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1206 def initialize(**args) update!(**args) end |
Instance Attribute Details
#filter ⇒ String
Expression that identifies findings that should be updated. The expression is
a list of zero or more restrictions combined via logical operators AND and
OR. Parentheses are supported, and OR has higher precedence than AND.
Restrictions have the form and may have a - character in front of them
to indicate negation. The fields map to those defined in the corresponding
resource. The supported operators are: * = for all value types. * >, <, `
=
,<=for integer values. *:, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literalstrueandfalsewithout quotes. Corresponds to the JSON propertyfilter`
1191 1192 1193 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1191 def filter @filter end |
#mute_annotation ⇒ String
This can be a mute configuration name or any identifier for mute/unmute of
findings based on the filter.
Corresponds to the JSON property muteAnnotation
1197 1198 1199 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1197 def mute_annotation @mute_annotation end |
#mute_state ⇒ String
Optional. All findings matching the given filter will have their mute state
set to this value. The default value is MUTED. Setting this to UNDEFINED
will clear the mute state on all matching findings.
Corresponds to the JSON property muteState
1204 1205 1206 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1204 def mute_state @mute_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1211 1212 1213 1214 1215 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1211 def update!(**args) @filter = args[:filter] if args.key?(:filter) @mute_annotation = args[:mute_annotation] if args.key?(:mute_annotation) @mute_state = args[:mute_state] if args.key?(:mute_state) end |