Class: Google::Apis::TestingV1::IosTestSetup

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

Overview

A description of how to set up an iOS device prior to running the test.

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) ⇒ IosTestSetup

Returns a new instance of IosTestSetup.



1351
1352
1353
# File 'generated/google/apis/testing_v1/classes.rb', line 1351

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

Instance Attribute Details

#network_profileString

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

Returns:

  • (String)


1349
1350
1351
# File 'generated/google/apis/testing_v1/classes.rb', line 1349

def network_profile
  @network_profile
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1356
1357
1358
# File 'generated/google/apis/testing_v1/classes.rb', line 1356

def update!(**args)
  @network_profile = args[:network_profile] if args.key?(:network_profile)
end