Example #1
0
        IEnumerable <ListOperationsResponse> IPaginator <ListOperationsResponse> .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;
            ListOperationsResponse response;

            do
            {
                _request.NextToken = nextToken;
                response           = _client.ListOperations(_request);
                nextToken          = response.NextToken;
                yield return(response);
            }while (nextToken != null);
        }
        public void ServiceDiscoveryListOperations()
        {
            #region listoperations-example-1590117354396

            var response = client.ListOperations(new ListOperationsRequest
            {
                Filters = new List <OperationFilter> {
                    new OperationFilter {
                        Condition = "IN",
                        Name      = "STATUS",
                        Values    = new List <string> {
                            "PENDING",
                            "SUCCESS"
                        }
                    }
                }
            });

            List <OperationSummary> operations = response.Operations;

            #endregion
        }
Example #3
0
 private Amazon.ServiceDiscovery.Model.ListOperationsResponse CallAWSServiceOperation(IAmazonServiceDiscovery client, Amazon.ServiceDiscovery.Model.ListOperationsRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Cloud Map", "ListOperations");
     try
     {
         #if DESKTOP
         return(client.ListOperations(request));
         #elif CORECLR
         return(client.ListOperationsAsync(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;
     }
 }