Class: Google::Apis::TestingV1::TestEnvironmentCatalog
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::TestEnvironmentCatalog
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/testing_v1/classes.rb,
lib/google/apis/testing_v1/representations.rb,
lib/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.
-
#device_ip_block_catalog ⇒ Google::Apis::TestingV1::DeviceIpBlockCatalog
List of IP blocks used by the Firebase Test Lab Corresponds to the JSON property
deviceIpBlockCatalog
. -
#ios_device_catalog ⇒ Google::Apis::TestingV1::IosDeviceCatalog
The currently supported iOS devices.
-
#network_configuration_catalog ⇒ Google::Apis::TestingV1::NetworkConfigurationCatalog
Supported network configurations.
-
#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.
Constructor Details
#initialize(**args) ⇒ TestEnvironmentCatalog
Returns a new instance of TestEnvironmentCatalog.
2062 2063 2064 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2062 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
2040 2041 2042 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2040 def android_device_catalog @android_device_catalog end |
#device_ip_block_catalog ⇒ Google::Apis::TestingV1::DeviceIpBlockCatalog
List of IP blocks used by the Firebase Test Lab
Corresponds to the JSON property deviceIpBlockCatalog
2045 2046 2047 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2045 def device_ip_block_catalog @device_ip_block_catalog end |
#ios_device_catalog ⇒ Google::Apis::TestingV1::IosDeviceCatalog
The currently supported iOS devices.
Corresponds to the JSON property iosDeviceCatalog
2050 2051 2052 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2050 def ios_device_catalog @ios_device_catalog end |
#network_configuration_catalog ⇒ Google::Apis::TestingV1::NetworkConfigurationCatalog
Supported network configurations.
Corresponds to the JSON property networkConfigurationCatalog
2055 2056 2057 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2055 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
2060 2061 2062 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2060 def software_catalog @software_catalog end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2067 2068 2069 2070 2071 2072 2073 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2067 def update!(**args) @android_device_catalog = args[:android_device_catalog] if args.key?(:android_device_catalog) @device_ip_block_catalog = args[:device_ip_block_catalog] if args.key?(:device_ip_block_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 |