Ejemplo n.º 1
0
        /// <summary>Snippet for SetLabels</summary>
        public void SetLabels()
        {
            // Snippet: SetLabels(string, string, GlobalSetLabelsRequest, CallSettings)
            // Create client
            ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
            // Initialize request argument(s)
            string project  = "";
            string resource = "";
            GlobalSetLabelsRequest globalSetLabelsRequestResource = new GlobalSetLabelsRequest();
            // Make the request
            lro::Operation <Operation, Operation> response = externalVpnGatewaysClient.SetLabels(project, resource, globalSetLabelsRequestResource);

            // 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 = externalVpnGatewaysClient.PollOnceSetLabels(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
        }
Ejemplo n.º 2
0
        /// <summary>Snippet for Delete</summary>
        public void DeleteRequestObject()
        {
            // Snippet: Delete(DeleteExternalVpnGatewayRequest, CallSettings)
            // Create client
            ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
            // Initialize request argument(s)
            DeleteExternalVpnGatewayRequest request = new DeleteExternalVpnGatewayRequest
            {
                RequestId          = "",
                ExternalVpnGateway = "",
                Project            = "",
            };
            // Make the request
            lro::Operation <Operation, Operation> response = externalVpnGatewaysClient.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 = externalVpnGatewaysClient.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
        }
