protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListLogsRequest request;

            try
            {
                request = new ListLogsRequest
                {
                    LogGroupId     = LogGroupId,
                    LogType        = LogType,
                    SourceService  = SourceService,
                    SourceResource = SourceResource,
                    DisplayName    = DisplayName,
                    LifecycleState = LifecycleState,
                    Page           = Page,
                    Limit          = Limit,
                    SortBy         = SortBy,
                    SortOrder      = SortOrder,
                    OpcRequestId   = OpcRequestId
                };
                IEnumerable <ListLogsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.Items, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
 /// <summary>
 /// Creates a new enumerable which will iterate over the responses received from the ListLogs operation. This enumerable
 /// will fetch more data from the server as needed.
 /// </summary>
 /// <param name="request">The request object containing the details to send</param>
 /// <param name="retryConfiguration">The configuration for retrying, may be null</param>
 /// <param name="cancellationToken">The cancellation token object</param>
 /// <returns>The enumerator, which supports a simple iteration over a collection of a specified type</returns>
 public IEnumerable <ListLogsResponse> ListLogsResponseEnumerator(ListLogsRequest request, Common.Retry.RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
 {
     return(new Common.Utils.ResponseEnumerable <ListLogsRequest, ListLogsResponse>(
                response => response.OpcNextPage,
                input =>
     {
         if (!string.IsNullOrEmpty(input))
         {
             request.Page = input;
         }
         return request;
     },
                request => client.ListLogs(request, retryConfiguration, cancellationToken)
                ));
 }
        private static async Task ListLogs(LoggingManagementClient client, string logGroup)
        {
            ListLogsRequest listLogsRequest = new ListLogsRequest
            {
                LogGroupId = logGroup
            };
            // Pass the log group whose logs you want to list
            ListLogsResponse response = await client.ListLogs(listLogsRequest);

            logger.Info("List Logs");
            logger.Info("=============");
            foreach (LogSummary logSummary in response.Items)
            {
                logger.Info($"Log Display Name: {logSummary.DisplayName}, Log Type:{logSummary.LogType}");
            }
        }
        /// <summary>Snippet for ListLogsAsync</summary>
        public async Task ListLogsAsync_RequestObject()
        {
            // Snippet: ListLogsAsync(ListLogsRequest,CallSettings)
            // Create client
            LoggingServiceV2Client loggingServiceV2Client = await LoggingServiceV2Client.CreateAsync();

            // Initialize request argument(s)
            ListLogsRequest request = new ListLogsRequest
            {
                ParentAsParentNameOneof = ParentNameOneof.From(new ProjectName("[PROJECT]")),
            };
            // Make the request
            PagedAsyncEnumerable <ListLogsResponse, string> response =
                loggingServiceV2Client.ListLogsAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((string item) =>
            {
                // Do something with each item
                Console.WriteLine(item);
            });

            // Or iterate over pages (of server-defined size), performing one RPC per page
            await response.AsRawResponses().ForEachAsync((ListLogsResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (string item in page)
                {
                    Console.WriteLine(item);
                }
            });

            // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
            int           pageSize   = 10;
            Page <string> singlePage = await response.ReadPageAsync(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (string item in singlePage)
            {
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }
示例#5
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListLogsRequest request;

            try
            {
                request = new ListLogsRequest
                {
                    LogGroupId     = LogGroupId,
                    LogType        = LogType,
                    SourceService  = SourceService,
                    SourceResource = SourceResource,
                    DisplayName    = DisplayName,
                    LifecycleState = LifecycleState,
                    Page           = Page,
                    Limit          = Limit,
                    SortBy         = SortBy,
                    SortOrder      = SortOrder,
                    OpcRequestId   = OpcRequestId
                };
                IEnumerable <ListLogsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.Items, true);
                }
                if (!ParameterSetName.Equals(AllPageSet) && !ParameterSetName.Equals(LimitSet) && response.OpcNextPage != null)
                {
                    WriteWarning("This operation supports pagination and not all resources were returned. Re-run using the -All option to auto paginate and list all resources.");
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }