public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.ResourceGroups.Model.GetGroupQueryRequest(); if (cmdletContext.Group != null) { request.Group = cmdletContext.Group; } #pragma warning disable CS0618, CS0612 //A class member was marked with the Obsolete attribute if (cmdletContext.GroupName != null) { request.GroupName = cmdletContext.GroupName; } #pragma warning restore CS0618, CS0612 //A class member was marked with the Obsolete attribute 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); }
public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.ResourceGroups.Model.GetGroupQueryRequest(); if (cmdletContext.GroupName != null) { request.GroupName = cmdletContext.GroupName; } 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.ResourceGroups.Model.GetGroupQueryResponse CallAWSServiceOperation(IAmazonResourceGroups client, Amazon.ResourceGroups.Model.GetGroupQueryRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Resource Groups", "GetGroupQuery"); try { #if DESKTOP return(client.GetGroupQuery(request)); #elif CORECLR return(client.GetGroupQueryAsync(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; } }