Class: Google::Apis::TestingV1::TrafficRule
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::TrafficRule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/testing_v1/classes.rb,
generated/google/apis/testing_v1/representations.rb,
generated/google/apis/testing_v1/representations.rb
Overview
Network emulation parameters
Instance Attribute Summary collapse
-
#bandwidth ⇒ Float
Bandwidth in kbits/second Corresponds to the JSON property
bandwidth
. -
#burst ⇒ Float
Burst size in kbits Corresponds to the JSON property
burst
. -
#delay ⇒ String
Packet delay, must be >= 0 Corresponds to the JSON property
delay
. -
#packet_duplication_ratio ⇒ Float
Packet duplication ratio (0.0 - 1.0) Corresponds to the JSON property
packetDuplicationRatio
. -
#packet_loss_ratio ⇒ Float
Packet loss ratio (0.0 - 1.0) Corresponds to the JSON property
packetLossRatio
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TrafficRule
constructor
A new instance of TrafficRule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TrafficRule
Returns a new instance of TrafficRule
1937 1938 1939 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1937 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bandwidth ⇒ Float
Bandwidth in kbits/second
Corresponds to the JSON property bandwidth
1915 1916 1917 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1915 def bandwidth @bandwidth end |
#burst ⇒ Float
Burst size in kbits
Corresponds to the JSON property burst
1920 1921 1922 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1920 def burst @burst end |
#delay ⇒ String
Packet delay, must be >= 0
Corresponds to the JSON property delay
1925 1926 1927 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1925 def delay @delay end |
#packet_duplication_ratio ⇒ Float
Packet duplication ratio (0.0 - 1.0)
Corresponds to the JSON property packetDuplicationRatio
1930 1931 1932 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1930 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
1935 1936 1937 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1935 def packet_loss_ratio @packet_loss_ratio end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1942 1943 1944 1945 1946 1947 1948 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1942 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 |