private Amazon.WAFRegional.Model.PutLoggingConfigurationResponse CallAWSServiceOperation(IAmazonWAFRegional client, Amazon.WAFRegional.Model.PutLoggingConfigurationRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS WAF Regional", "PutLoggingConfiguration"); try { #if DESKTOP return(client.PutLoggingConfiguration(request)); #elif CORECLR return(client.PutLoggingConfigurationAsync(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.WAFRegional.Model.PutLoggingConfigurationRequest(); // populate LoggingConfiguration var requestLoggingConfigurationIsNull = true; request.LoggingConfiguration = new Amazon.WAFRegional.Model.LoggingConfiguration(); List <System.String> requestLoggingConfiguration_loggingConfiguration_LogDestinationConfig = null; if (cmdletContext.LoggingConfiguration_LogDestinationConfig != null) { requestLoggingConfiguration_loggingConfiguration_LogDestinationConfig = cmdletContext.LoggingConfiguration_LogDestinationConfig; } if (requestLoggingConfiguration_loggingConfiguration_LogDestinationConfig != null) { request.LoggingConfiguration.LogDestinationConfigs = requestLoggingConfiguration_loggingConfiguration_LogDestinationConfig; requestLoggingConfigurationIsNull = false; } List <Amazon.WAFRegional.Model.FieldToMatch> requestLoggingConfiguration_loggingConfiguration_RedactedField = null; if (cmdletContext.LoggingConfiguration_RedactedField != null) { requestLoggingConfiguration_loggingConfiguration_RedactedField = cmdletContext.LoggingConfiguration_RedactedField; } if (requestLoggingConfiguration_loggingConfiguration_RedactedField != null) { request.LoggingConfiguration.RedactedFields = requestLoggingConfiguration_loggingConfiguration_RedactedField; requestLoggingConfigurationIsNull = false; } System.String requestLoggingConfiguration_loggingConfiguration_ResourceArn = null; if (cmdletContext.LoggingConfiguration_ResourceArn != null) { requestLoggingConfiguration_loggingConfiguration_ResourceArn = cmdletContext.LoggingConfiguration_ResourceArn; } if (requestLoggingConfiguration_loggingConfiguration_ResourceArn != null) { request.LoggingConfiguration.ResourceArn = requestLoggingConfiguration_loggingConfiguration_ResourceArn; requestLoggingConfigurationIsNull = false; } // determine if request.LoggingConfiguration should be set to null if (requestLoggingConfigurationIsNull) { request.LoggingConfiguration = 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); }