Class: Google::Apis::TestingV1::IosDeviceCatalog

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

The currently supported iOS devices.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IosDeviceCatalog

Returns a new instance of IosDeviceCatalog.



1205
1206
1207
# File 'generated/google/apis/testing_v1/classes.rb', line 1205

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

Instance Attribute Details

#modelsArray<Google::Apis::TestingV1::IosModel>

The set of supported iOS device models. Corresponds to the JSON property models



1188
1189
1190
# File 'generated/google/apis/testing_v1/classes.rb', line 1188

def models
  @models
end

#runtime_configurationGoogle::Apis::TestingV1::IosRuntimeConfiguration

iOS configuration that can be selected at the time a test is run. Corresponds to the JSON property runtimeConfiguration



1193
1194
1195
# File 'generated/google/apis/testing_v1/classes.rb', line 1193

def runtime_configuration
  @runtime_configuration
end

#versionsArray<Google::Apis::TestingV1::IosVersion>

The set of supported iOS software versions. Corresponds to the JSON property versions



1198
1199
1200
# File 'generated/google/apis/testing_v1/classes.rb', line 1198

def versions
  @versions
end

#xcode_versionsArray<Google::Apis::TestingV1::XcodeVersion>

The set of supported Xcode versions. Corresponds to the JSON property xcodeVersions



1203
1204
1205
# File 'generated/google/apis/testing_v1/classes.rb', line 1203

def xcode_versions
  @xcode_versions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1210
1211
1212
1213
1214
1215
# File 'generated/google/apis/testing_v1/classes.rb', line 1210

def update!(**args)
  @models = args[:models] if args.key?(:models)
  @runtime_configuration = args[:runtime_configuration] if args.key?(:runtime_configuration)
  @versions = args[:versions] if args.key?(:versions)
  @xcode_versions = args[:xcode_versions] if args.key?(:xcode_versions)
end