Class: Google::Apis::TestingV1::IosTestSetup
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::IosTestSetup
- 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
A description of how to set up an iOS device prior to a test.
Instance Attribute Summary collapse
-
#network_profile ⇒ String
The network traffic profile used for running the test.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IosTestSetup
constructor
A new instance of IosTestSetup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ IosTestSetup
Returns a new instance of IosTestSetup
1286 1287 1288 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1286 def initialize(**args) update!(**args) end |
Instance Attribute Details
#network_profile ⇒ String
The network traffic profile used for running the test.
Available network profiles can be queried by using the
NETWORK_CONFIGURATION environment type when calling
TestEnvironmentDiscoveryService.GetTestEnvironmentCatalog.
Corresponds to the JSON property networkProfile
1284 1285 1286 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1284 def network_profile @network_profile end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1291 1292 1293 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1291 def update!(**args) @network_profile = args[:network_profile] if args.key?(:network_profile) end |