Class: Google::Apis::TestingV1::NetworkConfiguration
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::NetworkConfiguration
- 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
Instance Attribute Summary collapse
-
#down_rule ⇒ Google::Apis::TestingV1::TrafficRule
Network emulation parameters.
-
#id ⇒ String
The unique opaque id for this network traffic configuration.
-
#up_rule ⇒ Google::Apis::TestingV1::TrafficRule
Network emulation parameters.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkConfiguration
constructor
A new instance of NetworkConfiguration.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NetworkConfiguration
Returns a new instance of NetworkConfiguration.
1708 1709 1710 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1708 def initialize(**args) update!(**args) end |
Instance Attribute Details
#down_rule ⇒ Google::Apis::TestingV1::TrafficRule
Network emulation parameters.
Corresponds to the JSON property downRule
1696 1697 1698 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1696 def down_rule @down_rule end |
#id ⇒ String
The unique opaque id for this network traffic configuration.
Corresponds to the JSON property id
1701 1702 1703 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1701 def id @id end |
#up_rule ⇒ Google::Apis::TestingV1::TrafficRule
Network emulation parameters.
Corresponds to the JSON property upRule
1706 1707 1708 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1706 def up_rule @up_rule end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1713 1714 1715 1716 1717 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1713 def update!(**args) @down_rule = args[:down_rule] if args.key?(:down_rule) @id = args[:id] if args.key?(:id) @up_rule = args[:up_rule] if args.key?(:up_rule) end |