/// <summary>Snippet for Get</summary> public void Get() { // Snippet: Get(string, string, CallSettings) // Create client TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.Create(); // Initialize request argument(s) string project = ""; string targetSslProxy = ""; // Make the request TargetSslProxy response = targetSslProxiesClient.Get(project, targetSslProxy); // End snippet }
/// <summary>Snippet for Get</summary> public void GetRequestObject() { // Snippet: Get(GetTargetSslProxyRequest, CallSettings) // Create client TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.Create(); // Initialize request argument(s) GetTargetSslProxyRequest request = new GetTargetSslProxyRequest { Project = "", TargetSslProxy = "", }; // Make the request TargetSslProxy response = targetSslProxiesClient.Get(request); // End snippet }