Interface ScriptInfoOrBuilder

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

@Generated public interface ScriptInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    com.google.protobuf.Timestamp
    Timestamp when the script was first created.
    com.google.protobuf.TimestampOrBuilder
    Timestamp when the script was first created.
    Optional description of what the script does.
    com.google.protobuf.ByteString
    Optional description of what the script does.
    Unique identifier for this script.
    com.google.protobuf.ByteString
    Unique identifier for this script.
    The instance this script belongs to.
    com.google.protobuf.ByteString
    The instance this script belongs to.
    Human-readable name for the script.
    com.google.protobuf.ByteString
    Human-readable name for the script.
    boolean
    Whether this script is paused (not running).
    com.google.protobuf.Timestamp
    Timestamp when the script was last modified.
    com.google.protobuf.TimestampOrBuilder
    Timestamp when the script was last modified.
    boolean
    Timestamp when the script was first created.
    boolean
    Timestamp when the script was last modified.

    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

    • getId

      String getId()
      Unique identifier for this script.
      Format: UUID string.
      
      string id = 1;
      Returns:
      The id.
    • getIdBytes

      com.google.protobuf.ByteString getIdBytes()
      Unique identifier for this script.
      Format: UUID string.
      
      string id = 1;
      Returns:
      The bytes for id.
    • getName

      String getName()
      Human-readable name for the script.
      
      string name = 2;
      Returns:
      The name.
    • getNameBytes

      com.google.protobuf.ByteString getNameBytes()
      Human-readable name for the script.
      
      string name = 2;
      Returns:
      The bytes for name.
    • getDescription

      String getDescription()
      Optional description of what the script does.
      
      string description = 3;
      Returns:
      The description.
    • getDescriptionBytes

      com.google.protobuf.ByteString getDescriptionBytes()
      Optional description of what the script does.
      
      string description = 3;
      Returns:
      The bytes for description.
    • getInstanceId

      String getInstanceId()
      The instance this script belongs to.
      Format: UUID string.
      
      string instance_id = 5;
      Returns:
      The instanceId.
    • getInstanceIdBytes

      com.google.protobuf.ByteString getInstanceIdBytes()
      The instance this script belongs to.
      Format: UUID string.
      
      string instance_id = 5;
      Returns:
      The bytes for instanceId.
    • hasCreatedAt

      boolean hasCreatedAt()
      Timestamp when the script was first created.
      
      .google.protobuf.Timestamp created_at = 6;
      Returns:
      Whether the createdAt field is set.
    • getCreatedAt

      com.google.protobuf.Timestamp getCreatedAt()
      Timestamp when the script was first created.
      
      .google.protobuf.Timestamp created_at = 6;
      Returns:
      The createdAt.
    • getCreatedAtOrBuilder

      com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder()
      Timestamp when the script was first created.
      
      .google.protobuf.Timestamp created_at = 6;
    • hasUpdatedAt

      boolean hasUpdatedAt()
      Timestamp when the script was last modified.
      
      .google.protobuf.Timestamp updated_at = 7;
      Returns:
      Whether the updatedAt field is set.
    • getUpdatedAt

      com.google.protobuf.Timestamp getUpdatedAt()
      Timestamp when the script was last modified.
      
      .google.protobuf.Timestamp updated_at = 7;
      Returns:
      The updatedAt.
    • getUpdatedAtOrBuilder

      com.google.protobuf.TimestampOrBuilder getUpdatedAtOrBuilder()
      Timestamp when the script was last modified.
      
      .google.protobuf.Timestamp updated_at = 7;
    • getPaused

      boolean getPaused()
      Whether this script is paused (not running).
      
      bool paused = 8;
      Returns:
      The paused.