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

            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
        }
 private Amazon.DeviceFarm.Model.GetDevicePoolCompatibilityResponse CallAWSServiceOperation(IAmazonDeviceFarm client, Amazon.DeviceFarm.Model.GetDevicePoolCompatibilityRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Device Farm", "GetDevicePoolCompatibility");
     try
     {
         #if DESKTOP
         return(client.GetDevicePoolCompatibility(request));
         #elif CORECLR
         return(client.GetDevicePoolCompatibilityAsync(request).GetAwaiter().GetResult());
         #else
                 #error "Unknown build edition"
         #endif
     }
     catch (AmazonServiceException exc)
     {
         var webException = exc.InnerException as System.Net.WebException;
         if (webException != null)
         {
             throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException);
         }
         throw;
     }
 }