Package io.kubernetes.client.proto
Interface V1.PodAttachOptionsOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
V1.PodAttachOptions
,V1.PodAttachOptions.Builder
- Enclosing class:
- V1
public static interface V1.PodAttachOptionsOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionThe container in which to execute the command.com.google.protobuf.ByteString
The container in which to execute the command.boolean
Stderr if true indicates that stderr is to be redirected for the attach call.boolean
getStdin()
Stdin if true, redirects the standard input stream of the pod for this call.boolean
Stdout if true indicates that stdout is to be redirected for the attach call.boolean
getTty()
TTY if true indicates that a tty will be allocated for the attach call.boolean
The container in which to execute the command.boolean
Stderr if true indicates that stderr is to be redirected for the attach call.boolean
hasStdin()
Stdin if true, redirects the standard input stream of the pod for this call.boolean
Stdout if true indicates that stdout is to be redirected for the attach call.boolean
hasTty()
TTY if true indicates that a tty will be allocated for the attach call.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
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;
-
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;
-
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;
-
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;
-
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;
-
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;
-
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;
-
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;
-
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;
-
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;
-
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;
-