public class AttachOptions extends BaseHttpRequestOptions
Modifier and Type | Class and Description |
---|---|
static class |
AttachOptions.Builder |
formParameters, headers, pathSuffix, payload, queryParameters
Constructor and Description |
---|
AttachOptions() |
Modifier and Type | Method and Description |
---|---|
AttachOptions |
logs(boolean logs) |
AttachOptions |
stderr(boolean stderr) |
AttachOptions |
stdin(boolean stdin) |
AttachOptions |
stdout(boolean stdout) |
AttachOptions |
stream(boolean stream) |
buildFormParameters, buildPathSuffix, buildQueryParameters, buildRequestHeaders, buildStringPayload, equals, getFirstFormOrNull, getFirstHeaderOrNull, getFirstQueryOrNull, hashCode, replaceHeader, toString
public AttachOptions stream(boolean stream)
stream
- When TTY is enabled, the stream is the raw data from the process PTY and client's stdin.
When TTY is disabled, the stream is multiplexed to separate stdout and stderr.public AttachOptions logs(boolean logs)
logs
- require logs to be attached. Default false.public AttachOptions stdin(boolean stdin)
stdin
- if stream=true, attach to stdin. Default falsepublic AttachOptions stdout(boolean stdout)
stdout
- if logs=true, return stdout log, if stream=true, attach to stdout. Default falsepublic AttachOptions stderr(boolean stderr)
stderr
- if logs=true, return stderr log, if stream=true, attach to stderr. Default falseCopyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.