Class: Google::Apis::TestingV1::EnvironmentMatrix
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::TestingV1::EnvironmentMatrix
 
- 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 matrix of environments in which the test is to be executed.
Instance Attribute Summary collapse
- 
  
    
      #android_device_list  ⇒ Google::Apis::TestingV1::AndroidDeviceList 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of Android device configurations in which the test is to be executed. 
- 
  
    
      #android_matrix  ⇒ Google::Apis::TestingV1::AndroidMatrix 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A set of Android device configuration permutations is defined by the the cross-product of the given axes. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ EnvironmentMatrix 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of EnvironmentMatrix. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ EnvironmentMatrix
Returns a new instance of EnvironmentMatrix
| 914 915 916 | # File 'generated/google/apis/testing_v1/classes.rb', line 914 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#android_device_list ⇒ Google::Apis::TestingV1::AndroidDeviceList
A list of Android device configurations in which the test is to be executed.
Corresponds to the JSON property androidDeviceList
| 903 904 905 | # File 'generated/google/apis/testing_v1/classes.rb', line 903 def android_device_list @android_device_list end | 
#android_matrix ⇒ Google::Apis::TestingV1::AndroidMatrix
A set of Android device configuration permutations is defined by the
the cross-product of the given axes.  Internally, the given AndroidMatrix
will be expanded into a set of AndroidDevices.
Only supported permutations will be instantiated.  Invalid permutations
(e.g., incompatible models/versions) are ignored.
Corresponds to the JSON property androidMatrix
| 912 913 914 | # File 'generated/google/apis/testing_v1/classes.rb', line 912 def android_matrix @android_matrix end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 919 920 921 922 | # File 'generated/google/apis/testing_v1/classes.rb', line 919 def update!(**args) @android_device_list = args[:android_device_list] if args.key?(:android_device_list) @android_matrix = args[:android_matrix] if args.key?(:android_matrix) end |