/// <summary>Snippet for AggregatedList</summary>
 public void AggregatedList()
 {
     // Snippet: AggregatedList(string, CallSettings)
     // Create client
     GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create();
     // Initialize request argument(s)
     string project = "";
     // Make the request
     OperationAggregatedList response = globalOperationsClient.AggregatedList(project);
     // End snippet
 }
Exemple #2
0
 /// <summary>Snippet for Wait</summary>
 public void Wait()
 {
     // Snippet: Wait(string, string, CallSettings)
     // Create client
     GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create();
     // Initialize request argument(s)
     string project   = "";
     string operation = "";
     // Make the request
     Operation response = globalOperationsClient.Wait(project, operation);
     // End snippet
 }
Exemple #3
0
        /// <summary>Snippet for AggregatedListAsync</summary>
        public async Task AggregatedListRequestObjectAsync()
        {
            // Snippet: AggregatedListAsync(AggregatedListGlobalOperationsRequest, CallSettings)
            // Create client
            GlobalOperationsClient globalOperationsClient = await GlobalOperationsClient.CreateAsync();

            // Initialize request argument(s)
            AggregatedListGlobalOperationsRequest request = new AggregatedListGlobalOperationsRequest
            {
                OrderBy              = "",
                Project              = "",
                Filter               = "",
                IncludeAllScopes     = false,
                ReturnPartialSuccess = false,
            };
            // Make the request
            PagedAsyncEnumerable <OperationAggregatedList, KeyValuePair <string, OperationsScopedList> > response = globalOperationsClient.AggregatedListAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((KeyValuePair <string, OperationsScopedList> 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((OperationAggregatedList page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (KeyValuePair <string, OperationsScopedList> 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 <KeyValuePair <string, OperationsScopedList> > 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 (KeyValuePair <string, OperationsScopedList> 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
        }
Exemple #4
0
    public static async Task <Operation> PollUntilCompletedAsync(this Operation operation, string projectId)
    {
        GlobalOperationsClient operationsClient = await GlobalOperationsClient.CreateAsync();

        GetGlobalOperationRequest pollRequest = new GetGlobalOperationRequest
        {
            Operation = operation.Name,
            Project   = projectId,
        };

        async Task <Operation> Poller() => await operationsClient.GetAsync(pollRequest);

        return(await operation.PollUntilCompletedAsync(Poller));
    }
Exemple #5
0
        /// <summary>Snippet for List</summary>
        public void ListRequestObject()
        {
            // Snippet: List(ListGlobalOperationsRequest, CallSettings)
            // Create client
            GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create();
            // Initialize request argument(s)
            ListGlobalOperationsRequest request = new ListGlobalOperationsRequest
            {
                OrderBy = "",
                Project = "",
                Filter  = "",
                ReturnPartialSuccess = false,
            };
            // Make the request
            PagedEnumerable <OperationList, Operation> response = globalOperationsClient.List(request);

            // Iterate over all response items, lazily performing RPCs as required
            foreach (Operation item in response)
            {
                // Do something with each item
                Console.WriteLine(item);
            }

            // Or iterate over pages (of server-defined size), performing one RPC per page
            foreach (OperationList page in response.AsRawResponses())
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Operation 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 <Operation> singlePage = response.ReadPage(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (Operation 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
        }
        /// <summary>Snippet for AggregatedListAsync</summary>
        public async Task AggregatedListAsync()
        {
            // Snippet: AggregatedListAsync(string, CallSettings)
            // Additional: AggregatedListAsync(string, CancellationToken)
            // Create client
            GlobalOperationsClient globalOperationsClient = await GlobalOperationsClient.CreateAsync();

            // Initialize request argument(s)
            string project = "";
            // Make the request
            OperationAggregatedList response = await globalOperationsClient.AggregatedListAsync(project);

            // End snippet
        }
Exemple #7
0
        /// <summary>Snippet for WaitAsync</summary>
        public async Task WaitAsync()
        {
            // Snippet: WaitAsync(string, string, CallSettings)
            // Additional: WaitAsync(string, string, CancellationToken)
            // Create client
            GlobalOperationsClient globalOperationsClient = await GlobalOperationsClient.CreateAsync();

            // Initialize request argument(s)
            string project   = "";
            string operation = "";
            // Make the request
            Operation response = await globalOperationsClient.WaitAsync(project, operation);

            // End snippet
        }
Exemple #8
0
 /// <summary>Snippet for Wait</summary>
 public void WaitRequestObject()
 {
     // Snippet: Wait(WaitGlobalOperationRequest, CallSettings)
     // Create client
     GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create();
     // Initialize request argument(s)
     WaitGlobalOperationRequest request = new WaitGlobalOperationRequest
     {
         Operation = "",
         Project   = "",
     };
     // Make the request
     Operation response = globalOperationsClient.Wait(request);
     // End snippet
 }
Exemple #9
0
 /// <summary>Snippet for Delete</summary>
 public void DeleteRequestObject()
 {
     // Snippet: Delete(DeleteGlobalOperationRequest, CallSettings)
     // Create client
     GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create();
     // Initialize request argument(s)
     DeleteGlobalOperationRequest request = new DeleteGlobalOperationRequest
     {
         Operation = "",
         Project   = "",
     };
     // Make the request
     DeleteGlobalOperationResponse response = globalOperationsClient.Delete(request);
     // End snippet
 }
Exemple #10
0
        /// <summary>Snippet for ListAsync</summary>
        public async Task ListAsync()
        {
            // Snippet: ListAsync(string, string, int?, CallSettings)
            // Create client
            GlobalOperationsClient globalOperationsClient = await GlobalOperationsClient.CreateAsync();

            // Initialize request argument(s)
            string project = "";
            // Make the request
            PagedAsyncEnumerable <OperationList, Operation> response = globalOperationsClient.ListAsync(project);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((Operation 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((OperationList page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Operation 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 <Operation> 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 (Operation 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
        }
Exemple #11
0
        /// <summary>Snippet for WaitAsync</summary>
        public async Task WaitRequestObjectAsync()
        {
            // Snippet: WaitAsync(WaitGlobalOperationRequest, CallSettings)
            // Additional: WaitAsync(WaitGlobalOperationRequest, CancellationToken)
            // Create client
            GlobalOperationsClient globalOperationsClient = await GlobalOperationsClient.CreateAsync();

            // Initialize request argument(s)
            WaitGlobalOperationRequest request = new WaitGlobalOperationRequest
            {
                Operation = "",
                Project   = "",
            };
            // Make the request
            Operation response = await globalOperationsClient.WaitAsync(request);

            // End snippet
        }
Exemple #12
0
        /// <summary>Snippet for AggregatedList</summary>
        public void AggregatedList()
        {
            // Snippet: AggregatedList(string, string, int?, CallSettings)
            // Create client
            GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create();
            // Initialize request argument(s)
            string project = "";
            // Make the request
            PagedEnumerable <OperationAggregatedList, KeyValuePair <string, OperationsScopedList> > response = globalOperationsClient.AggregatedList(project);

            // Iterate over all response items, lazily performing RPCs as required
            foreach (KeyValuePair <string, OperationsScopedList> item in response)
            {
                // Do something with each item
                Console.WriteLine(item);
            }

            // Or iterate over pages (of server-defined size), performing one RPC per page
            foreach (OperationAggregatedList page in response.AsRawResponses())
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (KeyValuePair <string, OperationsScopedList> 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 <KeyValuePair <string, OperationsScopedList> > singlePage = response.ReadPage(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (KeyValuePair <string, OperationsScopedList> 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
        }
 /// <summary>Snippet for List</summary>
 public void ListRequestObject()
 {
     // Snippet: List(ListGlobalOperationsRequest, CallSettings)
     // Create client
     GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create();
     // Initialize request argument(s)
     ListGlobalOperationsRequest request = new ListGlobalOperationsRequest
     {
         PageToken            = "",
         MaxResults           = 0U,
         OrderBy              = "",
         Project              = "",
         Filter               = "",
         ReturnPartialSuccess = false,
     };
     // Make the request
     OperationList response = globalOperationsClient.List(request);
     // End snippet
 }
        /// <summary>Snippet for ListAsync</summary>
        public async Task ListRequestObjectAsync()
        {
            // Snippet: ListAsync(ListGlobalOperationsRequest, CallSettings)
            // Additional: ListAsync(ListGlobalOperationsRequest, CancellationToken)
            // Create client
            GlobalOperationsClient globalOperationsClient = await GlobalOperationsClient.CreateAsync();

            // Initialize request argument(s)
            ListGlobalOperationsRequest request = new ListGlobalOperationsRequest
            {
                PageToken            = "",
                MaxResults           = 0U,
                OrderBy              = "",
                Project              = "",
                Filter               = "",
                ReturnPartialSuccess = false,
            };
            // Make the request
            OperationList response = await globalOperationsClient.ListAsync(request);

            // End snippet
        }
Exemple #15
0
 private Func <Operation> CreatePoller(Operation operation)
 {
     if (operation.HasRegion && !operation.HasZone)
     {
         RegionOperationsClient    client  = RegionOperationsClient.Create();
         GetRegionOperationRequest request = new GetRegionOperationRequest
         {
             Operation = operation.Name,
             Region    = Region,
             Project   = ProjectId,
         };
         return(() => client.Get(request));
     }
     else if (operation.HasZone && !operation.HasRegion)
     {
         ZoneOperationsClient    client  = ZoneOperationsClient.Create();
         GetZoneOperationRequest request = new GetZoneOperationRequest
         {
             Operation = operation.Name,
             Zone      = Zone,
             Project   = ProjectId,
         };
         return(() => client.Get(request));
     }
     else if (!operation.HasZone && !operation.HasRegion)
     {
         GlobalOperationsClient    client  = GlobalOperationsClient.Create();
         GetGlobalOperationRequest request = new GetGlobalOperationRequest
         {
             Operation = operation.Name,
             Project   = ProjectId,
         };
         return(() => client.Get(request));
     }
     throw new ArgumentException($"Unable to determine operation type for {operation}");
 }