Ejemplo n.º 3
0
 /// <summary>Snippet for List</summary>
 public void List()
 {
     // Snippet: List(string, CallSettings)
     // Create client
     ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
     // Initialize request argument(s)
     string project = "";
     // Make the request
     ExternalVpnGatewayList response = externalVpnGatewaysClient.List(project);
     // End snippet
 }
 /// <summary>Snippet for Delete</summary>
 public void Delete()
 {
     // Snippet: Delete(string, string, CallSettings)
     // Create client
     ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
     // Initialize request argument(s)
     string project            = "";
     string externalVpnGateway = "";
     // Make the request
     Operation response = externalVpnGatewaysClient.Delete(project, externalVpnGateway);
     // End snippet
 }
 /// <summary>Snippet for Insert</summary>
 public void Insert()
 {
     // Snippet: Insert(string, ExternalVpnGateway, CallSettings)
     // Create client
     ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
     // Initialize request argument(s)
     string             project = "";
     ExternalVpnGateway externalVpnGatewayResource = new ExternalVpnGateway();
     // Make the request
     Operation response = externalVpnGatewaysClient.Insert(project, externalVpnGatewayResource);
     // End snippet
 }
 /// <summary>Snippet for TestIamPermissions</summary>
 public void TestIamPermissions()
 {
     // Snippet: TestIamPermissions(string, string, TestPermissionsRequest, CallSettings)
     // Create client
     ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
     // Initialize request argument(s)
     string project  = "";
     string resource = "";
     TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
     // Make the request
     TestPermissionsResponse response = externalVpnGatewaysClient.TestIamPermissions(project, resource, testPermissionsRequestResource);
     // End snippet
 }
 /// <summary>Snippet for SetLabels</summary>
 public void SetLabels()
 {
     // Snippet: SetLabels(string, string, GlobalSetLabelsRequest, CallSettings)
     // Create client
     ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
     // Initialize request argument(s)
     string project  = "";
     string resource = "";
     GlobalSetLabelsRequest globalSetLabelsRequestResource = new GlobalSetLabelsRequest();
     // Make the request
     Operation response = externalVpnGatewaysClient.SetLabels(project, resource, globalSetLabelsRequestResource);
     // End snippet
 }
        /// <summary>Snippet for List</summary>
        public void ListRequestObject()
        {
            // Snippet: List(ListExternalVpnGatewaysRequest, CallSettings)
            // Create client
            ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
            // Initialize request argument(s)
            ListExternalVpnGatewaysRequest request = new ListExternalVpnGatewaysRequest
            {
                OrderBy = "",
                Project = "",
                Filter  = "",
                ReturnPartialSuccess = false,
            };
            // Make the request
            PagedEnumerable <ExternalVpnGatewayList, ExternalVpnGateway> response = externalVpnGatewaysClient.List(request);

            // Iterate over all response items, lazily performing RPCs as required
            foreach (ExternalVpnGateway 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 (ExternalVpnGatewayList page in response.AsRawResponses())
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (ExternalVpnGateway 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 <ExternalVpnGateway> 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 (ExternalVpnGateway 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 Get</summary>
 public void GetRequestObject()
 {
     // Snippet: Get(GetExternalVpnGatewayRequest, CallSettings)
     // Create client
     ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
     // Initialize request argument(s)
     GetExternalVpnGatewayRequest request = new GetExternalVpnGatewayRequest
     {
         ExternalVpnGateway = "",
         Project            = "",
     };
     // Make the request
     ExternalVpnGateway response = externalVpnGatewaysClient.Get(request);
     // End snippet
 }
 /// <summary>Snippet for TestIamPermissions</summary>
 public void TestIamPermissionsRequestObject()
 {
     // Snippet: TestIamPermissions(TestIamPermissionsExternalVpnGatewayRequest, CallSettings)
     // Create client
     ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
     // Initialize request argument(s)
     TestIamPermissionsExternalVpnGatewayRequest request = new TestIamPermissionsExternalVpnGatewayRequest
     {
         Resource = "",
         Project  = "",
         TestPermissionsRequestResource = new TestPermissionsRequest(),
     };
     // Make the request
     TestPermissionsResponse response = externalVpnGatewaysClient.TestIamPermissions(request);
     // End snippet
 }
 /// <summary>Snippet for SetLabels</summary>
 public void SetLabelsRequestObject()
 {
     // Snippet: SetLabels(SetLabelsExternalVpnGatewayRequest, CallSettings)
     // Create client
     ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
     // Initialize request argument(s)
     SetLabelsExternalVpnGatewayRequest request = new SetLabelsExternalVpnGatewayRequest
     {
         Resource = "",
         Project  = "",
         GlobalSetLabelsRequestResource = new GlobalSetLabelsRequest(),
     };
     // Make the request
     Operation response = externalVpnGatewaysClient.SetLabels(request);
     // End snippet
 }
 /// <summary>Snippet for Delete</summary>
 public void DeleteRequestObject()
 {
     // Snippet: Delete(DeleteExternalVpnGatewayRequest, CallSettings)
     // Create client
     ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
     // Initialize request argument(s)
     DeleteExternalVpnGatewayRequest request = new DeleteExternalVpnGatewayRequest
     {
         RequestId          = "",
         ExternalVpnGateway = "",
         Project            = "",
     };
     // Make the request
     Operation response = externalVpnGatewaysClient.Delete(request);
     // End snippet
 }
 /// <summary>Snippet for Insert</summary>
 public void InsertRequestObject()
 {
     // Snippet: Insert(InsertExternalVpnGatewayRequest, CallSettings)
     // Create client
     ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
     // Initialize request argument(s)
     InsertExternalVpnGatewayRequest request = new InsertExternalVpnGatewayRequest
     {
         RequestId = "",
         Project   = "",
         ExternalVpnGatewayResource = new ExternalVpnGateway(),
     };
     // Make the request
     Operation response = externalVpnGatewaysClient.Insert(request);
     // End snippet
 }
Ejemplo n.º 14
0
 /// <summary>Snippet for List</summary>
 public void ListRequestObject()
 {
     // Snippet: List(ListExternalVpnGatewaysRequest, CallSettings)
     // Create client
     ExternalVpnGatewaysClient externalVpnGatewaysClient = ExternalVpnGatewaysClient.Create();
     // Initialize request argument(s)
     ListExternalVpnGatewaysRequest request = new ListExternalVpnGatewaysRequest
     {
         PageToken            = "",
         MaxResults           = 0U,
         OrderBy              = "",
         Project              = "",
         Filter               = "",
         ReturnPartialSuccess = false,
     };
     // Make the request
     ExternalVpnGatewayList response = externalVpnGatewaysClient.List(request);
     // End snippet
 }