/// <summary>Snippet for InsertAsync</summary>
        public async Task InsertAsync()
        {
            // Snippet: InsertAsync(string, TargetSslProxy, CallSettings)
            // Additional: InsertAsync(string, TargetSslProxy, CancellationToken)
            // Create client
            TargetSslProxiesClient targetSslProxiesClient = await TargetSslProxiesClient.CreateAsync();

            // Initialize request argument(s)
            string         project = "";
            TargetSslProxy targetSslProxyResource = new TargetSslProxy();
            // Make the request
            Operation response = await targetSslProxiesClient.InsertAsync(project, targetSslProxyResource);

            // End snippet
        }
        /// <summary>Snippet for InsertAsync</summary>
        public async Task InsertRequestObjectAsync()
        {
            // Snippet: InsertAsync(InsertTargetSslProxyRequest, CallSettings)
            // Additional: InsertAsync(InsertTargetSslProxyRequest, CancellationToken)
            // Create client
            TargetSslProxiesClient targetSslProxiesClient = await TargetSslProxiesClient.CreateAsync();

            // Initialize request argument(s)
            InsertTargetSslProxyRequest request = new InsertTargetSslProxyRequest
            {
                RequestId = "",
                TargetSslProxyResource = new TargetSslProxy(),
                Project = "",
            };
            // Make the request
            Operation response = await targetSslProxiesClient.InsertAsync(request);

            // End snippet
        }