Interface RuntimeConfig

  • All Superinterfaces:
    Config

    public interface RuntimeConfig
    extends Config
    Base Runtime configuration interface. Provide different implementations for each runtime type that you want to configure.
    • Field Detail

      • RUNTIME_NAME

        static final String RUNTIME_NAME
        Standard attribute name for referencing or defining a runtime. Pipeline inputs that wants to refer to an already registered runtime, or wants to create a runtime during pipeline execution should use this parameter for holding the runtime name.
        See Also:
        Constant Field Values
    • Method Detail

      • getRuntimeName

        default String getRuntimeName()
        Gets the human readable name for the runtime within the provider. The runtime name must be unique within the provider. When no runtime name is provided, the by default name for the generated Runtime will be the RuntimeId.getId() value. @see RuntimeId
        Returns:
        the runtime name.