/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the devicefarm-2015-06-23.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.DeviceFarm.Model
{
///
/// Container for the parameters to the GetDevicePoolCompatibility operation.
/// Gets information about compatibility with a device pool.
///
public partial class GetDevicePoolCompatibilityRequest : AmazonDeviceFarmRequest
{
private string _appArn;
private ScheduleRunConfiguration _configuration;
private string _devicePoolArn;
private ScheduleRunTest _test;
private TestType _testType;
///
/// Gets and sets the property AppArn.
///
/// The ARN of the app that is associated with the specified device pool.
///
///
[AWSProperty(Min=32, Max=1011)]
public string AppArn
{
get { return this._appArn; }
set { this._appArn = value; }
}
// Check to see if AppArn property is set
internal bool IsSetAppArn()
{
return this._appArn != null;
}
///
/// Gets and sets the property Configuration.
///
/// An object that contains information about the settings for a run.
///
///
public ScheduleRunConfiguration Configuration
{
get { return this._configuration; }
set { this._configuration = value; }
}
// Check to see if Configuration property is set
internal bool IsSetConfiguration()
{
return this._configuration != null;
}
///
/// Gets and sets the property DevicePoolArn.
///
/// The device pool's ARN.
///
///
[AWSProperty(Required=true, Min=32, Max=1011)]
public string DevicePoolArn
{
get { return this._devicePoolArn; }
set { this._devicePoolArn = value; }
}
// Check to see if DevicePoolArn property is set
internal bool IsSetDevicePoolArn()
{
return this._devicePoolArn != null;
}
///
/// Gets and sets the property Test.
///
/// Information about the uploaded test to be run against the device pool.
///
///
public ScheduleRunTest Test
{
get { return this._test; }
set { this._test = value; }
}
// Check to see if Test property is set
internal bool IsSetTest()
{
return this._test != null;
}
///
/// Gets and sets the property TestType.
///
/// The test type for the specified device pool.
///
///
///
/// Allowed values include the following:
///
/// -
///
/// BUILTIN_FUZZ.
///
///
-
///
/// BUILTIN_EXPLORER. For Android, an app explorer that traverses an Android app, interacting
/// with it and capturing screenshots at the same time.
///
///
-
///
/// APPIUM_JAVA_JUNIT.
///
///
-
///
/// APPIUM_JAVA_TESTNG.
///
///
-
///
/// APPIUM_PYTHON.
///
///
-
///
/// APPIUM_NODE.
///
///
-
///
/// APPIUM_RUBY.
///
///
-
///
/// APPIUM_WEB_JAVA_JUNIT.
///
///
-
///
/// APPIUM_WEB_JAVA_TESTNG.
///
///
-
///
/// APPIUM_WEB_PYTHON.
///
///
-
///
/// APPIUM_WEB_NODE.
///
///
-
///
/// APPIUM_WEB_RUBY.
///
///
-
///
/// CALABASH.
///
///
-
///
/// INSTRUMENTATION.
///
///
-
///
/// UIAUTOMATION.
///
///
-
///
/// UIAUTOMATOR.
///
///
-
///
/// XCTEST.
///
///
-
///
/// XCTEST_UI.
///
///
///
public TestType TestType
{
get { return this._testType; }
set { this._testType = value; }
}
// Check to see if TestType property is set
internal bool IsSetTestType()
{
return this._testType != null;
}
}
}