From c76aa7fba9b7b95757f4615a29cb339686ecb678 Mon Sep 17 00:00:00 2001 From: Marc Duiker Date: Mon, 1 Sep 2025 11:11:52 +0000 Subject: [PATCH] Fix missing tab headers Signed-off-by: Marc Duiker --- .../supported-bindings/blobstorage.md | 28 ++++++++-------- .../supported-bindings/gcpbucket.md | 20 ++++++------ .../supported-bindings/huawei-obs.md | 24 +++++++------- .../supported-bindings/localstorage.md | 24 +++++++------- .../supported-bindings/openai.md | 4 +-- .../supported-bindings/s3.md | 32 +++++++++---------- .../supported-bindings/sftp.md | 16 +++++----- 7 files changed, 74 insertions(+), 74 deletions(-) diff --git a/daprdocs/content/en/reference/components-reference/supported-bindings/blobstorage.md b/daprdocs/content/en/reference/components-reference/supported-bindings/blobstorage.md index 419ebeb82..d02a8a94d 100644 --- a/daprdocs/content/en/reference/components-reference/supported-bindings/blobstorage.md +++ b/daprdocs/content/en/reference/components-reference/supported-bindings/blobstorage.md @@ -86,14 +86,14 @@ To perform a create blob operation, invoke the Azure Blob Storage binding with a ##### Save text to a random generated UUID blob {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} On Windows, utilize cmd prompt (PowerShell has different escaping mechanism) ```bash curl -d "{ \"operation\": \"create\", \"data\": \"Hello World\" }" http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "Hello World" }' \ http://localhost:/v1.0/bindings/ @@ -106,14 +106,14 @@ To perform a create blob operation, invoke the Azure Blob Storage binding with a {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"create\", \"data\": \"Hello World\", \"metadata\": { \"blobName\": \"my-test-file.txt\" } }" \ http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "Hello World", "metadata": { "blobName": "my-test-file.txt" } }' \ http://localhost:/v1.0/bindings/ @@ -150,13 +150,13 @@ Then you can upload it as you would normally: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"create\", \"data\": \"YOUR_BASE_64_CONTENT\", \"metadata\": { \"blobName\": \"my-test-file.jpg\" } }" http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "YOUR_BASE_64_CONTENT", "metadata": { "blobName": "my-test-file.jpg" } }' \ http://localhost:/v1.0/bindings/ @@ -199,13 +199,13 @@ The metadata parameters are: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"get\", \"metadata\": { \"blobName\": \"myblob\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "get", "metadata": { "blobName": "myblob" }}' \ http://localhost:/v1.0/bindings/ @@ -247,13 +247,13 @@ The metadata parameters are: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"delete\", \"metadata\": { \"blobName\": \"myblob\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "delete", "metadata": { "blobName": "myblob" }}' \ http://localhost:/v1.0/bindings/ @@ -266,13 +266,13 @@ The metadata parameters are: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"delete\", \"metadata\": { \"blobName\": \"myblob\", \"deleteSnapshots\": \"only\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "delete", "metadata": { "blobName": "myblob", "deleteSnapshots": "only" }}' \ http://localhost:/v1.0/bindings/ @@ -285,13 +285,13 @@ The metadata parameters are: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"delete\", \"metadata\": { \"blobName\": \"myblob\", \"deleteSnapshots\": \"include\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "delete", "metadata": { "blobName": "myblob", "deleteSnapshots": "include" }}' \ http://localhost:/v1.0/bindings/ diff --git a/daprdocs/content/en/reference/components-reference/supported-bindings/gcpbucket.md b/daprdocs/content/en/reference/components-reference/supported-bindings/gcpbucket.md index be5bdcac7..cdab25972 100644 --- a/daprdocs/content/en/reference/components-reference/supported-bindings/gcpbucket.md +++ b/daprdocs/content/en/reference/components-reference/supported-bindings/gcpbucket.md @@ -110,14 +110,14 @@ The metadata parameters are: ##### Save text to a random generated UUID file {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} On Windows, utilize cmd prompt (PowerShell has different escaping mechanism) ```bash curl -d "{ \"operation\": \"create\", \"data\": \"Hello World\" }" http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "Hello World" }' \ http://localhost:/v1.0/bindings/ @@ -130,14 +130,14 @@ The metadata parameters are: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"create\", \"data\": \"Hello World\", \"metadata\": { \"key\": \"my-test-file.txt\" } }" \ http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "Hello World", "metadata": { "key": "my-test-file.txt" } }' \ http://localhost:/v1.0/bindings/ @@ -155,13 +155,13 @@ Then you can upload it as you would normally: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"create\", \"data\": \"(YOUR_FILE_CONTENTS)\", \"metadata\": { \"key\": \"my-test-file.jpg\" } }" http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "$(cat my-test-file.jpg)", "metadata": { "key": "my-test-file.jpg" } }' \ http://localhost:/v1.0/bindings/ @@ -202,13 +202,13 @@ The metadata parameters are: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"get\", \"metadata\": { \"key\": \"my-test-file.txt\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "get", "metadata": { "key": "my-test-file.txt" }}' \ http://localhost:/v1.0/bindings/ @@ -312,13 +312,13 @@ The metadata parameters are: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"delete\", \"metadata\": { \"key\": \"my-test-file.txt\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "delete", "metadata": { "key": "my-test-file.txt" }}' \ http://localhost:/v1.0/bindings/ diff --git a/daprdocs/content/en/reference/components-reference/supported-bindings/huawei-obs.md b/daprdocs/content/en/reference/components-reference/supported-bindings/huawei-obs.md index 9517743c2..1fd95ad50 100644 --- a/daprdocs/content/en/reference/components-reference/supported-bindings/huawei-obs.md +++ b/daprdocs/content/en/reference/components-reference/supported-bindings/huawei-obs.md @@ -73,14 +73,14 @@ To perform a create operation, invoke the Huawei OBS binding with a `POST` metho ##### Save text to a random generated UUID file {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} On Windows, utilize cmd prompt (PowerShell has different escaping mechanism) ```bash curl -d "{ \"operation\": \"create\", \"data\": \"Hello World\" }" http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "Hello World" }' \ http://localhost:/v1.0/bindings/ @@ -93,14 +93,14 @@ To perform a create operation, invoke the Huawei OBS binding with a `POST` metho {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"create\", \"data\": \"Hello World\", \"metadata\": { \"key\": \"my-test-file.txt\" } }" \ http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "Hello World", "metadata": { "key": "my-test-file.txt" } }' \ http://localhost:/v1.0/bindings/ @@ -135,14 +135,14 @@ To upload a binary file (for example, _.jpg_, _.zip_), invoke the Huawei OBS bin {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"upload\", \"data\": { \"sourceFile\": \".\my-test-file.jpg\" }, \"metadata\": { \"key\": \"my-test-file.jpg\" } }" \ http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "upload", "data": { "sourceFile": "./my-test-file.jpg" }, "metadata": { "key": "my-test-file.jpg" } }' \ http://localhost:/v1.0/bindings/ @@ -176,13 +176,13 @@ The metadata parameters are: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"get\", \"metadata\": { \"key\": \"my-test-file.txt\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "get", "metadata": { "key": "my-test-file.txt" }}' \ http://localhost:/v1.0/bindings/ @@ -220,13 +220,13 @@ The metadata parameters are: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"delete\", \"metadata\": { \"key\": \"my-test-file.txt\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "delete", "metadata": { "key": "my-test-file.txt" }}' \ http://localhost:/v1.0/bindings/ @@ -267,13 +267,13 @@ The data parameters are: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"list\", \"data\": { \"maxResults\": 5, \"prefix\": \"dapr-\", \"marker\": \"obstest\", \"delimiter\": \"jpg\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "list", "data": { "maxResults": 5, "prefix": "dapr-", "marker": "obstest", "delimiter": "jpg" }}' \ http://localhost:/v1.0/bindings/ diff --git a/daprdocs/content/en/reference/components-reference/supported-bindings/localstorage.md b/daprdocs/content/en/reference/components-reference/supported-bindings/localstorage.md index c68e6eaec..1776c8361 100644 --- a/daprdocs/content/en/reference/components-reference/supported-bindings/localstorage.md +++ b/daprdocs/content/en/reference/components-reference/supported-bindings/localstorage.md @@ -59,14 +59,14 @@ To perform a create file operation, invoke the Local Storage binding with a `POS ##### Save text to a random generated UUID file {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} On Windows, utilize cmd prompt (PowerShell has different escaping mechanism) ```bash curl -d "{ \"operation\": \"create\", \"data\": \"Hello World\" }" http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "Hello World" }' \ http://localhost:/v1.0/bindings/ @@ -79,14 +79,14 @@ To perform a create file operation, invoke the Local Storage binding with a `POS {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"create\", \"data\": \"Hello World\", \"metadata\": { \"fileName\": \"my-test-file.txt\" } }" \ http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "Hello World", "metadata": { "fileName": "my-test-file.txt" } }' \ http://localhost:/v1.0/bindings/ @@ -102,13 +102,13 @@ To upload a file, encode it as Base64. The binding should automatically detect t {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"create\", \"data\": \"YOUR_BASE_64_CONTENT\", \"metadata\": { \"fileName\": \"my-test-file.jpg\" } }" http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "YOUR_BASE_64_CONTENT", "metadata": { "fileName": "my-test-file.jpg" } }' \ http://localhost:/v1.0/bindings/ @@ -145,13 +145,13 @@ To perform a get file operation, invoke the Local Storage binding with a `POST` {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"get\", \"metadata\": { \"fileName\": \"myfile\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "get", "metadata": { "fileName": "myfile" }}' \ http://localhost:/v1.0/bindings/ @@ -189,13 +189,13 @@ If you only want to list the files beneath a particular directory below the `roo {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"list\", \"metadata\": { \"fileName\": \"my/cool/directory\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "list", "metadata": { "fileName": "my/cool/directory" }}' \ http://localhost:/v1.0/bindings/ @@ -225,13 +225,13 @@ To perform a delete file operation, invoke the Local Storage binding with a `POS {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"delete\", \"metadata\": { \"fileName\": \"myfile\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "delete", "metadata": { "fileName": "myfile" }}' \ http://localhost:/v1.0/bindings/ diff --git a/daprdocs/content/en/reference/components-reference/supported-bindings/openai.md b/daprdocs/content/en/reference/components-reference/supported-bindings/openai.md index a3d864ebc..6849f2490 100644 --- a/daprdocs/content/en/reference/components-reference/supported-bindings/openai.md +++ b/daprdocs/content/en/reference/components-reference/supported-bindings/openai.md @@ -103,7 +103,7 @@ Read more about the importance and usage of these parameters in the [Azure OpenA #### Examples {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "data": {"deploymentId: "my-model" , "prompt": "A dog is ", "maxTokens":15}, "operation": "completion" }' \ http://localhost:/v1.0/bindings/ @@ -176,7 +176,7 @@ Each message is of the form: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "data": { diff --git a/daprdocs/content/en/reference/components-reference/supported-bindings/s3.md b/daprdocs/content/en/reference/components-reference/supported-bindings/s3.md index f87ab4bcc..e91231dbe 100644 --- a/daprdocs/content/en/reference/components-reference/supported-bindings/s3.md +++ b/daprdocs/content/en/reference/components-reference/supported-bindings/s3.md @@ -190,14 +190,14 @@ Valid values for `presignTTL` are [Go duration strings](https://pkg.go.dev/maze. {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"create\", \"data\": \"Hello World\", \"metadata\": { \"presignTTL\": \"15m\" } }" \ http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "Hello World", "metadata": { "presignTTL": "15m" } }' \ http://localhost:/v1.0/bindings/ @@ -222,14 +222,14 @@ The response body contains the following example JSON: ##### Save text to a random generated UUID file {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} On Windows, utilize cmd prompt (PowerShell has different escaping mechanism) ```bash curl -d "{ \"operation\": \"create\", \"data\": \"Hello World\" }" http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "Hello World" }' \ http://localhost:/v1.0/bindings/ @@ -242,14 +242,14 @@ The response body contains the following example JSON: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"create\", \"data\": \"Hello World\", \"metadata\": { \"key\": \"my-test-file.txt\" } }" \ http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "Hello World", "metadata": { "key": "my-test-file.txt" } }' \ http://localhost:/v1.0/bindings/ @@ -293,13 +293,13 @@ Then you can upload it as you would normally: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"create\", \"data\": \"YOUR_BASE_64_CONTENT\", \"metadata\": { \"key\": \"my-test-file.jpg\" } }" http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "YOUR_BASE_64_CONTENT", "metadata": { "key": "my-test-file.jpg" } }' \ http://localhost:/v1.0/bindings/ @@ -313,13 +313,13 @@ To upload a file from a supplied path (relative or absolute), use the `filepath` {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"create\", \"metadata\": { \"filePath\": \"my-test-file.txt\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "metadata": { "filePath": "my-test-file.txt" }}' \ http://localhost:/v1.0/bindings/ @@ -346,14 +346,14 @@ Valid values for `presignTTL` are [Go duration strings](https://pkg.go.dev/maze. {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"presign\", \"metadata\": { \"presignTTL\": \"15m\", \"key\": \"my-test-file.txt\" } }" \ http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "presign", "metadata": { "presignTTL": "15m", "key": "my-test-file.txt" } }' \ http://localhost:/v1.0/bindings/ @@ -393,13 +393,13 @@ The metadata parameters are: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"get\", \"metadata\": { \"key\": \"my-test-file.txt\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "get", "metadata": { "key": "my-test-file.txt" }}' \ http://localhost:/v1.0/bindings/ @@ -437,13 +437,13 @@ The metadata parameters are: {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"delete\", \"metadata\": { \"key\": \"my-test-file.txt\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "delete", "metadata": { "key": "my-test-file.txt" }}' \ http://localhost:/v1.0/bindings/ diff --git a/daprdocs/content/en/reference/components-reference/supported-bindings/sftp.md b/daprdocs/content/en/reference/components-reference/supported-bindings/sftp.md index 9a6cdfa0e..30093376b 100644 --- a/daprdocs/content/en/reference/components-reference/supported-bindings/sftp.md +++ b/daprdocs/content/en/reference/components-reference/supported-bindings/sftp.md @@ -81,13 +81,13 @@ To perform a create file operation, invoke the SFTP binding with a `POST` method {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d "{ \"operation\": \"create\", \"data\": \"YOUR_BASE_64_CONTENT\", \"metadata\": { \"fileName\": \"my-test-file.jpg\" } }" http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "create", "data": "YOUR_BASE_64_CONTENT", "metadata": { "fileName": "my-test-file.jpg" } }' \ http://localhost:/v1.0/bindings/ @@ -124,13 +124,13 @@ To perform a get file operation, invoke the SFTP binding with a `POST` method an {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"get\", \"metadata\": { \"fileName\": \"filename\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "get", "metadata": { "fileName": "filename" }}' \ http://localhost:/v1.0/bindings/ @@ -168,13 +168,13 @@ If you only want to list the files beneath a particular directory below the `roo {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"list\", \"metadata\": { \"fileName\": \"my/cool/directory\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "list", "metadata": { "fileName": "my/cool/directory" }}' \ http://localhost:/v1.0/bindings/ @@ -204,13 +204,13 @@ To perform a delete file operation, invoke the SFTP binding with a `POST` method {{< tabpane text=true >}} - {{% tab %}} + {{% tab "Windows" %}} ```bash curl -d '{ \"operation\": \"delete\", \"metadata\": { \"fileName\": \"myfile\" }}' http://localhost:/v1.0/bindings/ ``` {{% /tab %}} - {{% tab %}} + {{% tab "Linux" %}} ```bash curl -d '{ "operation": "delete", "metadata": { "fileName": "myfile" }}' \ http://localhost:/v1.0/bindings/