Class: Google::Apis::TestingV1::IosDeviceCatalog
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::IosDeviceCatalog
- 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
The currently supported iOS devices.
Instance Attribute Summary collapse
-
#models ⇒ Array<Google::Apis::TestingV1::IosModel>
The set of supported iOS device models.
-
#runtime_configuration ⇒ Google::Apis::TestingV1::IosRuntimeConfiguration
iOS configuration that can be selected at the time a test is run.
-
#versions ⇒ Array<Google::Apis::TestingV1::IosVersion>
The set of supported iOS software versions.
-
#xcode_versions ⇒ Array<Google::Apis::TestingV1::XcodeVersion>
The set of supported Xcode versions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IosDeviceCatalog
constructor
A new instance of IosDeviceCatalog.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IosDeviceCatalog
Returns a new instance of IosDeviceCatalog.
1247 1248 1249 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1247 def initialize(**args) update!(**args) end |
Instance Attribute Details
#models ⇒ Array<Google::Apis::TestingV1::IosModel>
The set of supported iOS device models.
Corresponds to the JSON property models
1230 1231 1232 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1230 def models @models end |
#runtime_configuration ⇒ Google::Apis::TestingV1::IosRuntimeConfiguration
iOS configuration that can be selected at the time a test is run.
Corresponds to the JSON property runtimeConfiguration
1235 1236 1237 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1235 def runtime_configuration @runtime_configuration end |
#versions ⇒ Array<Google::Apis::TestingV1::IosVersion>
The set of supported iOS software versions.
Corresponds to the JSON property versions
1240 1241 1242 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1240 def versions @versions end |
#xcode_versions ⇒ Array<Google::Apis::TestingV1::XcodeVersion>
The set of supported Xcode versions.
Corresponds to the JSON property xcodeVersions
1245 1246 1247 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1245 def xcode_versions @xcode_versions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1252 1253 1254 1255 1256 1257 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1252 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 |