class Google::Apis::TestingV1::TestEnvironmentCatalog

A description of a test environment.

Attributes

android_device_catalog[RW]

The currently supported Android devices. Corresponds to the JSON property `androidDeviceCatalog` @return [Google::Apis::TestingV1::AndroidDeviceCatalog]

device_ip_block_catalog[RW]

List of IP blocks used by the Firebase Test Lab Corresponds to the JSON property `deviceIpBlockCatalog` @return [Google::Apis::TestingV1::DeviceIpBlockCatalog]

ios_device_catalog[RW]

The currently supported iOS devices. Corresponds to the JSON property `iosDeviceCatalog` @return [Google::Apis::TestingV1::IosDeviceCatalog]

network_configuration_catalog[RW]

Supported network configurations. Corresponds to the JSON property `networkConfigurationCatalog` @return [Google::Apis::TestingV1::NetworkConfigurationCatalog]

software_catalog[RW]

The currently provided software environment on the devices under test. Corresponds to the JSON property `softwareCatalog` @return [Google::Apis::TestingV1::ProvidedSoftwareCatalog]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 2073
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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