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

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NetworkConfiguration

Returns a new instance of NetworkConfiguration.



1919
1920
1921
# File 'lib/google/apis/testing_v1/classes.rb', line 1919

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

Instance Attribute Details

#down_ruleGoogle::Apis::TestingV1::TrafficRule

Network emulation parameters. Corresponds to the JSON property downRule



1907
1908
1909
# File 'lib/google/apis/testing_v1/classes.rb', line 1907

def down_rule
  @down_rule
end

#idString

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

Returns:

  • (String)


1912
1913
1914
# File 'lib/google/apis/testing_v1/classes.rb', line 1912

def id
  @id
end

#up_ruleGoogle::Apis::TestingV1::TrafficRule

Network emulation parameters. Corresponds to the JSON property upRule



1917
1918
1919
# File 'lib/google/apis/testing_v1/classes.rb', line 1917

def up_rule
  @up_rule
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1924
1925
1926
1927
1928
# File 'lib/google/apis/testing_v1/classes.rb', line 1924

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