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
// OutboundHTTPRequest represents an HTTP request to be sent from workflow node to the gateway.
27
36
typeOutboundHTTPRequeststruct {
28
37
URLstring`json:"url"`// URL to query, only http and https protocols are supported.
@@ -35,6 +44,7 @@ type OutboundHTTPRequest struct {
35
44
Body []byte`json:"body,omitempty"`// HTTP request body
36
45
TimeoutMsuint32`json:"timeoutMs,omitempty"`// Timeout in milliseconds
37
46
CacheSettingsCacheSettings`json:"cacheSettings"`// Best-effort cache control for the request
47
+
Mtls*MtlsAuth`json:"mtlsAuth,omitempty"`// Client certificate for mTLS requests
38
48
39
49
// Maximum number of bytes to read from the response body. If the gateway max response size is smaller than this value, the gateway max response size will be used.
0 commit comments