Class: Google::Apis::SecuritycenterV1::Attack
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::Attack
- 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
Information about DDoS attack volume and classification.
Instance Attribute Summary collapse
-
#classification ⇒ String
Type of attack, for example, 'SYN-flood', 'NTP-udp', or 'CHARGEN-udp'.
-
#volume_bps ⇒ Fixnum
Total BPS (bytes per second) volume of attack.
-
#volume_bps_long ⇒ Fixnum
Total BPS (bytes per second) volume of attack.
-
#volume_pps ⇒ Fixnum
Total PPS (packets per second) volume of attack.
-
#volume_pps_long ⇒ Fixnum
Total PPS (packets per second) volume of attack.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Attack
constructor
A new instance of Attack.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Attack
Returns a new instance of Attack.
381 382 383 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 381 def initialize(**args) update!(**args) end |
Instance Attribute Details
#classification ⇒ String
Type of attack, for example, 'SYN-flood', 'NTP-udp', or 'CHARGEN-udp'.
Corresponds to the JSON property classification
357 358 359 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 357 def classification @classification end |
#volume_bps ⇒ Fixnum
Total BPS (bytes per second) volume of attack. Deprecated - refer to
volume_bps_long instead.
Corresponds to the JSON property volumeBps
363 364 365 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 363 def volume_bps @volume_bps end |
#volume_bps_long ⇒ Fixnum
Total BPS (bytes per second) volume of attack.
Corresponds to the JSON property volumeBpsLong
368 369 370 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 368 def volume_bps_long @volume_bps_long end |
#volume_pps ⇒ Fixnum
Total PPS (packets per second) volume of attack. Deprecated - refer to
volume_pps_long instead.
Corresponds to the JSON property volumePps
374 375 376 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 374 def volume_pps @volume_pps end |
#volume_pps_long ⇒ Fixnum
Total PPS (packets per second) volume of attack.
Corresponds to the JSON property volumePpsLong
379 380 381 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 379 def volume_pps_long @volume_pps_long end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
386 387 388 389 390 391 392 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 386 def update!(**args) @classification = args[:classification] if args.key?(:classification) @volume_bps = args[:volume_bps] if args.key?(:volume_bps) @volume_bps_long = args[:volume_bps_long] if args.key?(:volume_bps_long) @volume_pps = args[:volume_pps] if args.key?(:volume_pps) @volume_pps_long = args[:volume_pps_long] if args.key?(:volume_pps_long) end |