public void InspectorPreviewAgents()
        {
            #region preview-agents-1481067101888

            var response = client.PreviewAgents(new PreviewAgentsRequest
            {
                MaxResults       = 123,
                PreviewAgentsArn = "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq"
            });

            List <AgentPreview> agentPreviews = response.AgentPreviews;
            string nextToken = response.NextToken;

            #endregion
        }
 IEnumerable<PreviewAgentsResponse> IPaginator<PreviewAgentsResponse>.Paginate()
 {
     if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
     {
         throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
     }
     var nextToken = _request.NextToken;
     PreviewAgentsResponse response;
     do
     {
         _request.NextToken = nextToken;
         response = _client.PreviewAgents(_request);
         nextToken = response.NextToken;
         yield return response;
     }
     while (nextToken != null);
 }
Пример #3
0
        IEnumerable <PreviewAgentsResponse> IPaginator <PreviewAgentsResponse> .Paginate()
        {
            if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
            {
                throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
            }
            PaginatorUtils.SetUserAgentAdditionOnRequest(_request);
            var nextToken = _request.NextToken;
            PreviewAgentsResponse response;

            do
            {
                _request.NextToken = nextToken;
                response           = _client.PreviewAgents(_request);
                nextToken          = response.NextToken;
                yield return(response);
            }while (!string.IsNullOrEmpty(nextToken));
        }
Пример #4
0
 private Amazon.Inspector.Model.PreviewAgentsResponse CallAWSServiceOperation(IAmazonInspector client, Amazon.Inspector.Model.PreviewAgentsRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Inspector", "PreviewAgents");
     try
     {
         #if DESKTOP
         return(client.PreviewAgents(request));
         #elif CORECLR
         return(client.PreviewAgentsAsync(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;
     }
 }