/// <summary>Snippet for Delete</summary>
        public void DeleteRequestObject()
        {
            // Snippet: Delete(DeleteGlobalAddressRequest, CallSettings)
            // Create client
            GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
            // Initialize request argument(s)
            DeleteGlobalAddressRequest request = new DeleteGlobalAddressRequest
            {
                RequestId = "",
                Project   = "",
                Address   = "",
            };
            // Make the request
            lro::Operation <Operation, Operation> response = globalAddressesClient.Delete(request);

            // Poll until the returned long-running operation is complete
            lro::Operation <Operation, Operation> completedResponse = response.PollUntilCompleted();
            // Retrieve the operation result
            Operation result = completedResponse.Result;

            // Or get the name of the operation
            string operationName = response.Name;
            // This name can be stored, then the long-running operation retrieved later by name
            lro::Operation <Operation, Operation> retrievedResponse = globalAddressesClient.PollOnceDelete(operationName);

            // Check if the retrieved long-running operation has completed
            if (retrievedResponse.IsCompleted)
            {
                // If it has completed, then access the result
                Operation retrievedResult = retrievedResponse.Result;
            }
            // End snippet
        }
        /// <summary>Snippet for InsertAsync</summary>
        public async Task InsertAsync()
        {
            // Snippet: InsertAsync(string, Address, CallSettings)
            // Additional: InsertAsync(string, Address, CancellationToken)
            // Create client
            GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();

            // Initialize request argument(s)
            string  project         = "";
            Address addressResource = new Address();
            // Make the request
            lro::Operation <Operation, Operation> response = await globalAddressesClient.InsertAsync(project, addressResource);

            // Poll until the returned long-running operation is complete
            lro::Operation <Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();

            // Retrieve the operation result
            Operation result = completedResponse.Result;

            // Or get the name of the operation
            string operationName = response.Name;
            // This name can be stored, then the long-running operation retrieved later by name
            lro::Operation <Operation, Operation> retrievedResponse = await globalAddressesClient.PollOnceInsertAsync(operationName);

            // Check if the retrieved long-running operation has completed
            if (retrievedResponse.IsCompleted)
            {
                // If it has completed, then access the result
                Operation retrievedResult = retrievedResponse.Result;
            }
            // End snippet
        }
Example #3
0
 /// <summary>Snippet for List</summary>
 public void List()
 {
     // Snippet: List(string, CallSettings)
     // Create client
     GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
     // Initialize request argument(s)
     string project = "";
     // Make the request
     AddressList response = globalAddressesClient.List(project);
     // End snippet
 }
Example #4
0
 /// <summary>Snippet for Delete</summary>
 public void Delete()
 {
     // Snippet: Delete(string, string, CallSettings)
     // Create client
     GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
     // Initialize request argument(s)
     string project = "";
     string address = "";
     // Make the request
     Operation response = globalAddressesClient.Delete(project, address);
     // End snippet
 }
