/// <summary>Snippet for Insert</summary>
 public void Insert()
 {
     // Snippet: Insert(string, TargetSslProxy, CallSettings)
     // Create client
     TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.Create();
     // Initialize request argument(s)
     string         project = "";
     TargetSslProxy targetSslProxyResource = new TargetSslProxy();
     // Make the request
     Operation response = targetSslProxiesClient.Insert(project, targetSslProxyResource);
     // End snippet
 }
 /// <summary>Snippet for Insert</summary>
 public void InsertRequestObject()
 {
     // Snippet: Insert(InsertTargetSslProxyRequest, CallSettings)
     // Create client
     TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.Create();
     // Initialize request argument(s)
     InsertTargetSslProxyRequest request = new InsertTargetSslProxyRequest
     {
         RequestId = "",
         TargetSslProxyResource = new TargetSslProxy(),
         Project = "",
     };
     // Make the request
     Operation response = targetSslProxiesClient.Insert(request);
     // End snippet
 }