private Amazon.Glue.Model.DeleteRegistryResponse CallAWSServiceOperation(IAmazonGlue client, Amazon.Glue.Model.DeleteRegistryRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Glue", "DeleteRegistry"); try { #if DESKTOP return(client.DeleteRegistry(request)); #elif CORECLR return(client.DeleteRegistryAsync(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; } }
public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.Glue.Model.DeleteRegistryRequest(); // populate RegistryId var requestRegistryIdIsNull = true; request.RegistryId = new Amazon.Glue.Model.RegistryId(); System.String requestRegistryId_registryId_RegistryArn = null; if (cmdletContext.RegistryId_RegistryArn != null) { requestRegistryId_registryId_RegistryArn = cmdletContext.RegistryId_RegistryArn; } if (requestRegistryId_registryId_RegistryArn != null) { request.RegistryId.RegistryArn = requestRegistryId_registryId_RegistryArn; requestRegistryIdIsNull = false; } System.String requestRegistryId_registryId_RegistryName = null; if (cmdletContext.RegistryId_RegistryName != null) { requestRegistryId_registryId_RegistryName = cmdletContext.RegistryId_RegistryName; } if (requestRegistryId_registryId_RegistryName != null) { request.RegistryId.RegistryName = requestRegistryId_registryId_RegistryName; requestRegistryIdIsNull = false; } // determine if request.RegistryId should be set to null if (requestRegistryIdIsNull) { request.RegistryId = null; } 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); }