private async Task DeleteProduct(ProductSearchClient client, string productId)
        {
            var request = new DeleteProductRequest
            {
                ProductName = new ProductName(this.options.Value.ProjectId, this.options.Value.LocationId, productId),
            };

            await client.DeleteProductAsync(request);
        }