AJA-FS2-MIB DEFINITIONS ::= BEGIN

--
-- MIB objects for FS2 Implementation
--

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, 
    Integer32,
    NOTIFICATION-TYPE           FROM SNMPv2-SMI
    
	TEXTUAL-CONVENTION, DisplayString,
	TruthValue, DateAndTime, AutonomousType   FROM SNMPv2-TC
	
	fs2Product		FROM AJA-ROOT-MIB
;

fs2MIB MODULE-IDENTITY
    LAST-UPDATED "201103170000Z"
    ORGANIZATION "AJA Video Systems Inc."
    CONTACT-INFO    
	 "postal:   Fred Dominikus
                P.O. Box 1033
                Grass Valley CA  95945

          email:    ianaadmin@aja.com
          webpage:  www.aja.com"
    DESCRIPTION
	"This module defines snmp data and notifications in the FS2 product"
    REVISION     "201103170000Z"
    DESCRIPTION
	"Initial release"
    ::= { fs2Product 30 } 

--
-- top level structure
--

fs2Scalars       OBJECT IDENTIFIER       ::= { fs2MIB 1 }

fs2Integer OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
	"This is a simple object which merely houses a writable
	 integer.  It's only purposes is to hold the value of a single
	 integer.  Writing to it will simply change the value for
	 subsequent GET/GETNEXT/GETBULK retrievals.

	 This example object is implemented in the
	 agent/mibgroup/examples/scalar_int.c file."
    DEFVAL { 42 }
    ::= { fs2Scalars 1 }

--
-- Alarm objects
--

fs2PSAlarm OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "FS2 power supply Alarm."
    DEFVAL { 0 }
::= { fs2Scalars 2 }

fs2REFAlarm OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Reference Alarm."
    DEFVAL { 0 }
::= { fs2Scalars 3 }

fs2FMTAlarm OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "ForMaT Alarm."
    DEFVAL { 0 }
::= { fs2Scalars 4 }

fs2OVRAlarm OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Over Temp Range Alarm."
    DEFVAL { 0 }
::= { fs2Scalars 5 }


--
-- Notifications
--
fs2Notification  OBJECT IDENTIFIER      ::= { fs2MIB 99 }

fs2NotificationGroup NOTIFICATION-TYPE
    OBJECTS     { fs2PSAlarm, fs2IOAlarm, fs2FMAlarm, fs2OTAlarm,  }
    STATUS      current
    DESCRIPTION
        "FS2 alarm notification.
         This notification will be sent every
	 	time it sees a change in the alarm.txt file"
	::= { fs2Notification 1 }
    
END
