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
The table below documents additional metadata the SDK may include in the `User-Agent` header of a request. These take the form of `md/[name]#[value]` in the request.
6
+
7
+
|Name|Value(s)|Description|
8
+
|---|---|---|
9
+
|`rb`||The request body implementation. This includes `ContentStreamProvider` for sync clients, and `AsyncRequestBody` for async clients.|
10
+
||`f`|"File". The body implementation reads from a file.|
11
+
||`b`|"Bytes". The body implementation reads from a byte array.|
12
+
||`c`|"String" The body implementation reads from a string. |
13
+
||`s`|"Stream". The body implementation reads from an `InputStream`.|
14
+
||`p`|"Publisher". The body implementation reads from an `SdkPublisher`.|
15
+
||`u`|"unknown"|
16
+
|`rt`||The response transformer implementation. This includes `ResponseTransformer` for sync clients, and `AsyncResponseTransformer` for async clients.|
17
+
||`f`|"File". The response transformer writes the response body to a file.|
18
+
||`b`|"Bytes". The response transformer writes the response body to a byte array.|
19
+
||`s`|"Stream". The response transformer adapts the response body to an `InputStream`.|
20
+
||`p`|"Publisher". The response transformer adapts the response body to an `SdkPublisher`.|
0 commit comments