Class: Google::Apis::TestingV1::IosDeviceCatalog
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::TestingV1::IosDeviceCatalog
 
 
- 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
The currently supported iOS devices.
Instance Attribute Summary collapse
- 
  
    
      #models  ⇒ Array<Google::Apis::TestingV1::IosModel> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #runtime_configuration  ⇒ Google::Apis::TestingV1::IosRuntimeConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
iOS configuration that can be selected at the time a test is run.
 - 
  
    
      #versions  ⇒ Array<Google::Apis::TestingV1::IosVersion> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ IosDeviceCatalog 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of IosDeviceCatalog.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ IosDeviceCatalog
Returns a new instance of IosDeviceCatalog
      1146 1147 1148  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1146 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#models ⇒ Array<Google::Apis::TestingV1::IosModel>
Output only. The set of supported iOS device models.
Corresponds to the JSON property models
      1134 1135 1136  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1134 def models @models end  | 
  
#runtime_configuration ⇒ Google::Apis::TestingV1::IosRuntimeConfiguration
iOS configuration that can be selected at the time a test is run.
Corresponds to the JSON property runtimeConfiguration
      1139 1140 1141  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1139 def runtime_configuration @runtime_configuration end  | 
  
#versions ⇒ Array<Google::Apis::TestingV1::IosVersion>
Output only. The set of supported iOS software versions.
Corresponds to the JSON property versions
      1144 1145 1146  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1144 def versions @versions end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1151 1152 1153 1154 1155  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1151 def update!(**args) @models = args[:models] if args.key?(:models) @runtime_configuration = args[:runtime_configuration] if args.key?(:runtime_configuration) @versions = args[:versions] if args.key?(:versions) end  |