public object Execute(ExecutorContext context)
        {
            var cmdletContext = context as CmdletContext;
            // create request
            var request = new Amazon.DeviceFarm.Model.GetDeviceRequest();

            if (cmdletContext.Arn != null)
            {
                request.Arn = cmdletContext.Arn;
            }

            CmdletOutput output;

            // issue call
            var client = Client ?? CreateClient(_CurrentCredentials, _RegionEndpoint);

            try
            {
                var    response       = CallAWSServiceOperation(client, request);
                object pipelineOutput = null;
                pipelineOutput = cmdletContext.Select(response, this);
                output         = new CmdletOutput
                {
                    PipelineOutput  = pipelineOutput,
                    ServiceResponse = response
                };
            }
            catch (Exception e)
            {
                output = new CmdletOutput {
                    ErrorResponse = e
                };
            }

            return(output);
        }
        /// <summary>
        /// Initiates the asynchronous execution of the GetDevice operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the GetDevice operation on AmazonDeviceFarmClient.</param>
        /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
        /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
        ///          procedure using the AsyncState property.</param>
        /// 
        /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetDevice
        ///         operation.</returns>
        public IAsyncResult BeginGetDevice(GetDeviceRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new GetDeviceRequestMarshaller();
            var unmarshaller = GetDeviceResponseUnmarshaller.Instance;

            return BeginInvoke<GetDeviceRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
        /// <summary>
        /// Gets information about a unique device type.
        /// </summary>
        /// <param name="request">Container for the necessary parameters to execute the GetDevice service method.</param>
        /// 
        /// <returns>The response from the GetDevice service method, as returned by DeviceFarm.</returns>
        /// <exception cref="Amazon.DeviceFarm.Model.ArgumentException">
        /// An invalid argument was specified.
        /// </exception>
        /// <exception cref="Amazon.DeviceFarm.Model.LimitExceededException">
        /// A limit was exceeded.
        /// </exception>
        /// <exception cref="Amazon.DeviceFarm.Model.NotFoundException">
        /// The specified entity was not found.
        /// </exception>
        /// <exception cref="Amazon.DeviceFarm.Model.ServiceAccountException">
        /// There was a problem with the service account.
        /// </exception>
        public GetDeviceResponse GetDevice(GetDeviceRequest request)
        {
            var marshaller = new GetDeviceRequestMarshaller();
            var unmarshaller = GetDeviceResponseUnmarshaller.Instance;

            return Invoke<GetDeviceRequest,GetDeviceResponse>(request, marshaller, unmarshaller);
        }
 /// <summary>
 /// Gets information about a unique device type.
 /// </summary>
 /// <param name="arn">The device type's ARN.</param>
 /// 
 /// <returns>The response from the GetDevice service method, as returned by DeviceFarm.</returns>
 /// <exception cref="Amazon.DeviceFarm.Model.ArgumentException">
 /// An invalid argument was specified.
 /// </exception>
 /// <exception cref="Amazon.DeviceFarm.Model.LimitExceededException">
 /// A limit was exceeded.
 /// </exception>
 /// <exception cref="Amazon.DeviceFarm.Model.NotFoundException">
 /// The specified entity was not found.
 /// </exception>
 /// <exception cref="Amazon.DeviceFarm.Model.ServiceAccountException">
 /// There was a problem with the service account.
 /// </exception>
 public GetDeviceResponse GetDevice(string arn)
 {
     var request = new GetDeviceRequest();
     request.Arn = arn;
     return GetDevice(request);
 }
        /// <summary>
        /// Initiates the asynchronous execution of the GetDevice operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the GetDevice operation.</param>
        /// <param name="cancellationToken">
        ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
        /// </param>
        /// <returns>The task object representing the asynchronous operation.</returns>
        public Task<GetDeviceResponse> GetDeviceAsync(GetDeviceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new GetDeviceRequestMarshaller();
            var unmarshaller = GetDeviceResponseUnmarshaller.Instance;

            return InvokeAsync<GetDeviceRequest,GetDeviceResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
 /// <summary>
 /// Gets information about a unique device type.
 /// </summary>
 /// <param name="arn">The device type's ARN.</param>
 /// <param name="cancellationToken">
 ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
 /// </param>
 /// 
 /// <returns>The response from the GetDevice service method, as returned by DeviceFarm.</returns>
 /// <exception cref="Amazon.DeviceFarm.Model.ArgumentException">
 /// An invalid argument was specified.
 /// </exception>
 /// <exception cref="Amazon.DeviceFarm.Model.LimitExceededException">
 /// A limit was exceeded.
 /// </exception>
 /// <exception cref="Amazon.DeviceFarm.Model.NotFoundException">
 /// The specified entity was not found.
 /// </exception>
 /// <exception cref="Amazon.DeviceFarm.Model.ServiceAccountException">
 /// There was a problem with the service account.
 /// </exception>
 public Task<GetDeviceResponse> GetDeviceAsync(string arn, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new GetDeviceRequest();
     request.Arn = arn;
     return GetDeviceAsync(request, cancellationToken);
 }
 private Amazon.DeviceFarm.Model.GetDeviceResponse CallAWSServiceOperation(IAmazonDeviceFarm client, Amazon.DeviceFarm.Model.GetDeviceRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Device Farm", "GetDevice");
     try
     {
         #if DESKTOP
         return(client.GetDevice(request));
         #elif CORECLR
         return(client.GetDeviceAsync(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;
     }
 }