Class: Google::Apis::TestingV1::NetworkConfiguration

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ NetworkConfiguration

Returns a new instance of NetworkConfiguration.



1548
1549
1550
# File 'generated/google/apis/testing_v1/classes.rb', line 1548

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#down_ruleGoogle::Apis::TestingV1::TrafficRule

Network emulation parameters. Corresponds to the JSON property downRule



1536
1537
1538
# File 'generated/google/apis/testing_v1/classes.rb', line 1536

def down_rule
  @down_rule
end

#idString

The unique opaque id for this network traffic configuration. Corresponds to the JSON property id

Returns:

  • (String)


1541
1542
1543
# File 'generated/google/apis/testing_v1/classes.rb', line 1541

def id
  @id
end

#up_ruleGoogle::Apis::TestingV1::TrafficRule

Network emulation parameters. Corresponds to the JSON property upRule



1546
1547
1548
# File 'generated/google/apis/testing_v1/classes.rb', line 1546

def up_rule
  @up_rule
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1553
1554
1555
1556
1557
# File 'generated/google/apis/testing_v1/classes.rb', line 1553

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