Example #5
0
 /// <summary>Snippet for Insert</summary>
 public void Insert()
 {
     // Snippet: Insert(string, Address, CallSettings)
     // Create client
     GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
     // Initialize request argument(s)
     string  project         = "";
     Address addressResource = new Address();
     // Make the request
     Operation response = globalAddressesClient.Insert(project, addressResource);
     // End snippet
 }
        /// <summary>Snippet for ListAsync</summary>
        public async Task ListRequestObjectAsync()
        {
            // Snippet: ListAsync(ListGlobalAddressesRequest, CallSettings)
            // Create client
            GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();

            // Initialize request argument(s)
            ListGlobalAddressesRequest request = new ListGlobalAddressesRequest
            {
                OrderBy = "",
                Project = "",
                Filter  = "",
                ReturnPartialSuccess = false,
            };
            // Make the request
            PagedAsyncEnumerable <AddressList, Address> response = globalAddressesClient.ListAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((Address 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((AddressList page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Address 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 <Address> 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 (Address 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
        }
Example #7
0
        /// <summary>Snippet for ListAsync</summary>
        public async Task ListAsync()
        {
            // Snippet: ListAsync(string, CallSettings)
            // Additional: ListAsync(string, CancellationToken)
            // Create client
            GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();

            // Initialize request argument(s)
            string project = "";
            // Make the request
            AddressList response = await globalAddressesClient.ListAsync(project);

            // End snippet
        }
 /// <summary>Snippet for Get</summary>
 public void GetRequestObject()
 {
     // Snippet: Get(GetGlobalAddressRequest, CallSettings)
     // Create client
     GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
     // Initialize request argument(s)
     GetGlobalAddressRequest request = new GetGlobalAddressRequest
     {
         Project = "",
         Address = "",
     };
     // Make the request
     Address response = globalAddressesClient.Get(request);
     // End snippet
 }
Example #9
0
        /// <summary>Snippet for DeleteAsync</summary>
        public async Task DeleteAsync()
        {
            // Snippet: DeleteAsync(string, string, CallSettings)
            // Additional: DeleteAsync(string, string, CancellationToken)
            // Create client
            GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();

            // Initialize request argument(s)
            string project = "";
            string address = "";
            // Make the request
            Operation response = await globalAddressesClient.DeleteAsync(project, address);

            // End snippet
        }
Example #10
0
        /// <summary>Snippet for InsertAsync</summary>
        public async Task InsertAsync()
        {
            // Snippet: InsertAsync(string, Address, CallSettings)
            // Additional: InsertAsync(string, Address, CancellationToken)
            // Create client
            GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();

            // Initialize request argument(s)
            string  project         = "";
            Address addressResource = new Address();
            // Make the request
            Operation response = await globalAddressesClient.InsertAsync(project, addressResource);

            // End snippet
        }
Example #11
0
 /// <summary>Snippet for Delete</summary>
 public void DeleteRequestObject()
 {
     // Snippet: Delete(DeleteGlobalAddressRequest, CallSettings)
     // Create client
     GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
     // Initialize request argument(s)
     DeleteGlobalAddressRequest request = new DeleteGlobalAddressRequest
     {
         RequestId = "",
         Project   = "",
         Address   = "",
     };
     // Make the request
     Operation response = globalAddressesClient.Delete(request);
     // End snippet
 }
Example #12
0
 /// <summary>Snippet for Insert</summary>
 public void InsertRequestObject()
 {
     // Snippet: Insert(InsertGlobalAddressRequest, CallSettings)
     // Create client
     GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
     // Initialize request argument(s)
     InsertGlobalAddressRequest request = new InsertGlobalAddressRequest
     {
         RequestId       = "",
         Project         = "",
         AddressResource = new Address(),
     };
     // Make the request
     Operation response = globalAddressesClient.Insert(request);
     // End snippet
 }
        /// <summary>Snippet for GetAsync</summary>
        public async Task GetRequestObjectAsync()
        {
            // Snippet: GetAsync(GetGlobalAddressRequest, CallSettings)
            // Additional: GetAsync(GetGlobalAddressRequest, CancellationToken)
            // Create client
            GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();

            // Initialize request argument(s)
            GetGlobalAddressRequest request = new GetGlobalAddressRequest
            {
                Project = "",
                Address = "",
            };
            // Make the request
            Address response = await globalAddressesClient.GetAsync(request);

            // End snippet
        }
        /// <summary>Snippet for List</summary>
        public void List()
        {
            // Snippet: List(string, string, int?, CallSettings)
            // Create client
            GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
            // Initialize request argument(s)
            string project = "";
            // Make the request
            PagedEnumerable <AddressList, Address> response = globalAddressesClient.List(project);

            // Iterate over all response items, lazily performing RPCs as required
            foreach (Address 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 (AddressList page in response.AsRawResponses())
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Address 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 <Address> 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 (Address 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
        }
Example #15
0
        /// <summary>Snippet for DeleteAsync</summary>
        public async Task DeleteRequestObjectAsync()
        {
            // Snippet: DeleteAsync(DeleteGlobalAddressRequest, CallSettings)
            // Additional: DeleteAsync(DeleteGlobalAddressRequest, CancellationToken)
            // Create client
            GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();

            // Initialize request argument(s)
            DeleteGlobalAddressRequest request = new DeleteGlobalAddressRequest
            {
                RequestId = "",
                Project   = "",
                Address   = "",
            };
            // Make the request
            Operation response = await globalAddressesClient.DeleteAsync(request);

            // End snippet
        }
Example #16
0
 /// <summary>Snippet for List</summary>
 public void ListRequestObject()
 {
     // Snippet: List(ListGlobalAddressesRequest, CallSettings)
     // Create client
     GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
     // Initialize request argument(s)
     ListGlobalAddressesRequest request = new ListGlobalAddressesRequest
     {
         PageToken            = "",
         MaxResults           = 0U,
         OrderBy              = "",
         Project              = "",
         Filter               = "",
         ReturnPartialSuccess = false,
     };
     // Make the request
     AddressList response = globalAddressesClient.List(request);
     // End snippet
 }
Example #17
0
        /// <summary>Snippet for InsertAsync</summary>
        public async Task InsertRequestObjectAsync()
        {
            // Snippet: InsertAsync(InsertGlobalAddressRequest, CallSettings)
            // Additional: InsertAsync(InsertGlobalAddressRequest, CancellationToken)
            // Create client
            GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();

            // Initialize request argument(s)
            InsertGlobalAddressRequest request = new InsertGlobalAddressRequest
            {
                RequestId       = "",
                Project         = "",
                AddressResource = new Address(),
            };
            // Make the request
            Operation response = await globalAddressesClient.InsertAsync(request);

            // End snippet
        }
Example #18
0
        /// <summary>Snippet for ListAsync</summary>
        public async Task ListRequestObjectAsync()
        {
            // Snippet: ListAsync(ListGlobalAddressesRequest, CallSettings)
            // Additional: ListAsync(ListGlobalAddressesRequest, CancellationToken)
            // Create client
            GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();

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

            // End snippet
        }