Package io.kubernetes.client.proto
Interface V1.PodExecOptionsOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
V1.PodExecOptions
,V1.PodExecOptions.Builder
- Enclosing class:
- V1
public static interface V1.PodExecOptionsOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetCommand
(int index) Command is the remote command to execute.com.google.protobuf.ByteString
getCommandBytes
(int index) Command is the remote command to execute.int
Command is the remote command to execute.Command is the remote command to execute.Container in which to execute the command.com.google.protobuf.ByteString
Container in which to execute the command.boolean
Redirect the standard error stream of the pod for this call.boolean
getStdin()
Redirect the standard input stream of the pod for this call.boolean
Redirect the standard output stream of the pod for this call.boolean
getTty()
TTY if true indicates that a tty will be allocated for the exec call.boolean
Container in which to execute the command.boolean
Redirect the standard error stream of the pod for this call.boolean
hasStdin()
Redirect the standard input stream of the pod for this call.boolean
Redirect the standard output stream of the pod for this call.boolean
hasTty()
TTY if true indicates that a tty will be allocated for the exec 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()Redirect the standard input stream of the pod for this call. Defaults to false. +optional
optional bool stdin = 1;
-
getStdin
boolean getStdin()Redirect the standard input stream of the pod for this call. Defaults to false. +optional
optional bool stdin = 1;
-
hasStdout
boolean hasStdout()Redirect the standard output stream of the pod for this call. +optional
optional bool stdout = 2;
-
getStdout
boolean getStdout()Redirect the standard output stream of the pod for this call. +optional
optional bool stdout = 2;
-
hasStderr
boolean hasStderr()Redirect the standard error stream of the pod for this call. +optional
optional bool stderr = 3;
-
getStderr
boolean getStderr()Redirect the standard error stream of the pod for this call. +optional
optional bool stderr = 3;
-
hasTty
boolean hasTty()TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. +optional
optional bool tty = 4;
-
getTty
boolean getTty()TTY if true indicates that a tty will be allocated for the exec call. Defaults to false. +optional
optional bool tty = 4;
-
hasContainer
boolean hasContainer()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()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()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;
-
getCommandList
Command is the remote command to execute. argv array. Not executed within a shell.
repeated string command = 6;
-
getCommandCount
int getCommandCount()Command is the remote command to execute. argv array. Not executed within a shell.
repeated string command = 6;
-
getCommand
Command is the remote command to execute. argv array. Not executed within a shell.
repeated string command = 6;
-
getCommandBytes
com.google.protobuf.ByteString getCommandBytes(int index) Command is the remote command to execute. argv array. Not executed within a shell.
repeated string command = 6;
-