Class: Google::Apis::TestingV1::TestEnvironmentCatalog
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::TestingV1::TestEnvironmentCatalog
 
 
- 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 a test environment.
Instance Attribute Summary collapse
- 
  
    
      #android_device_catalog  ⇒ Google::Apis::TestingV1::AndroidDeviceCatalog 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The currently supported Android devices.
 - 
  
    
      #ios_device_catalog  ⇒ Google::Apis::TestingV1::IosDeviceCatalog 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The currently supported iOS devices.
 - 
  
    
      #network_configuration_catalog  ⇒ Google::Apis::TestingV1::NetworkConfigurationCatalog 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Supported network configurations Corresponds to the JSON property
networkConfigurationCatalog. - 
  
    
      #software_catalog  ⇒ Google::Apis::TestingV1::ProvidedSoftwareCatalog 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The currently provided software environment on the devices under test.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TestEnvironmentCatalog 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of TestEnvironmentCatalog.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TestEnvironmentCatalog
Returns a new instance of TestEnvironmentCatalog
      1786 1787 1788  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1786 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#android_device_catalog ⇒ Google::Apis::TestingV1::AndroidDeviceCatalog
The currently supported Android devices.
Corresponds to the JSON property androidDeviceCatalog
      1769 1770 1771  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1769 def android_device_catalog @android_device_catalog end  | 
  
#ios_device_catalog ⇒ Google::Apis::TestingV1::IosDeviceCatalog
The currently supported iOS devices.
Corresponds to the JSON property iosDeviceCatalog
      1774 1775 1776  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1774 def ios_device_catalog @ios_device_catalog end  | 
  
#network_configuration_catalog ⇒ Google::Apis::TestingV1::NetworkConfigurationCatalog
Supported network configurations
Corresponds to the JSON property networkConfigurationCatalog
      1779 1780 1781  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1779 def network_configuration_catalog @network_configuration_catalog end  | 
  
#software_catalog ⇒ Google::Apis::TestingV1::ProvidedSoftwareCatalog
The currently provided software environment on the devices under test.
Corresponds to the JSON property softwareCatalog
      1784 1785 1786  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1784 def software_catalog @software_catalog end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1791 1792 1793 1794 1795 1796  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1791 def update!(**args) @android_device_catalog = args[:android_device_catalog] if args.key?(:android_device_catalog) @ios_device_catalog = args[:ios_device_catalog] if args.key?(:ios_device_catalog) @network_configuration_catalog = args[:network_configuration_catalog] if args.key?(:network_configuration_catalog) @software_catalog = args[:software_catalog] if args.key?(:software_catalog) end  |