public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.Inspector2.Model.ListDelegatedAdminAccountsRequest(); if (cmdletContext.MaxResult != null) { request.MaxResults = cmdletContext.MaxResult.Value; } if (cmdletContext.NextToken != null) { request.NextToken = cmdletContext.NextToken; } 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.Inspector2.Model.ListDelegatedAdminAccountsResponse CallAWSServiceOperation(IAmazonInspector2 client, Amazon.Inspector2.Model.ListDelegatedAdminAccountsRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Inspector2", "ListDelegatedAdminAccounts"); try { #if DESKTOP return(client.ListDelegatedAdminAccounts(request)); #elif CORECLR return(client.ListDelegatedAdminAccountsAsync(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; } }
/// <summary> /// Paginator for ListDelegatedAdminAccounts operation ///</summary> public IListDelegatedAdminAccountsPaginator ListDelegatedAdminAccounts(ListDelegatedAdminAccountsRequest request) { return(new ListDelegatedAdminAccountsPaginator(this.client, request)); }
internal ListDelegatedAdminAccountsPaginator(IAmazonInspector2 client, ListDelegatedAdminAccountsRequest request) { this._client = client; this._request = request; }