java.lang.Object
org.graylog2.rest.models.system.inputs.responses.InputSummary

public abstract class InputSummary extends Object
  • Constructor Details

    • InputSummary

      public InputSummary()
  • Method Details

    • title

      public abstract String title()
    • global

      public abstract Boolean global()
    • name

      public abstract String name()
    • contentPack

      @Nullable public abstract String contentPack()
    • inputId

      public abstract String inputId()
    • createdAt

      public abstract org.joda.time.DateTime createdAt()
    • type

      public abstract String type()
    • creatorUserId

      public abstract String creatorUserId()
    • attributes

      public abstract Map<String,Object> attributes()
    • staticFields

      public abstract Map<String,String> staticFields()
    • node

      @Nullable public abstract String node()
    • create

      public static InputSummary create(String title, Boolean global, String name, @Nullable String contentPack, String inputId, org.joda.time.DateTime createdAt, String type, String creatorUserId, Map<String,Object> attributes, Map<String,String> staticFields, @Nullable String node)