class documentation
class RequestKwargsForOperation(TypedDict): (source)
Known subclasses: nebius.aio.request_kwargs.RequestKwargs
Encapsulates the general keyword arguments for all requests, including operation
wait requests, where some parameters are overridden or renamed. The full set of
parameters is available in RequestKwargs.
| Instance Variable | auth |
Optional dictionary forwarded to the authenticator when performing authorization. See the authenticator documentation for provider-specific keys. |
| Instance Variable | auth |
Timeout budget (seconds) reserved for authorization flows plus the request execution. When provided the total authorization + request time will not exceed this value. Default is nebius.aio.request.DEFAULT_AUTH_TIMEOUT... |
| Instance Variable | compression |
Optional gRPC compression setting for the RPC. |
| Instance Variable | credentials |
Optional gRPC CallCredentials to use for the RPC invocation. |
| Instance Variable | metadata |
Optional initial gRPC metadata to attach to the call. |
Optional dictionary forwarded to the authenticator when performing authorization. See the authenticator documentation for provider-specific keys.
Timeout budget (seconds) reserved for authorization
flows plus the request execution. When provided the total authorization
+ request time will not exceed this value.
Default is nebius.aio.request.DEFAULT_AUTH_TIMEOUT.
Provide None for infinite timeout.