class Google::Apis::TestingV1::TestEnvironmentCatalog
A description of a test environment.
Attributes
The currently supported Android devices. Corresponds to the JSON property `androidDeviceCatalog` @return [Google::Apis::TestingV1::AndroidDeviceCatalog]
List of IP blocks used by the Firebase Test Lab Corresponds to the JSON property `deviceIpBlockCatalog` @return [Google::Apis::TestingV1::DeviceIpBlockCatalog]
The currently supported iOS devices. Corresponds to the JSON property `iosDeviceCatalog` @return [Google::Apis::TestingV1::IosDeviceCatalog]
Supported network configurations. Corresponds to the JSON property `networkConfigurationCatalog` @return [Google::Apis::TestingV1::NetworkConfigurationCatalog]
The currently provided software environment on the devices under test. Corresponds to the JSON property `softwareCatalog` @return [Google::Apis::TestingV1::ProvidedSoftwareCatalog]
Public Class Methods
# File lib/google/apis/testing_v1/classes.rb, line 2073 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/testing_v1/classes.rb, line 2078 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