Class: Google::Apis::TestingV1::TrafficRule
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::TrafficRule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/testing_v1/classes.rb,
lib/google/apis/testing_v1/representations.rb,
lib/google/apis/testing_v1/representations.rb
Overview
Network emulation parameters.
Instance Attribute Summary collapse
-
#bandwidth ⇒ Float
Bandwidth in kbits/second.
-
#burst ⇒ Float
Burst size in kbits.
-
#delay ⇒ String
Packet delay, must be >= 0.
-
#packet_duplication_ratio ⇒ Float
Packet duplication ratio (0.0 - 1.0).
-
#packet_loss_ratio ⇒ Float
Packet loss ratio (0.0 - 1.0).
Instance Method Summary collapse
-
#initialize(**args) ⇒ TrafficRule
constructor
A new instance of TrafficRule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TrafficRule
Returns a new instance of TrafficRule.
2740 2741 2742 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2740 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bandwidth ⇒ Float
Bandwidth in kbits/second.
Corresponds to the JSON property bandwidth
2718 2719 2720 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2718 def bandwidth @bandwidth end |
#burst ⇒ Float
Burst size in kbits.
Corresponds to the JSON property burst
2723 2724 2725 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2723 def burst @burst end |
#delay ⇒ String
Packet delay, must be >= 0.
Corresponds to the JSON property delay
2728 2729 2730 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2728 def delay @delay end |
#packet_duplication_ratio ⇒ Float
Packet duplication ratio (0.0 - 1.0).
Corresponds to the JSON property packetDuplicationRatio
2733 2734 2735 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2733 def packet_duplication_ratio @packet_duplication_ratio end |
#packet_loss_ratio ⇒ Float
Packet loss ratio (0.0 - 1.0).
Corresponds to the JSON property packetLossRatio
2738 2739 2740 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2738 def packet_loss_ratio @packet_loss_ratio end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2745 2746 2747 2748 2749 2750 2751 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2745 def update!(**args) @bandwidth = args[:bandwidth] if args.key?(:bandwidth) @burst = args[:burst] if args.key?(:burst) @delay = args[:delay] if args.key?(:delay) @packet_duplication_ratio = args[:packet_duplication_ratio] if args.key?(:packet_duplication_ratio) @packet_loss_ratio = args[:packet_loss_ratio] if args.key?(:packet_loss_ratio) end |