Package k8s.io.api.core.v1
Interface Generated.PodAttachOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.PodAttachOptions,Generated.PodAttachOptions.Builder
- Enclosing class:
- Generated
public static interface Generated.PodAttachOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetContainer()The container in which to execute the command.com.google.protobuf.ByteStringgetContainerBytes()The container in which to execute the command.booleangetStderr()Stderr if true indicates that stderr is to be redirected for the attach call.booleangetStdin()Stdin if true, redirects the standard input stream of the pod for this call.booleangetStdout()Stdout if true indicates that stdout is to be redirected for the attach call.booleangetTty()TTY if true indicates that a tty will be allocated for the attach call.booleanhasContainer()The container in which to execute the command.booleanhasStderr()Stderr if true indicates that stderr is to be redirected for the attach call.booleanhasStdin()Stdin if true, redirects the standard input stream of the pod for this call.booleanhasStdout()Stdout if true indicates that stdout is to be redirected for the attach call.booleanhasTty()TTY if true indicates that a tty will be allocated for the attach call.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStdin
boolean hasStdin()
Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false. +optional
optional bool stdin = 1;- Returns:
- Whether the stdin field is set.
-
getStdin
boolean getStdin()
Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false. +optional
optional bool stdin = 1;- Returns:
- The stdin.
-
hasStdout
boolean hasStdout()
Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true. +optional
optional bool stdout = 2;- Returns:
- Whether the stdout field is set.
-
getStdout
boolean getStdout()
Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true. +optional
optional bool stdout = 2;- Returns:
- The stdout.
-
hasStderr
boolean hasStderr()
Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. +optional
optional bool stderr = 3;- Returns:
- Whether the stderr field is set.
-
getStderr
boolean getStderr()
Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true. +optional
optional bool stderr = 3;- Returns:
- The stderr.
-
hasTty
boolean hasTty()
TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false. +optional
optional bool tty = 4;- Returns:
- Whether the tty field is set.
-
getTty
boolean getTty()
TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false. +optional
optional bool tty = 4;- Returns:
- The tty.
-
hasContainer
boolean hasContainer()
The container in which to execute the command. Defaults to only container if there is only one container in the pod. +optional
optional string container = 5;- Returns:
- Whether the container field is set.
-
getContainer
String getContainer()
The container in which to execute the command. Defaults to only container if there is only one container in the pod. +optional
optional string container = 5;- Returns:
- The container.
-
getContainerBytes
com.google.protobuf.ByteString getContainerBytes()
The container in which to execute the command. Defaults to only container if there is only one container in the pod. +optional
optional string container = 5;- Returns:
- The bytes for container.
-
-