Esempio n. 1
0
 /// <summary>Snippet for Delete</summary>
 public void Delete()
 {
     // Snippet: Delete(string, string, string, CallSettings)
     // Create client
     NodeGroupsClient nodeGroupsClient = NodeGroupsClient.Create();
     // Initialize request argument(s)
     string project   = "";
     string zone      = "";
     string nodeGroup = "";
     // Make the request
     Operation response = nodeGroupsClient.Delete(project, zone, nodeGroup);
     // End snippet
 }
Esempio n. 2
0
 /// <summary>Snippet for Delete</summary>
 public void DeleteRequestObject()
 {
     // Snippet: Delete(DeleteNodeGroupRequest, CallSettings)
     // Create client
     NodeGroupsClient nodeGroupsClient = NodeGroupsClient.Create();
     // Initialize request argument(s)
     DeleteNodeGroupRequest request = new DeleteNodeGroupRequest
     {
         Zone      = "",
         RequestId = "",
         NodeGroup = "",
         Project   = "",
     };
     // Make the request
     Operation response = nodeGroupsClient.Delete(request);
     // End snippet
 }