Interface PythonConfigOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    PythonConfig, PythonConfig.Builder

    public interface PythonConfigOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getStartupArgs()
      An argument that will be provided to the script specified in startup_script.
      com.google.protobuf.ByteString getStartupArgsBytes()
      An argument that will be provided to the script specified in startup_script.
      String getStartupScript()
      The path to a Python script that will be executed using execfile before the runtime executes user code.
      com.google.protobuf.ByteString getStartupScriptBytes()
      The path to a Python script that will be executed using execfile before the runtime executes user code.
      boolean hasStartupArgs()
      An argument that will be provided to the script specified in startup_script.
      boolean hasStartupScript()
      The path to a Python script that will be executed using execfile before the runtime executes user code.
      • 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

      • hasStartupScript

        boolean hasStartupScript()
         The path to a Python script that will be executed using execfile before
         the runtime executes user code. Meant for tools such as debuggers.
         
        optional string startup_script = 1;
        Returns:
        Whether the startupScript field is set.
      • getStartupScript

        String getStartupScript()
         The path to a Python script that will be executed using execfile before
         the runtime executes user code. Meant for tools such as debuggers.
         
        optional string startup_script = 1;
        Returns:
        The startupScript.
      • getStartupScriptBytes

        com.google.protobuf.ByteString getStartupScriptBytes()
         The path to a Python script that will be executed using execfile before
         the runtime executes user code. Meant for tools such as debuggers.
         
        optional string startup_script = 1;
        Returns:
        The bytes for startupScript.
      • hasStartupArgs

        boolean hasStartupArgs()
         An argument that will be provided to the script specified in
         startup_script.
         
        optional string startup_args = 2;
        Returns:
        Whether the startupArgs field is set.
      • getStartupArgs

        String getStartupArgs()
         An argument that will be provided to the script specified in
         startup_script.
         
        optional string startup_args = 2;
        Returns:
        The startupArgs.
      • getStartupArgsBytes

        com.google.protobuf.ByteString getStartupArgsBytes()
         An argument that will be provided to the script specified in
         startup_script.
         
        optional string startup_args = 2;
        Returns:
        The bytes for startupArgs.