Interface Generated.PodAttachOptionsOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getContainer()
      The container in which to execute the command.
      com.google.protobuf.ByteString getContainerBytes()
      The container in which to execute the command.
      boolean getStderr()
      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 getStdout()
      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 hasContainer()
      The container in which to execute the command.
      boolean hasStderr()
      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 hasStdout()
      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 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.