Class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueMute

Inherits:
Object
  • Object
show all
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

Overview

The mute information of the issue.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudSecuritycenterV2IssueMute

Returns a new instance of GoogleCloudSecuritycenterV2IssueMute.



7903
7904
7905
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 7903

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#mute_initiatorString

The email address of the user who last changed the mute state of the issue. Corresponds to the JSON property muteInitiator

Returns:

  • (String)


7886
7887
7888
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 7886

def mute_initiator
  @mute_initiator
end

#mute_reasonString

The user-provided reason for muting the issue. Corresponds to the JSON property muteReason

Returns:

  • (String)


7891
7892
7893
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 7891

def mute_reason
  @mute_reason
end

#mute_stateString

Output only. The mute state of the issue. Corresponds to the JSON property muteState

Returns:

  • (String)


7896
7897
7898
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 7896

def mute_state
  @mute_state
end

#mute_update_timeString

The time the issue was muted. Corresponds to the JSON property muteUpdateTime

Returns:

  • (String)


7901
7902
7903
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 7901

def mute_update_time
  @mute_update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7908
7909
7910
7911
7912
7913
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 7908

def update!(**args)
  @mute_initiator = args[:mute_initiator] if args.key?(:mute_initiator)
  @mute_reason = args[:mute_reason] if args.key?(:mute_reason)
  @mute_state = args[:mute_state] if args.key?(:mute_state)
  @mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
end