Class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1MuteConfig
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1MuteConfig
- 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
A mute config is a Cloud SCC resource that contains the configuration to mute create/update events of findings.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
A description of the mute config.
-
#display_name ⇒ String
The human readable name to be displayed for the mute config.
-
#filter ⇒ String
Required.
-
#most_recent_editor ⇒ String
Output only.
-
#name ⇒ String
This field will be ignored if provided on config creation.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudSecuritycenterV1MuteConfig
constructor
A new instance of GoogleCloudSecuritycenterV1MuteConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudSecuritycenterV1MuteConfig
Returns a new instance of GoogleCloudSecuritycenterV1MuteConfig.
3203 3204 3205 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3203 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The time at which the mute config was created. This field is set
by the server and will be ignored if provided on config creation.
Corresponds to the JSON property createTime
3153 3154 3155 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3153 def create_time @create_time end |
#description ⇒ String
A description of the mute config.
Corresponds to the JSON property description
3158 3159 3160 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3158 def description @description end |
#display_name ⇒ String
The human readable name to be displayed for the mute config.
Corresponds to the JSON property displayName
3163 3164 3165 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3163 def display_name @display_name end |
#filter ⇒ String
Required. An expression that defines the filter to apply across create/update
events of findings. While creating a filter string, be mindful of the scope in
which the mute configuration is being created. E.g., If a filter contains
project = X but is created under the project = Y scope, it might not match any
findings. The following field and operator combinations are supported: *
severity: =
, :
* category: =
, :
* resource.name: =
, :
* resource.
project_name: =
, :
* resource.project_display_name: =
, :
* resource.
folders.resource_folder: =
, :
* resource.parent_name: =
, :
* resource.
parent_display_name: =
, :
* resource.type: =
, :
* finding_class: =
,
:
* indicator.ip_addresses: =
, :
* indicator.domains: =
, :
Corresponds to the JSON property filter
3177 3178 3179 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3177 def filter @filter end |
#most_recent_editor ⇒ String
Output only. Email address of the user who last edited the mute config. This
field is set by the server and will be ignored if provided on config creation
or update.
Corresponds to the JSON property mostRecentEditor
3184 3185 3186 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3184 def most_recent_editor @most_recent_editor end |
#name ⇒ String
This field will be ignored if provided on config creation. Format
organizations/
organization/muteConfigs/
mute_config`folders/`folder`/
muteConfigs/`mute_config
projects/
project/muteConfigs/
mute_config`
organizations/`organization`/locations/global/muteConfigs/`mute_config
folders/
folder/locations/global/muteConfigs/
mute_config`projects/`
project`/locations/global/muteConfigs/`mute_config
Corresponds to the JSON property name
3194 3195 3196 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3194 def name @name end |
#update_time ⇒ String
Output only. The most recent time at which the mute config was updated. This
field is set by the server and will be ignored if provided on config creation
or update.
Corresponds to the JSON property updateTime
3201 3202 3203 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3201 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3208 3209 3210 3211 3212 3213 3214 3215 3216 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3208 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @filter = args[:filter] if args.key?(:filter) @most_recent_editor = args[:most_recent_editor] if args.key?(:most_recent_editor) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end |