Class: Google::Apis::AlertcenterV1beta1::PhishingSpike

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/alertcenter_v1beta1/classes.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb

Overview

Alert for a spike in user reported phishing.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PhishingSpike

Returns a new instance of PhishingSpike.



1201
1202
1203
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1201

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

Instance Attribute Details

#domain_idGoogle::Apis::AlertcenterV1beta1::DomainId

Domain ID of Gmail phishing alerts. Corresponds to the JSON property domainId



1183
1184
1185
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1183

def domain_id
  @domain_id
end

#is_internalBoolean Also known as: is_internal?

If true, the email originated from within the organization. Corresponds to the JSON property isInternal

Returns:

  • (Boolean)


1188
1189
1190
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1188

def is_internal
  @is_internal
end

#malicious_entityGoogle::Apis::AlertcenterV1beta1::MaliciousEntity

Entity whose actions triggered a Gmail phishing alert. Corresponds to the JSON property maliciousEntity



1194
1195
1196
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1194

def malicious_entity
  @malicious_entity
end

#messagesArray<Google::Apis::AlertcenterV1beta1::GmailMessageInfo>

The list of messages contained by this alert. Corresponds to the JSON property messages



1199
1200
1201
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1199

def messages
  @messages
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1206
1207
1208
1209
1210
1211
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1206

def update!(**args)
  @domain_id = args[:domain_id] if args.key?(:domain_id)
  @is_internal = args[:is_internal] if args.key?(:is_internal)
  @malicious_entity = args[:malicious_entity] if args.key?(:malicious_entity)
  @messages = args[:messages] if args.key?(:messages)
end