def getArguments(self):
        """
        Extracts the specific arguments of this CLI
        """
        AlarmModify.getArguments(self)

        self.path = 'v1/alarms'
    def getArguments(self):
        """
        Extracts the specific arguments of this CLI
        """

        AlarmModify.getArguments(self)

        if self.args.alarm_id is not None:
            self.alarm_id = self.args.alarm_id

        self.path = "v1/alarm/{0}".format(self.alarm_id)