diff --git a/docs/components/connectors/protocol/graphql.md b/docs/components/connectors/protocol/graphql.md index e9a21af727b..f73c627bd19 100644 --- a/docs/components/connectors/protocol/graphql.md +++ b/docs/components/connectors/protocol/graphql.md @@ -177,10 +177,13 @@ Variables: } ``` -### Connection Timeout +### Network communication timeouts -To set connection timeout in your request, set it in seconds in the **Connection Timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response mapping diff --git a/docs/components/connectors/protocol/rest.md b/docs/components/connectors/protocol/rest.md index be7fcd686fa..90aea6605a1 100644 --- a/docs/components/connectors/protocol/rest.md +++ b/docs/components/connectors/protocol/rest.md @@ -7,7 +7,7 @@ description: Make a request to a REST API and use the response in the next steps :::caution If you use the REST Connector, ensure you do not have any instance variable named in the list below: -- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds` +- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds`, `readTimeoutInSeconds`, `writeTimeoutInSeconds` ::: @@ -167,10 +167,13 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Connection timeout +### Network communication timeouts -To set connection timeout in your request, set it in seconds in the **Connection timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response diff --git a/versioned_docs/version-8.1/components/connectors/protocol/graphql.md b/versioned_docs/version-8.1/components/connectors/protocol/graphql.md index e9a21af727b..f73c627bd19 100644 --- a/versioned_docs/version-8.1/components/connectors/protocol/graphql.md +++ b/versioned_docs/version-8.1/components/connectors/protocol/graphql.md @@ -177,10 +177,13 @@ Variables: } ``` -### Connection Timeout +### Network communication timeouts -To set connection timeout in your request, set it in seconds in the **Connection Timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response mapping diff --git a/versioned_docs/version-8.1/components/connectors/protocol/rest.md b/versioned_docs/version-8.1/components/connectors/protocol/rest.md index 28d699fdced..a4c989125f3 100644 --- a/versioned_docs/version-8.1/components/connectors/protocol/rest.md +++ b/versioned_docs/version-8.1/components/connectors/protocol/rest.md @@ -7,7 +7,7 @@ description: Make a request to a REST API and use the response in the next steps :::caution If you use the REST Connector, ensure you do not have any instance variable named in the list below: -- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds` +- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds`, `readTimeoutInSeconds`, `writeTimeoutInSeconds` ::: @@ -167,10 +167,13 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Connection timeout +### Network communication timeouts -To set connection timeout in your request, set it in seconds in the **Connection timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response diff --git a/versioned_docs/version-8.2/components/connectors/protocol/graphql.md b/versioned_docs/version-8.2/components/connectors/protocol/graphql.md index e9a21af727b..f73c627bd19 100644 --- a/versioned_docs/version-8.2/components/connectors/protocol/graphql.md +++ b/versioned_docs/version-8.2/components/connectors/protocol/graphql.md @@ -177,10 +177,13 @@ Variables: } ``` -### Connection Timeout +### Network communication timeouts -To set connection timeout in your request, set it in seconds in the **Connection Timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response mapping diff --git a/versioned_docs/version-8.2/components/connectors/protocol/rest.md b/versioned_docs/version-8.2/components/connectors/protocol/rest.md index be7fcd686fa..90aea6605a1 100644 --- a/versioned_docs/version-8.2/components/connectors/protocol/rest.md +++ b/versioned_docs/version-8.2/components/connectors/protocol/rest.md @@ -7,7 +7,7 @@ description: Make a request to a REST API and use the response in the next steps :::caution If you use the REST Connector, ensure you do not have any instance variable named in the list below: -- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds` +- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds`, `readTimeoutInSeconds`, `writeTimeoutInSeconds` ::: @@ -167,10 +167,13 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Connection timeout +### Network communication timeouts -To set connection timeout in your request, set it in seconds in the **Connection timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response diff --git a/versioned_docs/version-8.3/components/connectors/protocol/graphql.md b/versioned_docs/version-8.3/components/connectors/protocol/graphql.md index e9a21af727b..f73c627bd19 100644 --- a/versioned_docs/version-8.3/components/connectors/protocol/graphql.md +++ b/versioned_docs/version-8.3/components/connectors/protocol/graphql.md @@ -177,10 +177,13 @@ Variables: } ``` -### Connection Timeout +### Network communication timeouts -To set connection timeout in your request, set it in seconds in the **Connection Timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response mapping diff --git a/versioned_docs/version-8.3/components/connectors/protocol/rest.md b/versioned_docs/version-8.3/components/connectors/protocol/rest.md index be7fcd686fa..90aea6605a1 100644 --- a/versioned_docs/version-8.3/components/connectors/protocol/rest.md +++ b/versioned_docs/version-8.3/components/connectors/protocol/rest.md @@ -7,7 +7,7 @@ description: Make a request to a REST API and use the response in the next steps :::caution If you use the REST Connector, ensure you do not have any instance variable named in the list below: -- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds` +- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds`, `readTimeoutInSeconds`, `writeTimeoutInSeconds` ::: @@ -167,10 +167,13 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Connection timeout +### Network communication timeouts -To set connection timeout in your request, set it in seconds in the **Connection timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response diff --git a/versioned_docs/version-8.4/components/connectors/protocol/graphql.md b/versioned_docs/version-8.4/components/connectors/protocol/graphql.md index e9a21af727b..f73c627bd19 100644 --- a/versioned_docs/version-8.4/components/connectors/protocol/graphql.md +++ b/versioned_docs/version-8.4/components/connectors/protocol/graphql.md @@ -177,10 +177,13 @@ Variables: } ``` -### Connection Timeout +### Network communication timeouts -To set connection timeout in your request, set it in seconds in the **Connection Timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response mapping diff --git a/versioned_docs/version-8.4/components/connectors/protocol/rest.md b/versioned_docs/version-8.4/components/connectors/protocol/rest.md index be7fcd686fa..90aea6605a1 100644 --- a/versioned_docs/version-8.4/components/connectors/protocol/rest.md +++ b/versioned_docs/version-8.4/components/connectors/protocol/rest.md @@ -7,7 +7,7 @@ description: Make a request to a REST API and use the response in the next steps :::caution If you use the REST Connector, ensure you do not have any instance variable named in the list below: -- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds` +- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds`, `readTimeoutInSeconds`, `writeTimeoutInSeconds` ::: @@ -167,10 +167,13 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Connection timeout +### Network communication timeouts -To set connection timeout in your request, set it in seconds in the **Connection timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response