Skip to content

Commit 87a350e

Browse files
Apply suggestions from code review
Co-authored-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Signed-off-by: Mustafa Arslan <mustafa.arslan1992@gmail.com>
1 parent f283821 commit 87a350e

File tree

1 file changed

+7
-7
lines changed
  • daprdocs/content/en/reference/components-reference/supported-bindings

1 file changed

+7
-7
lines changed

daprdocs/content/en/reference/components-reference/supported-bindings/sftp.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
type: docs
33
title: "SFTP binding spec"
4-
linkTitle: "Sftp"
4+
linkTitle: "SFTP"
55
description: "Detailed documentation on the Secure File Transfer Protocol (SFTP) binding component"
66
aliases:
77
- "/operations/components/setup-bindings/supported-bindings/sftp/"
88
---
99

1010
## Component format
1111

12-
To set up the SMTP binding, create a component of type `bindings.sftp`. See this guide on how to create and apply a binding configuration.
12+
To set up the SFTP binding, create a component of type `bindings.sftp`. See [this guide]({{ ref bindings-overview.md }}) on how to create and apply a binding configuration.
1313

1414
```yaml
1515
apiVersion: dapr.io/v1alpha1
@@ -45,7 +45,7 @@ spec:
4545
| Field | Required | Binding support | Details | Example |
4646
|--------------------|:--------:|------------|-----|---------|
4747
| `rootPath` | Y | Output | Root path for default working directory | `"/path"` |
48-
| `address` | Y | Output | Address of Sftp server | `"localhost:22"` |
48+
| `address` | Y | Output | Address of SFTP server | `"localhost:22"` |
4949
| `username` | Y | Output | Username for authentication | `"username"` |
5050
| `password` | N | Output | Password for username/password authentication | `"password"` |
5151
| `privateKey` | N | Output | Private key for public key authentication | <pre>"\|-<br>-----BEGIN OPENSSH PRIVATE KEY-----<br>*****************<br>-----END OPENSSH PRIVATE KEY-----"</pre> |
@@ -65,7 +65,7 @@ This component supports **output binding** with the following operations:
6565

6666
### Create file
6767

68-
To perform a create file operation, invoke the Sftp binding with a `POST` method and the following JSON body:
68+
To perform a create file operation, invoke the SFTP binding with a `POST` method and the following JSON body:
6969

7070
```json
7171
{
@@ -109,7 +109,7 @@ The response body contains the following JSON:
109109

110110
### Get file
111111

112-
To perform a get file operation, invoke the Sftp binding with a `POST` method and the following JSON body:
112+
To perform a get file operation, invoke the SFTP binding with a `POST` method and the following JSON body:
113113

114114
```json
115115
{
@@ -145,7 +145,7 @@ The response body contains the value stored in the file.
145145

146146
### List files
147147

148-
To perform a list files operation, invoke the Sftp binding with a `POST` method and the following JSON body:
148+
To perform a list files operation, invoke the SFTP binding with a `POST` method and the following JSON body:
149149

150150
```json
151151
{
@@ -189,7 +189,7 @@ The response is a JSON array of file names.
189189

190190
### Delete file
191191

192-
To perform a delete file operation, invoke the Sftp binding with a `POST` method and the following JSON body:
192+
To perform a delete file operation, invoke the SFTP binding with a `POST` method and the following JSON body:
193193

194194
```json
195195
{

0 commit comments

Comments
 (0)