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 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 
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
      1271 1272 1273  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1271 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#network_profile ⇒ String
Optional. 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
      1269 1270 1271  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1269 def network_profile @network_profile end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1276 1277 1278  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1276 def update!(**args) @network_profile = args[:network_profile] if args.key?(:network_profile) end  |