示例#1
0
 private Amazon.MTurk.Model.UpdateQualificationTypeResponse CallAWSServiceOperation(IAmazonMTurk client, Amazon.MTurk.Model.UpdateQualificationTypeRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon MTurk Service", "UpdateQualificationType");
     try
     {
         #if DESKTOP
         return(client.UpdateQualificationType(request));
         #elif CORECLR
         return(client.UpdateQualificationTypeAsync(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;
     }
 }
示例#2
0
        public object Execute(ExecutorContext context)
        {
            var cmdletContext = context as CmdletContext;
            // create request
            var request = new Amazon.MTurk.Model.UpdateQualificationTypeRequest();

            if (cmdletContext.AnswerKey != null)
            {
                request.AnswerKey = cmdletContext.AnswerKey;
            }
            if (cmdletContext.AutoGranted != null)
            {
                request.AutoGranted = cmdletContext.AutoGranted.Value;
            }
            if (cmdletContext.AutoGrantedValue != null)
            {
                request.AutoGrantedValue = cmdletContext.AutoGrantedValue.Value;
            }
            if (cmdletContext.Description != null)
            {
                request.Description = cmdletContext.Description;
            }
            if (cmdletContext.QualificationTypeId != null)
            {
                request.QualificationTypeId = cmdletContext.QualificationTypeId;
            }
            if (cmdletContext.QualificationTypeStatus != null)
            {
                request.QualificationTypeStatus = cmdletContext.QualificationTypeStatus;
            }
            if (cmdletContext.RetryDelayInSecond != null)
            {
                request.RetryDelayInSeconds = cmdletContext.RetryDelayInSecond.Value;
            }
            if (cmdletContext.Test != null)
            {
                request.Test = cmdletContext.Test;
            }
            if (cmdletContext.TestDurationInSecond != null)
            {
                request.TestDurationInSeconds = cmdletContext.TestDurationInSecond.Value;
            }

            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);
        }