Class: Google::Apis::TestingV1::NetworkConfiguration
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::TestingV1::NetworkConfiguration
 
- 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
Instance Attribute Summary collapse
- 
  
    
      #down_rule  ⇒ Google::Apis::TestingV1::TrafficRule 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Network emulation parameters Corresponds to the JSON property downRule.
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique opaque id for this network traffic configuration Corresponds to the JSON property id.
- 
  
    
      #up_rule  ⇒ Google::Apis::TestingV1::TrafficRule 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Network emulation parameters Corresponds to the JSON property upRule.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ NetworkConfiguration 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of NetworkConfiguration. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ NetworkConfiguration
Returns a new instance of NetworkConfiguration
| 1142 1143 1144 | # File 'generated/google/apis/testing_v1/classes.rb', line 1142 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#down_rule ⇒ Google::Apis::TestingV1::TrafficRule
Network emulation parameters
Corresponds to the JSON property downRule
| 1129 1130 1131 | # File 'generated/google/apis/testing_v1/classes.rb', line 1129 def down_rule @down_rule end | 
#id ⇒ String
The unique opaque id for this network traffic configuration
Corresponds to the JSON property id
| 1135 1136 1137 | # File 'generated/google/apis/testing_v1/classes.rb', line 1135 def id @id end | 
#up_rule ⇒ Google::Apis::TestingV1::TrafficRule
Network emulation parameters
Corresponds to the JSON property upRule
| 1140 1141 1142 | # File 'generated/google/apis/testing_v1/classes.rb', line 1140 def up_rule @up_rule end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1147 1148 1149 1150 1151 | # File 'generated/google/apis/testing_v1/classes.rb', line 1147 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 |