private static async Task <List <Location> > GetLocationsAsync(GroupSummary group, string apiBaseUrl, IdServerResourceOwnerClientSettings idServerResourceOwnerClientSettings)
        {
            Console.WriteLine($"Retrieving Locations for {group.Name}...");
            var locationsClient = new LocationsClient(apiBaseUrl, idServerResourceOwnerClientSettings);
            var locations       = await locationsClient.GetAllAsync(group.GroupId);

            return(locations);
        }
 /// <summary>Snippet for GetLocation</summary>
 public void GetLocationRequestObject()
 {
     // Snippet: GetLocation(GetLocationRequest, CallSettings)
     // Create client
     LocationsClient locationsClient = LocationsClient.Create();
     // Initialize request argument(s)
     GetLocationRequest request = new GetLocationRequest {
         Name = "",
     };
     // Make the request
     Location response = locationsClient.GetLocation(request);
     // End snippet
 }
        /// <summary>Snippet for GetLocationAsync</summary>
        public async Task GetLocationRequestObjectAsync()
        {
            // Snippet: GetLocationAsync(GetLocationRequest, CallSettings)
            // Additional: GetLocationAsync(GetLocationRequest, CancellationToken)
            // Create client
            LocationsClient locationsClient = await LocationsClient.CreateAsync();

            // Initialize request argument(s)
            GetLocationRequest request = new GetLocationRequest {
                Name = "",
            };
            // Make the request
            Location response = await locationsClient.GetLocationAsync(request);

            // End snippet
        }
        /// <summary>Snippet for ListLocationsAsync</summary>
        public async Task ListLocationsRequestObjectAsync()
        {
            // Snippet: ListLocationsAsync(ListLocationsRequest, CallSettings)
            // Create client
            LocationsClient locationsClient = await LocationsClient.CreateAsync();

            // Initialize request argument(s)
            ListLocationsRequest request = new ListLocationsRequest {
                Name = "", Filter = "",
            };
            // Make the request
            PagedAsyncEnumerable <ListLocationsResponse, Location> response = locationsClient.ListLocationsAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((Location 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((ListLocationsResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Location item in page)
                {
                    // Do something with each item
                    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 <Location> 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 (Location item in singlePage)
            {
                // Do something with each item
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }