Example #1
0
        public object Execute(ExecutorContext context)
        {
            var cmdletContext = context as CmdletContext;
            // create request
            var request = new Amazon.DeviceFarm.Model.GetJobRequest();

            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 GetJob operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the GetJob 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 EndGetJob
        ///         operation.</returns>
        public IAsyncResult BeginGetJob(GetJobRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new GetJobRequestMarshaller();
            var unmarshaller = GetJobResponseUnmarshaller.Instance;

            return BeginInvoke<GetJobRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
        /// <summary>
        /// Gets information about a job.
        /// </summary>
        /// <param name="request">Container for the necessary parameters to execute the GetJob service method.</param>
        /// 
        /// <returns>The response from the GetJob 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 GetJobResponse GetJob(GetJobRequest request)
        {
            var marshaller = new GetJobRequestMarshaller();
            var unmarshaller = GetJobResponseUnmarshaller.Instance;

            return Invoke<GetJobRequest,GetJobResponse>(request, marshaller, unmarshaller);
        }
 /// <summary>
 /// Gets information about a job.
 /// </summary>
 /// <param name="arn">The job's ARN.</param>
 /// 
 /// <returns>The response from the GetJob 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 GetJobResponse GetJob(string arn)
 {
     var request = new GetJobRequest();
     request.Arn = arn;
     return GetJob(request);
 }
        /// <summary>
        /// Initiates the asynchronous execution of the GetJob operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the GetJob 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<GetJobResponse> GetJobAsync(GetJobRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new GetJobRequestMarshaller();
            var unmarshaller = GetJobResponseUnmarshaller.Instance;

            return InvokeAsync<GetJobRequest,GetJobResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
 /// <summary>
 /// Gets information about a job.
 /// </summary>
 /// <param name="arn">The job'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 GetJob 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<GetJobResponse> GetJobAsync(string arn, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new GetJobRequest();
     request.Arn = arn;
     return GetJobAsync(request, cancellationToken);
 }
Example #7
0
 private Amazon.DeviceFarm.Model.GetJobResponse CallAWSServiceOperation(IAmazonDeviceFarm client, Amazon.DeviceFarm.Model.GetJobRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Device Farm", "GetJob");
     try
     {
         #if DESKTOP
         return(client.GetJob(request));
         #elif CORECLR
         return(client.GetJobAsync(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;
     }
 }