Class: Google::Apis::TestingV1::TestEnvironmentCatalog

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TestEnvironmentCatalog

Returns a new instance of TestEnvironmentCatalog



1467
1468
1469
# File 'generated/google/apis/testing_v1/classes.rb', line 1467

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#android_device_catalogGoogle::Apis::TestingV1::AndroidDeviceCatalog

The currently supported Android devices. Corresponds to the JSON property androidDeviceCatalog



1460
1461
1462
# File 'generated/google/apis/testing_v1/classes.rb', line 1460

def android_device_catalog
  @android_device_catalog
end

#network_configuration_catalogGoogle::Apis::TestingV1::NetworkConfigurationCatalog

Supported network configurations Corresponds to the JSON property networkConfigurationCatalog



1465
1466
1467
# File 'generated/google/apis/testing_v1/classes.rb', line 1465

def network_configuration_catalog
  @network_configuration_catalog
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1472
1473
1474
1475
# File 'generated/google/apis/testing_v1/classes.rb', line 1472

def update!(**args)
  @android_device_catalog = args[:android_device_catalog] if args.key?(:android_device_catalog)
  @network_configuration_catalog = args[:network_configuration_catalog] if args.key?(:network_configuration_catalog)
end