Exemplo n.º 1
0
        public void DeviceFarmDeleteDevicePool()
        {
            #region deletedevicepool-example-1470866975494

            var response = client.DeleteDevicePool(new DeleteDevicePoolRequest
            {
                Arn = "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.
            });


            #endregion
        }
Exemplo n.º 2
0
 private Amazon.DeviceFarm.Model.DeleteDevicePoolResponse CallAWSServiceOperation(IAmazonDeviceFarm client, Amazon.DeviceFarm.Model.DeleteDevicePoolRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Device Farm", "DeleteDevicePool");
     try
     {
         #if DESKTOP
         return(client.DeleteDevicePool(request));
         #elif CORECLR
         return(client.DeleteDevicePoolAsync(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;
     }
 }