Class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1MuteConfig
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1MuteConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1beta2/classes.rb,
lib/google/apis/securitycenter_v1beta2/representations.rb,
lib/google/apis/securitycenter_v1beta2/representations.rb
Instance Attribute Summary collapse
-
#create_time ⇒ String
Corresponds to the JSON property
createTime. -
#description ⇒ String
Corresponds to the JSON property
description. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#expiry_time ⇒ String
Corresponds to the JSON property
expiryTime. -
#filter ⇒ String
Corresponds to the JSON property
filter. -
#most_recent_editor ⇒ String
Corresponds to the JSON property
mostRecentEditor. -
#name ⇒ String
Corresponds to the JSON property
name. -
#type ⇒ String
Corresponds to the JSON property
type. -
#update_time ⇒ String
Corresponds to the JSON property
updateTime.
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.
3448 3449 3450 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 3448 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Corresponds to the JSON property createTime
3406 3407 3408 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 3406 def create_time @create_time end |
#description ⇒ String
Corresponds to the JSON property description
3411 3412 3413 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 3411 def description @description end |
#display_name ⇒ String
Corresponds to the JSON property displayName
3416 3417 3418 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 3416 def display_name @display_name end |
#expiry_time ⇒ String
Corresponds to the JSON property expiryTime
3421 3422 3423 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 3421 def expiry_time @expiry_time end |
#filter ⇒ String
Corresponds to the JSON property filter
3426 3427 3428 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 3426 def filter @filter end |
#most_recent_editor ⇒ String
Corresponds to the JSON property mostRecentEditor
3431 3432 3433 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 3431 def most_recent_editor @most_recent_editor end |
#name ⇒ String
Corresponds to the JSON property name
3436 3437 3438 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 3436 def name @name end |
#type ⇒ String
Corresponds to the JSON property type
3441 3442 3443 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 3441 def type @type end |
#update_time ⇒ String
Corresponds to the JSON property updateTime
3446 3447 3448 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 3446 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 3453 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) @expiry_time = args[:expiry_time] if args.key?(:expiry_time) @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) @type = args[:type] if args.key?(:type) @update_time = args[:update_time] if args.key?(:update_time) end |