@@ -356,16 +356,28 @@ class Attack
356356 # @return [String]
357357 attr_accessor :classification
358358
359- # Total BPS (bytes per second) volume of attack.
359+ # Total BPS (bytes per second) volume of attack. Deprecated - refer to
360+ # volume_bps_long instead.
360361 # Corresponds to the JSON property `volumeBps`
361362 # @return [Fixnum]
362363 attr_accessor :volume_bps
363364
364- # Total PPS (packets per second) volume of attack.
365+ # Total BPS (bytes per second) volume of attack.
366+ # Corresponds to the JSON property `volumeBpsLong`
367+ # @return [Fixnum]
368+ attr_accessor :volume_bps_long
369+
370+ # Total PPS (packets per second) volume of attack. Deprecated - refer to
371+ # volume_pps_long instead.
365372 # Corresponds to the JSON property `volumePps`
366373 # @return [Fixnum]
367374 attr_accessor :volume_pps
368375
376+ # Total PPS (packets per second) volume of attack.
377+ # Corresponds to the JSON property `volumePpsLong`
378+ # @return [Fixnum]
379+ attr_accessor :volume_pps_long
380+
369381 def initialize(**args)
370382 update!(**args)
371383 end
@@ -374,7 +386,9 @@ def initialize(**args)
374386 def update!(**args)
375387 @classification = args[:classification] if args.key?(:classification)
376388 @volume_bps = args[:volume_bps] if args.key?(:volume_bps)
389+ @volume_bps_long = args[:volume_bps_long] if args.key?(:volume_bps_long)
377390 @volume_pps = args[:volume_pps] if args.key?(:volume_pps)
391+ @volume_pps_long = args[:volume_pps_long] if args.key?(:volume_pps_long)
378392 end
379393 end
380394
@@ -4518,16 +4532,28 @@ class GoogleCloudSecuritycenterV2Attack
45184532 # @return [String]
45194533 attr_accessor :classification
45204534
4521- # Total BPS (bytes per second) volume of attack.
4535+ # Total BPS (bytes per second) volume of attack. Deprecated - refer to
4536+ # volume_bps_long instead.
45224537 # Corresponds to the JSON property `volumeBps`
45234538 # @return [Fixnum]
45244539 attr_accessor :volume_bps
45254540
4526- # Total PPS (packets per second) volume of attack.
4541+ # Total BPS (bytes per second) volume of attack.
4542+ # Corresponds to the JSON property `volumeBpsLong`
4543+ # @return [Fixnum]
4544+ attr_accessor :volume_bps_long
4545+
4546+ # Total PPS (packets per second) volume of attack. Deprecated - refer to
4547+ # volume_pps_long instead.
45274548 # Corresponds to the JSON property `volumePps`
45284549 # @return [Fixnum]
45294550 attr_accessor :volume_pps
45304551
4552+ # Total PPS (packets per second) volume of attack.
4553+ # Corresponds to the JSON property `volumePpsLong`
4554+ # @return [Fixnum]
4555+ attr_accessor :volume_pps_long
4556+
45314557 def initialize(**args)
45324558 update!(**args)
45334559 end
@@ -4536,7 +4562,9 @@ def initialize(**args)
45364562 def update!(**args)
45374563 @classification = args[:classification] if args.key?(:classification)
45384564 @volume_bps = args[:volume_bps] if args.key?(:volume_bps)
4565+ @volume_bps_long = args[:volume_bps_long] if args.key?(:volume_bps_long)
45394566 @volume_pps = args[:volume_pps] if args.key?(:volume_pps)
4567+ @volume_pps_long = args[:volume_pps_long] if args.key?(:volume_pps_long)
45404568 end
45414569 end
45424570
0 commit comments