public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.EC2.Model.RestoreManagedPrefixListVersionRequest(); if (cmdletContext.CurrentVersion != null) { request.CurrentVersion = cmdletContext.CurrentVersion.Value; } if (cmdletContext.PrefixListId != null) { request.PrefixListId = cmdletContext.PrefixListId; } if (cmdletContext.PreviousVersion != null) { request.PreviousVersion = cmdletContext.PreviousVersion.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); }
private Amazon.EC2.Model.RestoreManagedPrefixListVersionResponse CallAWSServiceOperation(IAmazonEC2 client, Amazon.EC2.Model.RestoreManagedPrefixListVersionRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Elastic Compute Cloud (EC2)", "RestoreManagedPrefixListVersion"); try { #if DESKTOP return(client.RestoreManagedPrefixListVersion(request)); #elif CORECLR return(client.RestoreManagedPrefixListVersionAsync(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; } }