You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`method` (String) The HTTP Method for the request. Allowed methods are a subset of methods defined in [RFC7231](https://datatracker.ietf.org/doc/html/rfc7231#section-4.3) namely, `GET`, `HEAD`, and `POST`. `POST` support is only intended for read-only URLs, such as submitting a search.
149
149
-`request_body` (String) The request body as a string.
150
150
-`request_headers` (Map of String) A map of request header field names and values.
151
+
-`request_timeout` (Number) The request timeout in milliseconds.
152
+
-`retry` (Block, Optional) Retry request configuration. (see [below for nested schema](#nestedblock--retry))
151
153
152
154
### Read-Only
153
155
154
156
-`body` (String, Deprecated) The response body returned as a string. **NOTE**: This is deprecated, use `response_body` instead.
155
157
-`id` (String) The URL used for the request.
156
158
-`response_body` (String) The response body returned as a string.
157
159
-`response_headers` (Map of String) A map of response header field names and values. Duplicate headers are concatenated according to [RFC2616](https://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2).
158
-
-`status_code` (Number) The HTTP response status code.
160
+
-`status_code` (Number) The HTTP response status code.
161
+
162
+
<aid="nestedblock--retry"></a>
163
+
### Nested Schema for `retry`
164
+
165
+
Optional:
166
+
167
+
-`attempts` (Number) The number of retry attempts.
168
+
-`max_delay` (Number) The maximum delay between retry requests in milliseconds.
169
+
-`min_delay` (Number) The minimum delay between retry requests in milliseconds.
0 commit comments