Exemplo n.º 1
0
        public void DeviceFarmGetDevicePoolCompatibility()
        {
            #region getdevicepoolcompatibility-example-1470925003466

            var client   = new AmazonDeviceFarmClient();
            var response = client.GetDevicePoolCompatibility(new GetDevicePoolCompatibilityRequest
            {
                AppArn        = "arn:aws:devicefarm:us-west-2::app:123-456-EXAMPLE-GUID",
                DevicePoolArn = "arn:aws:devicefarm:us-west-2::devicepool:123-456-EXAMPLE-GUID", // You can get the device pool ARN by using the list-device-pools CLI command.
                TestType      = "APPIUM_PYTHON"
            });

            List <DevicePoolCompatibilityResult> compatibleDevices   = response.CompatibleDevices;
            List <DevicePoolCompatibilityResult> incompatibleDevices = response.IncompatibleDevices;

            #endregion
        }